Skip to content

Commit cdb0f08

Browse files
committed
为BerryMath编写添加了默认导入模块bmlang模块,并在解释器中一开始便导入其并将这个模块的所有方法导入至全局作用域
1 parent 6d67740 commit cdb0f08

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

include/interpreter.h

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ namespace BM {
122122
#define BMLMPATH "/usr/local/BM/modules/"
123123
#endif
124124
#define DEFAULT_IMPORT_NAME "bmlang"
125+
#define PASS_MODULE_NAME "__THIS_MODULE_NAME__"
125126

126127
friend class NativeFunction;
127128

modules/bmlang/init.bm

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Array {
2+
public:
3+
ctor() { }
4+
push(n) {
5+
this[this.__len] = n;
6+
this.__len++;
7+
}
8+
private:
9+
__len = 0;
10+
__SYSTEM_TYPE__ = "Array";
11+
}
12+
13+
export Array;

src/interpreter.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ BM::Object *BM::Interpreter::run() {
2323
set("undefined", new Undefined);
2424
set("null", new Null);
2525

26+
if (!child && !(get(PASS_MODULE_NAME) && get(PASS_MODULE_NAME)->value()->type() == STRING && ((String*)get(PASS_MODULE_NAME)->value())->value() == DEFAULT_IMPORT_NAME)) {
27+
if (!get(DEFAULT_IMPORT_NAME)) import(exports, DEFAULT_IMPORT_NAME, DEFAULT_IMPORT_NAME);
28+
Using(get(DEFAULT_IMPORT_NAME)->value(), new AST::node("bmlang", 0));
29+
}
2630
while (true) {
2731
if (!child) ast->parse();
2832
// if (!ast->rValue()) continue;
@@ -724,6 +728,7 @@ void BM::Interpreter::import(Object* exports, const string& name, const string&
724728
script += tmpLine + "\n";
725729
}
726730
Interpreter ip(script, name);// import的文件是独立运行的,与import它的脚本连接
731+
ip.set(PASS_MODULE_NAME, new String(name));
727732
auto moduleExports = ip.run();
728733
if (moduleExports->get(PASS_ERROR)) {
729734
std::cerr << "ImportError: Module script wrong at <" << filename << ">:" << ast->line() << std::endl;
@@ -743,6 +748,7 @@ void BM::Interpreter::import(Object* exports, const string& name, const string&
743748
script += tmpLine + "\n";
744749
}
745750
Interpreter ip(script, name);// import的文件是独立运行的,与import它的脚本连接
751+
ip.set(PASS_MODULE_NAME, new String(name));
746752
auto moduleExports = ip.run();
747753
if (moduleExports->get(PASS_ERROR)) {
748754
std::cerr << "ImportError: Module script wrong at <" << filename << ">:" << ast->line() << std::endl;
@@ -755,13 +761,14 @@ void BM::Interpreter::import(Object* exports, const string& name, const string&
755761
// 为全局模块
756762
if (!finish) {
757763
string path(BMLMPATH + name + (name[nameLen - 1] == '/' ? "init.bm" : "/init.bm"));
758-
file.open(name);
764+
file.open(path);
759765
if (file) {
760766
finish = true;
761767
while (getline(file, tmpLine)) {
762768
script += tmpLine + "\n";
763769
}
764770
Interpreter ip(script, name);// import的文件是独立运行的,不与import它的脚本连接
771+
ip.set(PASS_MODULE_NAME, new String(name));
765772
auto moduleExports = ip.run();
766773
if (moduleExports->get(PASS_ERROR)) {
767774
std::cerr << "ImportError: Module script wrong at <" << filename << ">:" << ast->line() << std::endl;

0 commit comments

Comments
 (0)