Skip to content

Commit 4afd3ca

Browse files
added robustness
1 parent a76bf6e commit 4afd3ca

File tree

5 files changed

+32
-20
lines changed

5 files changed

+32
-20
lines changed

react-frontend/src/components/userinput.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const UserInput = (props: any) => {
4646
try {
4747
// send HTTP request to flask server and store
4848
// response inside callTrace
49-
const domain = "<BACKEND URL REMOTE CODE RUNNER>";
49+
const domain = "https://recursion0r94s8df984.herokuapp.com";
5050

5151
const options = `/execute?funcName=${functionName}&funcCall=${functionCall[0]}`;
5252
const fetchConfig = {

remote-code-runner/app.py

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def execute():
3939
# case of invalid value
4040
# set reponse status to 400
4141
return functionTrace[1], 400
42-
return inputCode
4342
else:
4443
# case of an invalid request
4544
return "Please specify both the function name and the initial function call."

remote-code-runner/judge.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22
import requests
33
import json
4+
import time
45

56
API_KEY = os.environ.get('API_KEY')
67

@@ -18,10 +19,11 @@ def sendCodeToJudge(code):
1819
response = requests.request("POST", url, data=json.dumps(payload), headers=headers)
1920
responseObj = json.loads(response.text)
2021
if 'error' in responseObj:
21-
return 'error'
22+
return False
2223
if 'token' not in responseObj:
23-
return 'error'
24+
return False
2425
token = responseObj['token']
26+
time.sleep(2) # wait 2 seconds before retrieving results
2527
URL = "https://judge0.p.rapidapi.com/submissions/" + token
2628
HEADERS = {
2729
'x-rapidapi-host': "judge0.p.rapidapi.com",
@@ -30,5 +32,4 @@ def sendCodeToJudge(code):
3032
subResponse = requests.request("GET", URL, headers=HEADERS)
3133
codeSubmissionResponse = json.loads(subResponse.text)
3234
print(codeSubmissionResponse)
33-
output = codeSubmissionResponse['stdout']
34-
return [output, token]
35+
return [codeSubmissionResponse, token]

remote-code-runner/remoteCodeRunner.py

+18-8
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,24 @@ def runCode(inputCode, inputFunctionName, inputFunctionCall):
1212
# inputCode here is truncated to exclude the single function call.
1313
readyToExe = ij.injectCode(inputCode, inputFunctionName, inputFunctionCall)
1414
res = j.sendCodeToJudge(readyToExe)
15-
if res == 'error':
15+
if res == False: # couldn't even POST the user's code
1616
return (False, "Be sure to follow all rules laid out in the instructions: Make sure there are no syntax errors, logic errors, and infinite recursions... and any funky business ;)")
1717

18-
if res[0] == None:
19-
res[0] = tg.tryGet(res[1])
20-
21-
if res[0] == None:
22-
return (False, "Took too long. I didn't pay for a premium server, sorry about that.")
18+
codeSubmissionResults = res[0] # output object with stdout and stderr
19+
submissionToken = res[1] # token reference ID
20+
21+
# do processing checks first before doing error checks
22+
if codeSubmissionResults['status']['id'] < 3:
23+
# still processing...
24+
codeSubmissionResults = tg.tryGet(submissionToken)
2325

24-
output = res[0][1:len(res[0]) - 2]
25-
return (True, output)
26+
if codeSubmissionResults['status']['id'] == 3:
27+
# success case
28+
output = codeSubmissionResults['stdout'][1:len(codeSubmissionResults['stdout']) - 2]
29+
return (True, output)
30+
else:
31+
# error case
32+
if codeSubmissionResults['stderr']:
33+
return (False, codeSubmissionResults['stderr'])
34+
else:
35+
return (False, "Unknown error.")

remote-code-runner/tryget.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,21 @@
33
import requests
44
import json
55

6-
76
API_KEY = os.environ.get('API_KEY')
87

98
def tryGet(token):
10-
time.sleep(10)
119
URL = "https://judge0.p.rapidapi.com/submissions/" + token
1210
HEADERS = {
1311
'x-rapidapi-host': "judge0.p.rapidapi.com",
1412
'x-rapidapi-key': API_KEY
1513
}
1614
subResponse = requests.request("GET", URL, headers=HEADERS)
1715
codeSubmissionResponse = json.loads(subResponse.text)
18-
print('tried again... ')
19-
print(codeSubmissionResponse)
20-
output = codeSubmissionResponse['stdout']
21-
return output
16+
retryNumber = 1
17+
while codeSubmissionResponse['status']['id'] < 3:
18+
time.sleep(2) # wait 2 seconds before trying again
19+
codeSubmissionResponse = requests.request("GET", URL, headers=HEADERS)
20+
print("retryNumber " + str(i))
21+
print(codeSubmissionResponse)
22+
i += 1
23+
return codeSubmissionResponse

0 commit comments

Comments
 (0)