Skip to content

Commit 8e62462

Browse files
Rename java_class_file to java_class.
1 parent bc30018 commit 8e62462

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LDFLAGS=-g -Iinclude
66
LDLIBS=
77
NAME=bytecode-scanner
88

9-
SRCS=src/main.cc src/java_class_file.cc src/constant_pool.cc src/constant_pool_entry_parser.cc \
9+
SRCS=src/main.cc src/java_class.cc src/constant_pool.cc src/constant_pool_entry_parser.cc \
1010
src/field_info.cc src/attribute_info.cc src/method_info.cc src/attribute/code_attribute.cc \
1111
src/attribute/bootstrap_methods_attribute.cc \
1212
src/attribute/annotation_default_attribute.cc src/attribute/constant_value_attribute.cc \

include/find_api_calls.hh

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <optional>
2323
#include <vector>
2424

25-
#include "java_class_file.hh"
25+
#include "java_class.hh"
2626

2727
struct api_call_info
2828
{
@@ -31,5 +31,5 @@ struct api_call_info
3131
std::string method;
3232
};
3333

34-
std::vector<api_call_info> find_api_calls(const java_class_file& clazz,
34+
std::vector<api_call_info> find_api_calls(const java_class& clazz,
3535
const std::vector<std::string>& apis);

include/java_class_file.hh include/java_class.hh

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ enum class classfile_access_flag : uint16_t
3333
Synthetic = 0x1000, Annotation = 0x2000, Enum = 0x4000
3434
};
3535

36-
class java_class_file
36+
class java_class
3737
{
3838
constant_pool cp;
3939
classfile_access_flag access_flags;
@@ -45,12 +45,12 @@ class java_class_file
4545
entry_attributes attributes;
4646

4747
public:
48-
explicit java_class_file(constant_pool cp, classfile_access_flag access_flags,
48+
explicit java_class(constant_pool cp, classfile_access_flag access_flags,
4949
constant_pool_entry_id this_index, constant_pool_entry_id super_index,
5050
std::vector<constant_pool_entry_id> interfaces_ids, std::vector<field_info> fields,
5151
std::vector<method_info> methods, entry_attributes attributes);
5252

53-
explicit java_class_file(constant_pool cp, classfile_access_flag access_flags,
53+
explicit java_class(constant_pool cp, classfile_access_flag access_flags,
5454
constant_pool_entry_id this_index, constant_pool_entry_id super_index,
5555
std::vector<constant_pool_entry_id> interfaces_ids);
5656

@@ -94,5 +94,5 @@ public:
9494
return attributes;
9595
}
9696

97-
static java_class_file parse_class_file(const std::string& path);
97+
static java_class parse_class_file(const std::string& path);
9898
};

src/find_api_calls.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "code_attribute.hh"
2727
#include "find_api_calls.hh"
2828
#include "invalid_class_format_exception.hh"
29-
#include "java_class_file.hh"
29+
#include "java_class.hh"
3030
#include "line_number_table_attribute.hh"
3131

3232
std::optional<api_call_info> get_api_call_info(const constant_pool& cp, uint16_t pc, uint8_t high, uint8_t low,
@@ -71,7 +71,7 @@ uint16_t get_line_number(const code_attribute& code, uint16_t pc)
7171
return 0;
7272
}
7373

74-
std::vector<api_call_info> find_api_calls(const java_class_file& clazz, const std::vector<std::string>& apis)
74+
std::vector<api_call_info> find_api_calls(const java_class& clazz, const std::vector<std::string>& apis)
7575
{
7676
std::vector<api_call_info> calls;
7777
const auto& cp = clazz.get_class_constant_pool();

src/java_class_file.cc src/java_class.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "constant_pool.hh"
2424
#include "field_info.hh"
2525
#include "invalid_class_format_exception.hh"
26-
#include "java_class_file.hh"
26+
#include "java_class.hh"
2727
#include "method_info.hh"
2828
#include "util.hh"
2929

@@ -35,7 +35,7 @@ struct version_info
3535
uint16_t major_version;
3636
};
3737

38-
java_class_file java_class_file::parse_class_file(const std::string& path)
38+
java_class java_class::parse_class_file(const std::string& path)
3939
{
4040
std::ifstream file {path, std::ios::binary};
4141
if (!file.is_open())
@@ -75,7 +75,7 @@ java_class_file java_class_file::parse_class_file(const std::string& path)
7575
interfaces_ids.push_back(entry_id);
7676
}
7777

78-
auto class_instance = java_class_file{
78+
auto class_instance = java_class{
7979
std::move(constant_pool), access_flags, this_index, super_index, std::move(interfaces_ids)
8080
};
8181
// Parsing fields, methods, and attributes are slightly different in this case because we need
@@ -87,7 +87,7 @@ java_class_file java_class_file::parse_class_file(const std::string& path)
8787
return class_instance;
8888
}
8989

90-
java_class_file::java_class_file(constant_pool cp, classfile_access_flag access_flags,
90+
java_class::java_class(constant_pool cp, classfile_access_flag access_flags,
9191
constant_pool_entry_id this_index, constant_pool_entry_id super_index,
9292
std::vector<constant_pool_entry_id> interfaces_ids, std::vector<field_info> fields,
9393
std::vector<method_info> methods, entry_attributes attributes) :
@@ -101,9 +101,9 @@ java_class_file::java_class_file(constant_pool cp, classfile_access_flag access_
101101
attributes{std::move(attributes)}
102102
{}
103103

104-
java_class_file::java_class_file(constant_pool cp, classfile_access_flag access_flags,
104+
java_class::java_class(constant_pool cp, classfile_access_flag access_flags,
105105
constant_pool_entry_id this_index, constant_pool_entry_id super_index,
106106
std::vector<constant_pool_entry_id> interfaces_ids) :
107-
java_class_file{std::move(cp), access_flags, this_index, super_index,
107+
java_class{std::move(cp), access_flags, this_index, super_index,
108108
std::move(interfaces_ids), {}, {}, {}}
109109
{}

src/main.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#include "find_api_calls.hh"
3232
#include "invalid_class_format_exception.hh"
33-
#include "java_class_file.hh"
33+
#include "java_class.hh"
3434

3535
void denormalize_api_names(std::vector<std::string>& apis)
3636
{
@@ -41,7 +41,7 @@ void denormalize_api_names(std::vector<std::string>& apis)
4141
});
4242
}
4343

44-
void do_dump_cp(const java_class_file& clazz)
44+
void do_dump_cp(const java_class& clazz)
4545
{
4646
std::vector<std::string> id_col, entry_col, pointed_col;
4747
const auto& constant_pool = clazz.get_class_constant_pool();
@@ -201,7 +201,7 @@ void do_dump_cp(const java_class_file& clazz)
201201
}
202202
}
203203

204-
void do_scan(const java_class_file& clazz, const std::string& class_name, const std::vector<std::string>& api_names)
204+
void do_scan(const java_class& clazz, const std::string& class_name, const std::vector<std::string>& api_names)
205205
{
206206
std::cout << "Found the following API calls in " << class_name << ":" << std::endl;
207207
const auto calls = find_api_calls(clazz, api_names);
@@ -216,7 +216,7 @@ void do_command(cxxopts::ParseResult args) {
216216
const auto class_name = args["input"].as<std::string>();
217217
try
218218
{
219-
const auto clazz = java_class_file::parse_class_file(class_name);
219+
const auto clazz = java_class::parse_class_file(class_name);
220220
if (args.count("dump-cp"))
221221
{
222222
do_dump_cp(clazz);

0 commit comments

Comments
 (0)