123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- #include "__run.h"
- bool importRunParser(ParserMessage *pm, fline line, char *file, Statement *run_st, INTER_FUNCTIONSIG_NOT_ST) {
- setResultCore(result);
- parserCommandList(pm, inter, true, false, run_st);
- if (pm->status == int_error)
- setResultError(E_KeyInterrupt, KEY_INTERRUPT, line, file, true, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- else if (pm->status != success)
- setResultError(E_TypeException, pm->status_message, line, file, true, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- return CHECK_RESULT(result);
- }
- int isAbsolutePath(const char *path) {
- switch (*path) {
- case ':':
- return 1;
- case '@':
- return 2;
- case '$':
- return 3;
- default:
- return 0;
- }
- }
- static bool isExist(char **path, bool is_ab, char *file) {
- char *backup = is_ab ? memStrcpy((*path) + 1) : memStrcpy(*path);
- int status;
- if ((status = checkFileReadble(backup)) != 3 || (status = checkFileReadble(backup = memStrcat(backup, ".vm", true, false))) != 3) {
- memFree(*path);
- *path = backup;
- if (status == 2) {
- if (file == NULL)
- return false;
- #if __linux__
- if ((*path)[memStrlen(*path) - 1] != '/')
- *path = memStrcat(*path, "/", true, false);
- *path = memStrcat(*path, file, true, false);
- #else
- if ((*path)[memStrlen(*path) - 1] != '\\')
- *path = memStrcat(*path, "\\", true, false);
- *path = memStrcat(*path, file, true, false);
- #endif
- return isExist(path, false, NULL);
- } else
- return true;
- }
- memFree(backup);
- return false;
- }
- int checkFileDir(char **file_dir, INTER_FUNCTIONSIG) {
- switch (isAbsolutePath(*file_dir)) {
- case 1:
- if (isExist(file_dir, true, "__init__.vm"))
- return 1;
- goto error_;
- case 2:
- goto clib;
- case 3:
- goto path;
- default:
- break;
- }
- if (isExist(file_dir, false, "__init__.vm"))
- return 1;
- {
- char arr_cwd[200] = {};
- char *p_cwd = NULL;
- getcwd(arr_cwd, 200);
- #ifdef __linux__
- p_cwd = memStrcatIter(arr_cwd, false, "/", *file_dir, NULL);
- #else
- p_cwd = memStrcatIter(arr_cwd, false, "\\", *file_dir);
- #endif
- if (isExist(&p_cwd, false, "__init__.vm")) {
- memFree(*file_dir);
- *file_dir = p_cwd;
- return 1;
- }
- memFree(p_cwd);
- }
- path: {
- char *path = memStrcpy(getenv("VIRTUALMATHPATH"));
- for (char *tmp = strtok(path, ";"), *new_dir; tmp != NULL; tmp = strtok(NULL, ";")) {
- #ifdef __linux__
- if (*(tmp + (memStrlen(tmp) - 1)) != '/')
- new_dir = memStrcatIter(tmp, false, "/", *file_dir, NULL);
- #else
- if (*(tmp + (memStrlen(tmp) - 1)) != '\\')
- new_dir = memStrcatIter(tmp, false, "\\", *file_dir);
- #endif
- else
- new_dir = memStrcat(tmp, *file_dir, false, false);
- if (isExist(&new_dir, false, "__init__.vm")) {
- memFree(*file_dir);
- *file_dir = new_dir;
- return 1;
- }
- memFree(new_dir);
- }
- memFree(path);
- }
- clib:
- if (checkCLib(*file_dir))
- return 2;
- error_:
- setResultErrorSt(E_ImportException, "import/include file is not readable", true, st, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- return 0;
- }
- ResultType includeFile(INTER_FUNCTIONSIG) {
- Statement *new_st = NULL;
- ParserMessage *pm = NULL;
- char *file_dir = NULL;
- setResultCore(result);
- if (operationSafeInterStatement(CALL_INTER_FUNCTIONSIG(st->u.include_file.file, var_list, result, belong)))
- return result->type;
- if (!isType(result->value->value, string)){
- setResultErrorSt(E_TypeException, ONLY_ACC(include file dir, string), true, st, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- goto return_;
- }
- file_dir = result->value->value->data.str.str;
- freeResult(result);
- if (checkFileDir(&file_dir, CALL_INTER_FUNCTIONSIG(st, var_list, result, belong)) != 1)
- goto return_;
- new_st = makeStatement(0, file_dir);
- pm = makeParserMessage(file_dir);
- if (!importRunParser(pm, st->line, st->code_file, new_st, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong)))
- goto return_;
- functionSafeInterStatement(CALL_INTER_FUNCTIONSIG(new_st, var_list, result, belong));
- if (result->type == yield_return)
- setResult(result, inter, belong);
- else if (!CHECK_RESULT(result))
- setResultErrorSt(E_BaseException, NULL, false, st, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- return_:
- freeStatement(new_st);
- freeParserMessage(pm, true);
- return result->type;
- }
- ResultType importVMFileCore(Inter *import_inter, char *path, fline line, char *code_file, INTER_FUNCTIONSIG_NOT_ST) {
- ParserMessage *pm = NULL;
- Statement *run_st = NULL;
- setResultCore(result);
- pm = makeParserMessage(path);
- run_st = makeStatement(0, path);
- if (!importRunParser(pm, line, code_file, run_st, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong)))
- goto return_;
- globalIterStatement(result, import_inter, run_st);
- if (!CHECK_RESULT(result))
- setResultError(E_BaseException, NULL, line, code_file, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- else
- setResult(result, inter, belong);
- return_:
- freeStatement(run_st);
- freeParserMessage(pm, true);
- return result->type;
- }
- ResultType importFileCore(char **path, char **split, int *status, INTER_FUNCTIONSIG) {
- setResultCore(result);
- if (operationSafeInterStatement(CALL_INTER_FUNCTIONSIG(st, var_list, result, belong)))
- return result->type;
- if (!isType(result->value->value, string)) {
- setResultErrorSt(E_ImportException, ONLY_ACC(include file dir, string), true, st, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- return error_return;
- }
- *path = memStrcpy(result->value->value->data.str.str);
- *split = splitDir(*path); // 自动去除末尾路径分隔符
- freeResult(result);
- if ((*status = checkFileDir(path, CALL_INTER_FUNCTIONSIG(st, var_list, result, belong))) == 0)
- return result->type;
- return result->type;
- }
- ResultType runImportFile(Inter *import_inter, char **path, int status, INTER_FUNCTIONSIG) {
- setResultCore(result);
- if (status == 2)
- importClibCore(*path, belong, CALL_INTER_FUNCTIONSIG_CORE(inter->var_list));
- else
- importVMFileCore(import_inter, *path, st->line, st->code_file, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- import_inter->var_list = NULL;
- mergeInter(import_inter, inter);
- return result->type;
- }
- static bool getPackage(LinkValue **imp_value, char *md5_str, char *split, int status, char **path, INTER_FUNCTIONSIG) {
- Value *pg;
- Inter *imp_inter;
- if ((pg = checkPackage(inter->package, md5_str, split)) == NULL) {
- setResultCore(result);
- imp_inter = deriveInter(belong, inter);
- pg = makeObject(inter, imp_inter->var_list, copyVarList(var_list, false, inter), NULL);
- inter->package = makePackage(pg, md5_str, split, inter->package);
- imp_inter->package = inter->package;
- freeResult(result);
- runImportFile(imp_inter, path, status, CALL_INTER_FUNCTIONSIG(st->u.import_file.file, var_list, result, belong));
- if (!CHECK_RESULT(result))
- return false;
- }
- *imp_value = makeLinkValue(pg, belong, inter);
- gc_addTmpLink(&(*imp_value)->gc_status);
- return true;
- }
- ResultType importFile(INTER_FUNCTIONSIG) {
- int status;
- char *split_path = NULL;
- char *path = NULL;
- LinkValue *imp_value = NULL;
- char md5_str[MD5_STRING] = {};
- setResultCore(result);
- gc_freeze(inter, var_list, NULL, true);
- importFileCore(&path, &split_path, &status, CALL_INTER_FUNCTIONSIG(st->u.import_file.file, var_list, result, belong));
- if (!CHECK_RESULT(result))
- goto return_;
- getFileMd5(path, md5_str);
- if (!getPackage(&imp_value, md5_str, split_path, status, &path, CALL_INTER_FUNCTIONSIG(st, var_list, result, belong)))
- goto return_;
- freeResult(result);
- if (st->u.import_file.as == NULL)
- addStrVar(split_path, false, false, imp_value, 0, "sys", CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- else
- assCore(st->u.import_file.as, imp_value, false, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (CHECK_RESULT(result))
- setResult(result, inter, belong);
- gc_freeTmpLink(&imp_value->gc_status);
- return_:
- memFree(split_path);
- memFree(path);
- gc_freeze(inter, var_list, NULL, false);
- return result->type;
- }
- static ResultType importParameter(fline line, char *file, Parameter *call_pt, Parameter *func_pt, VarList *func_var, LinkValue *func_belong, INTER_FUNCTIONSIG_NOT_ST) {
- Argument *call = NULL;
- setResultCore(result);
- call = getArgument(call_pt, false, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, belong));
- if (!CHECK_RESULT(result)) {
- freeArgument(call, false);
- return result->type;
- }
- freeResult(result);
- setParameterCore(line, file, call, func_pt, func_var, CALL_INTER_FUNCTIONSIG_NOT_ST(var_list, result, func_belong));
- freeArgument(call, false);
- return result->type;
- }
- ResultType fromImportFile(INTER_FUNCTIONSIG) {
- int status;
- char *split_path = NULL;
- char *path = NULL;
- char md5_str[MD5_STRING] = {};
- VarList *imp_var = NULL;
- LinkValue *imp_value;
- Parameter *pt = st->u.from_import_file.pt;
- Parameter *as = st->u.from_import_file.as != NULL ? st->u.from_import_file.as : st->u.from_import_file.pt;
- setResultCore(result);
- importFileCore(&path, &split_path, &status, CALL_INTER_FUNCTIONSIG(st->u.from_import_file.file, var_list, result, belong));
- if (!CHECK_RESULT(result))
- goto return_;
- getFileMd5(path, md5_str);
- if (!getPackage(&imp_value, md5_str, split_path, status, &path, CALL_INTER_FUNCTIONSIG(st, var_list, result, belong)))
- goto return_;
- imp_var = imp_value->value->object.var;
- freeResult(result);
- if (pt != NULL) {
- importParameter(st->line, st->code_file, pt, as, var_list, belong, CALL_INTER_FUNCTIONSIG_NOT_ST(imp_var, result, imp_value));
- if (!CHECK_RESULT(result))
- goto return_;
- }
- else
- updateHashTable(var_list->hashtable, imp_var->hashtable, inter);
- gc_freeTmpLink(&imp_value->value->gc_status);
- setResult(result, inter, belong);
- return_:
- memFree(path);
- memFree(split_path);
- freeVarList(imp_var); // 当需要存储var_list的时候则不需要释放
- return result->type;
- }
|