|
|
@ -150,12 +150,10 @@ export default { |
|
|
|
theme: "monokai", // 主题 |
|
|
|
theme: "monokai", // 主题 |
|
|
|
extraKeys: { Ctrl: "autocomplete" } // 可以用于为编辑器指定额外的键绑定,以及keyMap定义的键绑定 |
|
|
|
extraKeys: { Ctrl: "autocomplete" } // 可以用于为编辑器指定额外的键绑定,以及keyMap定义的键绑定 |
|
|
|
}, |
|
|
|
}, |
|
|
|
inputTextReg: /^((?!#).*?(,|\(|\[|\{|\s)+)?input(?!\w)\(['|"]([\s\S]+?)['|"]\)/mg, |
|
|
|
inputTextReg: /^((?!#).*?(,|\(|\[|\{|\s)+)?input(?!\w)\(['|"]([\s\S]+?)['|"]\)/m,// 匹配input() |
|
|
|
inputReg: /^((?!#).*?(,|\(|\[|\{|\s)+)?(input(?!\w)\(['|"][\s\S]*?['|"]\))/m, |
|
|
|
|
|
|
|
exitTextReg: /exit(?!\w)\(['|"]([\s\S]+?)['|"]\)/m, |
|
|
|
|
|
|
|
exitNotValidReg: /exit(?!\w)\(['|"]([\s\S]+?)['|"]\)/m, |
|
|
|
|
|
|
|
requestList: [], |
|
|
|
requestList: [], |
|
|
|
sourceCode: '' |
|
|
|
sourceCode: '', |
|
|
|
|
|
|
|
requestTimer: null |
|
|
|
}; |
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
components: { |
|
|
|
components: { |
|
|
@ -220,11 +218,9 @@ export default { |
|
|
|
this.$post(this.api.AddCode, { |
|
|
|
this.$post(this.api.AddCode, { |
|
|
|
code: this.exampleData, |
|
|
|
code: this.exampleData, |
|
|
|
projectId: this.projectId, |
|
|
|
projectId: this.projectId, |
|
|
|
// projectId: 305, |
|
|
|
|
|
|
|
judgmentPointsId: this.workbench1, |
|
|
|
judgmentPointsId: this.workbench1, |
|
|
|
userId: parseInt(this.userId), |
|
|
|
userId: parseInt(this.userId), |
|
|
|
studentId: this.studentId, |
|
|
|
studentId: this.studentId, |
|
|
|
// studentId: 54, |
|
|
|
|
|
|
|
submit: this.submit |
|
|
|
submit: this.submit |
|
|
|
}) |
|
|
|
}) |
|
|
|
.then(res => { |
|
|
|
.then(res => { |
|
|
@ -253,28 +249,41 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
x.send() |
|
|
|
x.send() |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
// python代码里如果有input函数的话,是做了单独的处理的,原理是先把所有input函数都替换成exit函数,再在exit函数里加上特定标识,再通过接口传给后端去执行 |
|
|
|
|
|
|
|
// 因为exit函数是跟input有类似的效果,就是都会产生阻塞,所以python引擎一旦遇到exit,进程就会被停止,然后返回exit函数里面的值,而这个值,就是上面说的特定标识加上原本这个input函数里的值 |
|
|
|
|
|
|
|
// 然后就可以通过这个返回的值来提示给用户,让用户继续输入 |
|
|
|
|
|
|
|
// 下面这个函数就是递归执行这个input输入过程的函数 |
|
|
|
confirmInput(msg){ |
|
|
|
confirmInput(msg){ |
|
|
|
let receiveResult = msg.replace('validing:','') |
|
|
|
let receiveResult = msg.replace('validing:','') |
|
|
|
// console.log('进入函数:',receiveResult) |
|
|
|
|
|
|
|
this.modifys += receiveResult |
|
|
|
this.modifys += receiveResult |
|
|
|
this.$prompt(receiveResult, "提示", { |
|
|
|
this.$prompt(receiveResult, "提示", { |
|
|
|
confirmButtonText: "确定" |
|
|
|
confirmButtonText: "确定" |
|
|
|
}).then(({ value }) => { |
|
|
|
}).then(({ value }) => { |
|
|
|
this.modifys += `${value}<br>` |
|
|
|
this.modifys += `${value}<br>` |
|
|
|
console.log('替换前:',this.sourceCode,`exit('validing:${receiveResult.replace(/[\r\n]*/g,'')}')`) |
|
|
|
// 把exit函数替换成用户输入的值 |
|
|
|
this.sourceCode = this.sourceCode.replace(`exit('validing:${receiveResult.replace(/[\r\n]*/g,'')}')`,val => { |
|
|
|
this.sourceCode = this.sourceCode.replace(`exit('validing:${receiveResult.replace(/[\r\n]*/g,'')}')`,val => { |
|
|
|
return `'${value}'` |
|
|
|
return `'${value}'` |
|
|
|
}) |
|
|
|
}) |
|
|
|
this.sourceCode = this.sourceCode.replace(`exit("validing:${receiveResult.replace(/[\r\n]*/g,'')}")`,val => { |
|
|
|
this.sourceCode = this.sourceCode.replace(`exit("validing:${receiveResult.replace(/[\r\n]*/g,'')}")`,val => { |
|
|
|
return `'${value}'` |
|
|
|
return `'${value}'` |
|
|
|
}) |
|
|
|
}) |
|
|
|
console.log('替换后:',this.sourceCode) |
|
|
|
clearTimeout(this.requestTimer) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 一秒钟后还没请求成功的话,就直接中断请求,因为一般是陷入死循环了才会需要这么长时间的,中断了后就再次执行AnswerTips(运行按钮的执行函数)函数,再次进入循环 |
|
|
|
|
|
|
|
this.requestTimer = setTimeout(() => { |
|
|
|
|
|
|
|
this.requestList.map(n => n('interrupt')) |
|
|
|
|
|
|
|
},1000) |
|
|
|
|
|
|
|
|
|
|
|
this.$post(this.api.UpdateCode,{ |
|
|
|
axios.post(this.api.UpdateCode,{ |
|
|
|
code: this.sourceCode, |
|
|
|
code: this.sourceCode, |
|
|
|
codeId: this.codeId, |
|
|
|
codeId: this.codeId, |
|
|
|
submit: this.submit |
|
|
|
submit: this.submit |
|
|
|
}).then(res => { |
|
|
|
},{ |
|
|
|
|
|
|
|
cancelToken: new CANCEL_TOKEN(c => { //强行中断请求要用到的,记录请求信息 |
|
|
|
|
|
|
|
this.requestList.push(c) |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
}).then(response => { |
|
|
|
|
|
|
|
let res = response.data |
|
|
|
let result = res.message.result |
|
|
|
let result = res.message.result |
|
|
|
if(result.includes('File ')){ |
|
|
|
if(result.includes('File ')){ |
|
|
|
let modify = res.message.result |
|
|
|
let modify = res.message.result |
|
|
@ -296,18 +305,16 @@ export default { |
|
|
|
isError: res.data.isError |
|
|
|
isError: res.data.isError |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
}).catch(err => {}) |
|
|
|
}).catch(e => { |
|
|
|
|
|
|
|
if(e && e.message == 'interrupt'){ |
|
|
|
|
|
|
|
this.AnswerTips(true) |
|
|
|
|
|
|
|
this.requestList = [] |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
}).catch(err => {}) |
|
|
|
}).catch(err => {}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
AnswerTips() { |
|
|
|
AnswerTips(isWhile) {// isWhile为true表示代码里有while循环,右边的运行结果需要拼接展示,而不是直接覆盖 |
|
|
|
// let inputTextReg = this.inputTextReg |
|
|
|
|
|
|
|
// let str = `server = int(input('您好!请问您需要什么帮助呢?1 存取款;2 货币兑换;3 咨询\n')` |
|
|
|
|
|
|
|
// str = str.replace(inputTextReg,val => { |
|
|
|
|
|
|
|
// console.log(val.replace(/\n/g,'')) |
|
|
|
|
|
|
|
// return val.replace(/\n/g,'') |
|
|
|
|
|
|
|
// }) |
|
|
|
|
|
|
|
// console.log(str) |
|
|
|
|
|
|
|
// return |
|
|
|
|
|
|
|
if (this.isSubmit == "") { |
|
|
|
if (this.isSubmit == "") { |
|
|
|
this.submit = 1; |
|
|
|
this.submit = 1; |
|
|
|
if (this.codeid == "") { |
|
|
|
if (this.codeid == "") { |
|
|
@ -318,19 +325,21 @@ export default { |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
let inputTextReg = this.inputTextReg |
|
|
|
let inputTextReg = this.inputTextReg |
|
|
|
let inputFuncReg = /input\(['|"]/g |
|
|
|
let inputFuncReg = /input\(['|"]/g |
|
|
|
|
|
|
|
// 该正则是验证代码里是否有input,如果有,就要另外做处理,而不是直接传给后端执行 |
|
|
|
if (inputTextReg.test(this.exampleData)) { |
|
|
|
if (inputTextReg.test(this.exampleData)) { |
|
|
|
let sourceCode = this.exampleData |
|
|
|
let sourceCode = this.exampleData |
|
|
|
// sourceCode = sourceCode.replace(inputTextReg,val => { |
|
|
|
sourceCode = sourceCode.replace(inputTextReg,val => { |
|
|
|
// return console.log(val.replace(/\n'/g,"'")) |
|
|
|
return val.replace(/\\n/g,"") |
|
|
|
// }) |
|
|
|
}) |
|
|
|
// return console.log(11,sourceCode) |
|
|
|
this.exampleData = sourceCode |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 把input函数替换成exit函数,加上"validing:"作为特定标识,好方便后面的识别 |
|
|
|
sourceCode = sourceCode.replace(inputFuncReg,val => { |
|
|
|
sourceCode = sourceCode.replace(inputFuncReg,val => { |
|
|
|
return `exit(${val[val.length - 1]}validing:` |
|
|
|
return `exit(${val[val.length - 1]}validing:` |
|
|
|
}) |
|
|
|
}) |
|
|
|
this.sourceCode = sourceCode |
|
|
|
this.sourceCode = sourceCode |
|
|
|
|
|
|
|
|
|
|
|
this.modifys = '' |
|
|
|
if(!isWhile) this.modifys = '' |
|
|
|
this.$post(this.api.UpdateCode, { |
|
|
|
this.$post(this.api.UpdateCode, { |
|
|
|
code: sourceCode, |
|
|
|
code: sourceCode, |
|
|
|
codeId: this.codeId, |
|
|
|
codeId: this.codeId, |
|
|
@ -339,7 +348,12 @@ export default { |
|
|
|
let result = res.message.result |
|
|
|
let result = res.message.result |
|
|
|
if(result.includes('File ')){ |
|
|
|
if(result.includes('File ')){ |
|
|
|
let modify = res.message.result |
|
|
|
let modify = res.message.result |
|
|
|
this.modifys = modify |
|
|
|
if(isWhile){ |
|
|
|
|
|
|
|
this.modifys += modify |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
this.modifys = modify |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.after = modify.substring( |
|
|
|
this.after = modify.substring( |
|
|
|
modify.indexOf("line") + 4, |
|
|
|
modify.indexOf("line") + 4, |
|
|
|
modify.length |
|
|
|
modify.length |
|
|
@ -373,6 +387,8 @@ export default { |
|
|
|
isError: res.data.isError |
|
|
|
isError: res.data.isError |
|
|
|
}) |
|
|
|
}) |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
|
|
|
|
// 这段是为要下载图片的项目案例写的,后端会返回图片名称的数组,前端负责循环这个数组,然后下载下来 |
|
|
|
|
|
|
|
// 只有该系统有这段代码,因为其他7个系统没有下载图片的项目,后续如果加了,直接把这段代码复制过去即可 |
|
|
|
if(!res.message.isError){ |
|
|
|
if(!res.message.isError){ |
|
|
|
let result = '' |
|
|
|
let result = '' |
|
|
|
try { |
|
|
|
try { |
|
|
|