SPVM::Document::NativeAPI::ClassFile − Class File Native APIs
The class file native APIs of SPVM are the APIs to get and set class file information.
SPVM_API_CLASS_FILE*
api_class_file = env−>api−>class_file;
void* class_file =
env−>api−>compiler−>get_class_file(compiler,
"MyClass");
const char* class_name =
api_class_file−>get_class_name(compiler,
class_file);
const char* (*get_class_name)(void* compiler, void* class_file);
Returns the class name of the class file class_file.
const char* (*get_file)(void* compiler, void* class_file);
Returns the file path for display. This is a field of the class file class_file.
void (*set_file)(void* compiler, void* class_file, const char* file);
Copies file and sets it to the file path for display. This is a field of the class file class_file.
const char* (*get_dir)(void* compiler, void* class_file);
Returns the directory where the class is loaded. This is a field of the class file class_file.
void (*set_dir)(void* compiler, void* class_file, const char* dir);
Copies the directory path dir, and sets it to the directory where the class is loaded. This is a field of the class file class_file.
const char* (*get_rel_file)(void* compiler, void* class_file);
Returns the relative file path of the class file class_file.
void (*set_rel_file)(void* compiler, void* class_file, const char* rel_file);
Copies rel_file and sets it to the relative file path of the class file class_file.
const char* (*get_content)(void* compiler, void* class_file);
Returns the content of the class file class_file.
void (*set_content)(void* compiler, void* class_file, const char* content);
Copies the content content and sets it to the content of the class file class_file.
int32_t (*get_content_length)(void* compiler, void* class_file);
Returns the length of the content of the class file class_file.
void (*set_content_length)(void* compiler, void* class_file, int32_t content_length);
Sets content_length to the length of the content of the class file class_file.
0 get_class_name
1 get_file
2 set_file
3 get_dir
4 set_dir
5 get_rel_file
6 set_rel_file
7 get_content
8 set_content
9 get_content_length
10 set_content_length
|
• |
SPVM::Document::NativeAPI |
|||
|
• |
SPVM::Document::NativeAPI::Compiler |
|||
|
• |
SPVM::Document::NativeClass |
|||
|
• |
SPVM::Document |
Copyright (c) 2023 Yuki Kimoto
MIT License