-
Notifications
You must be signed in to change notification settings - Fork 4
/
run.py
845 lines (704 loc) · 20 KB
/
run.py
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
from flask import Flask, flash, redirect, render_template, url_for, request, make_response
from flask_cors import CORS
import json
from ibm_watson import AssistantV1
from ibm_cloud_sdk_core.authenticators import IAMAuthenticator
import re
import webbrowser
import requests,json
import urllib
import os
import c2p
import time
import ptp
app = Flask(__name__)
CORS(app)
def transform(text_file_contents):
return text_file_contents.replace("=", "=")
@app.route('/')
def form():
return render_template('convert.html')
#return render_template('gfile.html')
@app.route('/transform', methods=['POST','GET'])
def transform_view():
request_file = request.files['data_file']
if not request_file:
return "No file"
file_contents = request_file.stream.read().decode("utf-8")
result = transform(file_contents)
print(result)
if '#incude' in result:
py_list = c2p.convert(result)
pycode=''
for i in py_list:
print(i,end='')
pycode+=i
#print(pycode)
response = make_response(pycode)
response.headers["Content-Disposition"] = "attachment; filename=converted_py_code.py"
time.sleep(0.8)
return response
else:
php_code = ptp.convert(result+'\n')
response = make_response(php_code)
response.headers["Content-Disposition"] = "attachment; filename=converted_php_code.php"
time.sleep(0.8)
return response
@app.route('/box', methods=['POST','GET'])
def box():
if request.method == 'POST':
resp_json = request.get_json()
print(resp_json)
to_convert = resp_json['text']
ddown = resp_json['ddown']
if ddown == 'Python':
py_list = c2p.convert(to_convert)
pycode=''
for i in py_list:
print(i,end='')
pycode+=i
time.sleep(1)
return json.dumps({"response": pycode}), 200
elif ddown == 'PHP':
php_code = ptp.convert(to_convert+'\n')
time.sleep(1)
return json.dumps({"response": php_code}), 200
else:
return json.dumps({"response": "Language under development. Try again later!"}), 200
@app.route('/practice')
def practice():
global intent
intent=[]
return render_template('compiler.html')
@app.route('/shop')
def shop():
global intent
intent=[]
return render_template('shop.html')
@app.route('/print/name', methods=['POST', 'GET'])
def get_names():
global c
global intent
c=1
if request.method == 'POST':
resp_json = request.get_json()
command = resp_json['text']
if command=='cplusplus':
command='open c++'
authenticator = IAMAuthenticator('u1N9ThXmpZUk_-1_F1AaAw-11BbBXFtCbonmmerHbnFI')
assistant = AssistantV1(
version='2019-02-28',
authenticator = authenticator
)
assistant.set_service_url('https://gateway-wdc.watsonplatform.net/assistant/api')
response = assistant.message(
workspace_id='97afbe1c-dd6b-4d91-8022-8d483eae2174',
input={
'text': command
}
).get_result()
a=response
b=a['intents']
if b==[]:
if c==1:
intent.append('nothing')
else:
intent.append('nothing')
else:
if c==1:
intent.append(b[0]['intent'])
else:
intent.append(b[0]['intent'])
print('user said:', command)
print(intent)
while intent[0]=='python':
if intent[-1]=='for_loop':
to_send = """for x in range (a,b):
#enter your code here"""
elif intent[-1]=='nested_for':
to_send = """for x in range(a,b):
for y in range(a,b):
#enter your code here"""
elif intent[-1]=='if_condition':
to_send = """if a==b:
#enter your code here"""
elif intent[-1]=='nested_if':
to_send = """if a==b:
if a==b:
#enter your code here
else:
#enter your code here"""
elif intent[-1]=='else_if':
to_send = """if a>=b:
#enter your code here
elif a==b:
#enter your code here"""
elif intent[-1]=='else_condition':
to_send = """elif a >= b:
#enter your code here
else:
#enter your code here"""
elif intent[-1]=='while_loop':
to_send = """while x == y:
#enter your code here"""
elif intent[-1]=='do_while_loop':
to_send="""a = 1
while True: #acts a the 'do' part.
print(a)
a+=3
if(a > 10):
break
#Python doesn't have a do-while loop. Hence emulating it with boolean."""
elif intent[-1]=='print':
to_send = """print(#your variable or string) """
elif intent[-1]=='exit_loop':
to_send =""" if (condition):
break"""
elif intent[-1]=='init_string' or intent=='init_char':
to_send="""var=input()"""
elif intent[-1]=='init_int':
to_send="""var=int(input())"""
elif intent[-1]=='init_double':
to_send="""var=double(input())"""
elif intent[-1]=='arith_addition':
to_send="""def add(a,b):
return a+b
x=int(input())
y=int(input())
ans=add(x,y)
print(ans)"""
elif intent[-1]=='arith_subtraction':
to_send="""def sub(a,b):
return a-b
x=int(input())
y=int(input())
ans=sub(x,y)
print(ans)"""
elif intent[-1]=='arith_multiplication':
to_send="""def multi(a,b):
return a*b
x=int(input())
y=int(input())
ans=multi(x,y)
print(ans)"""
elif intent[-1]=='arith_division':
to_send="""def divi(a,b):
return a/b
x=int(input())
y=int(input())
ans=divi(x,y)
print(ans)"""
elif intent[-1]=='create_array':
to_send="""var=[]
n=int(input())
for i in range(n):
app=int(input())
var.append(app)
print('the array is:',var)"""
elif intent[-1]=='def_function':
to_send="""def func_name(#arguments):
#write your code here
return #any variable
x=func_name(#arguments)"""
elif intent[-1]=='cplus' or intent[-1]=='swift' or intent[-1]=='php':
to_send= """Please Use the Change language option!"""
elif intent[-1]=='python':
to_send="""python running!"""
elif intent[-1]=='recus':
to_send="""def func(a):
a+=1
if a<=15:
print(a)
func(a) #recusion part.
else:
print('a exceeded the limit of 15!')
return
func(9)"""
elif intent[-1]=='switch_condition':
to_send="""switch={
1:'monday',
2:'tuesday',
3:'wednesday',
4:'thursday',
5:'friday',
6:'saturday',
7:'sunday'
}
day=int(input())
print(switch[day])
#python does't have the concept of switch, hence this is achieved using dictionaries."""
else:
to_send="""I am sorry, i dont know what that means"""
c+=1
return json.dumps({"response": to_send}), 200
########################################################c++#########################################################################################################################
while intent[0]=='cplus':
if intent[-1]=='for_loop':
to_send = """for(int x=a ; x<b ; x++) {
//enter your code;
}"""
elif intent[-1]=='print':
to_send = """cout << "Enter your string here!" << endl; """
elif intent[-1]=='nested_for':
to_send = """for(int x=a;x<b;x++) {
for(int y=c;y<d;y++) {
//enter your code;
}
}"""
elif intent[-1]=='if_condition':
to_send = """int x;
if(x==a) {
//enter your code;
}"""
elif intent[-1]=='nested_if':
to_send = """int x,y;
if(x==a) {
if(y==a) {
//enter your code;
}
}"""
elif intent[-1]=='else_if':
to_send = """int x;
if(x==a) {
//enter your code;
}
else if(x==b) {
//enter your code;
}"""
elif intent[-1]=='else_condition':
to_send = """int x;
if(x==a) {
//enter your code;
}
else {
//enter your code;
}"""
elif intent[-1]=='while_loop':
to_send = """while(x!=a) {
//enter your code;
}"""
elif intent[-1]=='exit_loop':
to_send = """break;"""
elif intent[-1]=='do_while_loop':
to_send = """int x;
do {
//enter your code;
} while(x<a);"""
elif intent[-1]=='init_string':
to_send = """string x;"""
elif intent[-1]=='init_int':
to_send = """int x;"""
elif intent[-1]=='init_char':
to_send = """char name[100];"""
elif intent[-1]=='init_float':
to_send = """float x;"""
elif intent[-1]=='arith_addition':
to_send = """#include <iostream>
using namespace std;
int main() {
int x,y,sum;
cin>>x>>y;
sum = x+y;
cout<<"Sum is: "<< sum << endl;
return 0;
}"""
elif intent[-1]=='arith_subtraction':
to_send = """#include <iostream>
using namespace std;
int main() {
int x,y,diff;
cin>>x>>y;
diff = x-y;
cout<<"Difference is: "<< diff << endl;
return 0;
}"""
elif intent[-1]=='arith_multiplication':
to_send = """#include <iostream>
using namespace std;
int main() {
int x,y,prod;
cin>>x>>y;
prod = x*y;
cout<<"Product is: "<< prod << endl;
return 0;
}"""
elif intent[-1]=='arith_division':
to_send = """#include <iostream>
using namespace std;
int main() {
int x,y,quo;
cin>>x>>y;
quo = x/y;
cout<<"Quotient is: "<< quo << endl;
return 0;
}"""
elif intent[-1]=='arith_remainder':
to_send = """#include <iostream>
using namespace std;
int main() {
int x,y,rem;
rem = x%y;
cout<<"Remainder is: "<< rem << endl;
return 0;
}"""
elif intent[-1]=='def_function':
to_send = """#include <iostream>
// function declaration
int func(int x, int y);
int main () {
// local variable declaration
int a,b;
// calling a function.
func(a,b);
return 0;
}
// function
int func(int x, int y) {
//enter your code;
}"""
elif intent[-1]=='create_class':
to_send = """class base {
// Access specifier
public:
// Data Members
string name;
// Member Functions()
void printname() {
cout <<"Name is: "<<name;
}
};"""
elif intent[-1]=='create_object':
to_send = """// Declare an object of class base
base obj1;"""
elif intent[-1]=='include_lib_basic':
to_send = """#include <iostream>
#include <conio.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <stdlib.h>"""
elif intent[-1]=='include_lib_adv':
to_send = """#include <vector>
#include <string>
#include <file>
#include <map>
#include <complex>"""
elif intent[-1]=='create_array':
to_send = """int a[100] , x , b;
cout << "Enter array size:" << endl;
cin >> b;
cout << " Enter array elements: " << endl;
for (x=a ; x < b ; x++) {
cin >> a[x] ;
}
cout << "Array is: " << endl;
for(x=a ; x < b ; x++) {
cout << a[x] ;
}"""
elif intent[-1]=='switch_condition':
to_send = """char variable;
switch(variable) {
case valueOne:
//statements
break;
case valueTwo:
//statements
break;
default: //optional
//statements
}"""
elif intent[-1]=='swift' or intent[-1]=='python' or intent[-1]=='php':
to_send= """Please Use the Change language option!"""
elif intent[-1]=='cplus':
to_send="""running c++"""
else:
to_send="""I am sorry, i dont know what that means"""
c+=1
return json.dumps({"response": to_send}), 200
########################################################PHP#########################################################################################################################
while intent[0]=='php':
if intent[-1]=='for_loop':
to_send = """for ($x = a; $x <= b; $x++) {
//enter your code
} """
elif intent[-1]=='print':
to_send = """ echo " Enter your string here ! " ; """
elif intent[-1]=='nested_for':
to_send = """for ($x = a; $x <= b; $x++) {
for ($y = c; $y <= d; $y++) {
//enter your code;
}
}"""
elif intent[-1]=='if_condition':
to_send = """$t = "varable";
if ($t < "Condition") {
//enter your code;
}"""
elif intent[-1]=='nested_if':
to_send = """$x = "variable";
$y = "Variable"
if($x=="condition") {
if($y=="condition") {
//enter your code;
}
}"""
elif intent[-1]=='else_if':
to_send = """$x = "variable";
if($x==a) {
//enter your code;
}
else if($x==b) {
//enter your code;
}
else if($x==c) {
//enter your code;
}"""
elif intent[-1]=='else_condition':
to_send = """$x = "Variable";
if($x==a) {
//enter your code;
}
else {
//enter your code;
}"""
elif intent[-1]=='while_loop':
to_send = """while($x!="condition") {
//enter your code;
}"""
elif intent[-1]=='exit_loop':
to_send = """break;"""
elif intent[-1]=='do_while_loop':
to_send = """$x = "variable";
do {
//enter your code;
} while($x<"condition");"""
elif intent[-1]=='init_string':
to_send = """string $x; """
elif intent[-1]=='init_int':
to_send = """int $x; """
elif intent[-1]=='init_char':
to_send = """char name[100];"""
elif intent[-1]=='init_float':
to_send = """float $x; """
elif intent[-1]=='arith_addition':
to_send = """<?php
function add(float $x,float $y){
return $x+$y;
}
?>"""
elif intent[-1]=='arith_subtraction':
to_send = """<?php
function add(float $x,float $y){
return $x-$y;
}
?>"""
elif intent[-1]=='arith_multiplication':
to_send = """<?php
function add(float $x,float $y){
return $a*$b;
}
?>"""
elif intent[-1]=='arith_division':
to_send = """<?php
function add(float $x,float $y){
return $a/$b;
}
?>"""
elif intent[-1]=='arith_remainder':
to_send = """<?php
function add(float $x,float $y){
return $a%$b;
}
?>"""
elif intent[-1]=='def_function':
to_send = """<?php
function add(float $x,float $y){
//enter your code
return "Your Output";
}
add($x,$y);
?>"""
elif intent[-1]=='create_array':
to_send = """int a[100],x,b;
echo 'Enter array size:';
$handle = fopen ("php://stdin","r");
$line = fgets($handle);
echo 'Enter array elements:';
for(x=a;x<b;x++) {
a[x]=fgets($handle);
}
echo 'Array is: ' ;
for($x=a;$x<b;$x++) {
echo $a[$x];
}"""
elif intent[-1]=='switch_condition':
to_send = """$x = "variable";
switch ($x) {
case "1":
//enter your code
break;
case "2":
//enter your code
break;
case "3":
//enter your code
break;
default: //optional
//default return code;
}"""
elif intent[-1]=='cplus' or intent[-1]=='python' or intent[-1]=='swift':
to_send= """Please Use the Change language option!"""
elif intent[-1]=='php':
to_send="""running php"""
else:
to_send="""I am sorry, i dont know what that means"""
c+=1
return json.dumps({"response": to_send}), 200
######################################################## SWIFT #########################################################################################################################
while intent[0]=='swift':
if intent[-1]=='for_loop':
to_send = """for i in a...b {
//enter your code here
} """
elif intent[-1]=='print':
to_send = """ print(//enter your code) """
elif intent[-1]=='nested_for':
to_send = """for i in a...b {
for j in a...b{
//enter your code here
}
}"""
elif intent[-1]=='if_condition':
to_send = """let a = 10
if a < b {
//enter your code
}
//print("This statement is always executed.")"""
elif intent[-1]=='nested_if':
to_send = """let a = 10
if a > b {
if a > b {
//enter your code
}
}
//print("This statement is always executed.")
"""
elif intent[-1]=='else_if':
to_send = """let a = 10
if a > b {
//enter your code
} else if a > b {
//enter your code
}
//print("This statement is always executed.")
"""
elif intent[-1]=='else_condition':
to_send = """let a = 10
if a > b {
//enter your code
}
else {
//enter your code
}"""
elif intent[-1]=='while_loop':
to_send = """while a <= b {
//enter your code
}"""
elif intent[-1]=='exit_loop':
to_send = """if a > b {
break
}"""
elif intent[-1]=='do_while_loop':
to_send = """repeat {
var i = 1
//enter your code here.
i = i + 1
} while a < b"""
elif intent[-1]=='init_string':
to_send = """var your_string = 'change it here' """
elif intent[-1]=='init_int':
to_send = """var your_integer = 0 """
elif intent[-1]=='init_char':
to_send = """var your_char = 'C' """
elif intent[-1]=='init_float':
to_send = """var your_float = 0.00 """
elif intent[-1]=='arith_addition':
to_send = """func add(a: Int , b: Int) -> Int {
let sum = a + b
return sum
}
print("sum is" , add(a: 2, b: 4), separator: " ")"""
elif intent[-1]=='arith_subtraction':
to_send = """func sub(a: Int , b: Int) -> Int {
let diff = a - b
return diff
}
print("diff is" , sub(a: 10, b: 4), separator: " ")"""
elif intent[-1]=='arith_multiplication':
to_send = """func multi(a: Int , b: Int) -> Int {
let prod = a * b
return prod
}
print("product is" , multi(a: 2, b: 4), separator: " ")"""
elif intent[-1]=='arith_division':
to_send = """func divi(a: Int , b: Int) -> Int {
let diff = a / b
return diff
}
print("quotient is" , divi(a: 19, b: 4), separator: " ")"""
elif intent[-1]=='arith_remainder':
to_send = """func modu(a: Int , b: Int) -> Int {
let mod = a % b
return mod
}
print("reminder is" , modu(a: 18, b: 4), separator: " ")"""
elif intent[-1]=='def_function':
to_send = """func your_func_name(a: Int , b: Int) -> String {
//enter your code
if a > b{
The_final_output = "Edit this function"
}
return The_final_output
}
print("output:" , your_func_name(a: 18, b: 4), separator: " ")"""
elif intent[-1]=='recus':
to_send = """func your_fun(a: Int) -> String {
var a = a + 1
if a <= 15 {
print(a)
your_fun(a: a)
}
else{
print("a has exceeded the limit of 15")
}
return ""
}
print(your_fun(a: 9))"""
elif intent[-1]=='create_array':
to_send = """var your_array = [1,2,3,4,5,6]
print(your_array)"""
elif intent[-1]=='switch_condition':
to_send = """let someCharacter: Character = "z" // or someinteger: Int = 2
switch someCharacter {
case "a": // case 1:
// enter your code
case "z": // case 2:
// enter your code
default:
// default reply
}"""
elif intent[-1]=='cplus' or intent[-1]=='python' or intent[-1]=='php':
to_send= """Please Use the Change language option!"""
elif intent[-1]=='swift':
to_send="""running swift"""
else:
to_send="""I am sorry, i dont know what that means"""
c+=1
return json.dumps({"response": to_send}), 200
c+=1
return json.dumps({"response": 'Come back later for that language :) '}), 200
if __name__=='__main__':
c=1
intent=[]
webbrowser.open('http://127.0.0.1:5000/')
app.run(debug=False)