-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbinaryFileParser.hpp
More file actions
52 lines (32 loc) · 967 Bytes
/
binaryFileParser.hpp
File metadata and controls
52 lines (32 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// Created by Kosho on 2020/8/14.
//
#ifndef PYTHONVM_BINARYFILEPARSER_HPP
#define PYTHONVM_BINARYFILEPARSER_HPP
#include "../util/bufferedInputStream.hpp"
#include "../util/arrayList.hpp"
#include "../object/hiString.hpp"
#include "codeObject.hpp"
class BinaryFileParser {
private:
BufferedInputStream *file_stream;
int cur;
ArrayList<HiString *> _string_table;
public:
BinaryFileParser(BufferedInputStream *stream);
public:
CodeObject *parse();
CodeObject *get_code_object();
HiString *get_byte_codes();
HiString *get_no_table();
HiString *get_string();
HiString *get_name();
HiString *get_file_name();
ArrayList<HiObject *> *get_consts();
ArrayList<HiObject *> *get_names();
ArrayList<HiObject *> *get_var_names();
ArrayList<HiObject *> *get_free_vars();
ArrayList<HiObject *> *get_cell_vars();
ArrayList<HiObject *> *get_tuple();
};
#endif //PYTHONVM_BINARYFILEPARSER_HPP