Description:
add php
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r165:6f663119800b - - 4 files changed: 20 inserted, 3 deleted
@@ -21,30 +21,32 | |||||
|
21 | fp.puts("run: #{Time.new.strftime("%H:%M")} #{str}") |
|
21 | fp.puts("run: #{Time.new.strftime("%H:%M")} #{str}") |
|
22 | fp.close |
|
22 | fp.close |
|
23 | end |
|
23 | end |
|
24 | end |
|
24 | end |
|
25 |
|
25 | ||
|
26 | C_COMPILER = "/usr/bin/gcc" |
|
26 | C_COMPILER = "/usr/bin/gcc" |
|
27 | CPLUSPLUS_COMPILER = "/usr/bin/g++" |
|
27 | CPLUSPLUS_COMPILER = "/usr/bin/g++" |
|
28 | PASCAL_COMPILER = "/usr/bin/fpc" |
|
28 | PASCAL_COMPILER = "/usr/bin/fpc" |
|
29 | JAVA_COMPILER = "/usr/bin/javac" |
|
29 | JAVA_COMPILER = "/usr/bin/javac" |
|
30 | RUBY_INTERPRETER = "/usr/bin/ruby" |
|
30 | RUBY_INTERPRETER = "/usr/bin/ruby" |
|
31 | PYTHON_INTERPRETER = "/usr/bin/python" |
|
31 | PYTHON_INTERPRETER = "/usr/bin/python" |
|
32 | PYTHON_CHECKER = "/usr/bin/pyflakes" |
|
32 | PYTHON_CHECKER = "/usr/bin/pyflakes" |
|
|
33 | + PHP_INTERPRETER = "/usr/bin/php" | ||
|
33 |
|
34 | ||
|
34 | C_OPTIONS = "-O2 -s -static -std=c99 -DCONTEST -lm -Wall" |
|
35 | C_OPTIONS = "-O2 -s -static -std=c99 -DCONTEST -lm -Wall" |
|
35 | CPLUSPLUS_OPTIONS = "-O2 -s -std=c++11 -static -DCONTEST -lm -Wall" |
|
36 | CPLUSPLUS_OPTIONS = "-O2 -s -std=c++11 -static -DCONTEST -lm -Wall" |
|
36 | PASCAL_OPTIONS = "-O1 -XS -dCONTEST" |
|
37 | PASCAL_OPTIONS = "-O1 -XS -dCONTEST" |
|
37 | JAVA_OPTIONS = "" |
|
38 | JAVA_OPTIONS = "" |
|
38 | PYTHON_OPTIONS = "" |
|
39 | PYTHON_OPTIONS = "" |
|
|
40 | + PHP_OPTIONS = "-l" | ||
|
39 |
|
41 | ||
|
40 | # Check for the correct number of arguments. Otherwise, print usage. |
|
42 | # Check for the correct number of arguments. Otherwise, print usage. |
|
41 | if ARGV.length == 0 or ARGV.length > 4 |
|
43 | if ARGV.length == 0 or ARGV.length > 4 |
|
42 | puts "Usage: compile <language> [<source-file>] [<output-file>] [<message-file>]" |
|
44 | puts "Usage: compile <language> [<source-file>] [<output-file>] [<message-file>]" |
|
43 | puts |
|
45 | puts |
|
44 | puts "<source-file> is defaulted to \"source\"." |
|
46 | puts "<source-file> is defaulted to \"source\"." |
|
45 | puts "<output-file> is defaulted to \"a.out\"." |
|
47 | puts "<output-file> is defaulted to \"a.out\"." |
|
46 | puts "<message-file> is defaulted to \"compiler_message\"." |
|
48 | puts "<message-file> is defaulted to \"compiler_message\"." |
|
47 | puts |
|
49 | puts |
|
48 | exit(127) |
|
50 | exit(127) |
|
49 | end |
|
51 | end |
|
50 |
|
52 | ||
@@ -140,25 +142,37 | |||||
|
140 | #compile to python bytecode |
|
142 | #compile to python bytecode |
|
141 | command = "#{PYTHON_INTERPRETER} -m py_compile #{params[:source_file]}" |
|
143 | command = "#{PYTHON_INTERPRETER} -m py_compile #{params[:source_file]}" |
|
142 | puts "compile: #{command}" |
|
144 | puts "compile: #{command}" |
|
143 | system(command) |
|
145 | system(command) |
|
144 | puts "pwd: " + Dir.pwd |
|
146 | puts "pwd: " + Dir.pwd |
|
145 | Dir.new('.').each {|file| puts file} |
|
147 | Dir.new('.').each {|file| puts file} |
|
146 | File.open(params[:output_file],"w") do |out_file| |
|
148 | File.open(params[:output_file],"w") do |out_file| |
|
147 | out_file.puts "#!#{PYTHON_INTERPRETER} #{params[:source_file]}c" |
|
149 | out_file.puts "#!#{PYTHON_INTERPRETER} #{params[:source_file]}c" |
|
148 | end |
|
150 | end |
|
149 | File.chmod(0755, params[:output_file]) |
|
151 | File.chmod(0755, params[:output_file]) |
|
150 | FileUtils.cp("#{params[:source_file]}c",params[:output_file]) |
|
152 | FileUtils.cp("#{params[:source_file]}c",params[:output_file]) |
|
151 | end |
|
153 | end |
|
152 | - |
|
154 | + |
|
|
155 | + when "php" | ||
|
|
156 | + command = "#{PHP_INTERPRETER} #{PHP_OPTIONS} #{params[:source_file]} 2> #{params[:message_file]}" | ||
|
|
157 | + if system(command) | ||
|
|
158 | + File.open(params[:output_file],"w") do |out_file| | ||
|
|
159 | + out_file.puts "#!#{PHP_INTERPRETER}" | ||
|
|
160 | + File.open(params[:source_file],"r").each do |line| | ||
|
|
161 | + out_file.print line | ||
|
|
162 | + end | ||
|
|
163 | + end | ||
|
|
164 | + File.chmod(0755, params[:output_file]) | ||
|
|
165 | + end | ||
|
|
166 | + | ||
|
153 | else |
|
167 | else |
|
154 | talk("ERROR: Invalid language specified!") |
|
168 | talk("ERROR: Invalid language specified!") |
|
155 | open(params[:message_file],"w") do |f| |
|
169 | open(params[:message_file],"w") do |f| |
|
156 | f.puts "ERROR: Invalid language specified!" |
|
170 | f.puts "ERROR: Invalid language specified!" |
|
157 | end |
|
171 | end |
|
158 | exit(127) |
|
172 | exit(127) |
|
159 | end |
|
173 | end |
|
160 |
|
174 | ||
|
161 | # Report success or failure. |
|
175 | # Report success or failure. |
|
162 | if FileTest.exists? params[:output_file] |
|
176 | if FileTest.exists? params[:output_file] |
|
163 | talk "Compilation was successful!" |
|
177 | talk "Compilation was successful!" |
|
164 | else |
|
178 | else |
@@ -23,25 +23,25 | |||||
|
23 | elsif comment =~ /[Cc]orrect/ |
|
23 | elsif comment =~ /[Cc]orrect/ |
|
24 | CORRECT_MARK |
|
24 | CORRECT_MARK |
|
25 | elsif comment =~ /[Tt]ime/ |
|
25 | elsif comment =~ /[Tt]ime/ |
|
26 | TIMEOUT_MARK |
|
26 | TIMEOUT_MARK |
|
27 | elsif res = /^[Cc]omment:(.*)$/.match(comment) |
|
27 | elsif res = /^[Cc]omment:(.*)$/.match(comment) |
|
28 | res[1] |
|
28 | res[1] |
|
29 | else |
|
29 | else |
|
30 | RUN_ERROR_MARK # these are run time errors |
|
30 | RUN_ERROR_MARK # these are run time errors |
|
31 | end |
|
31 | end |
|
32 | end |
|
32 | end |
|
33 |
|
33 | ||
|
34 | def extract_time(t) |
|
34 | def extract_time(t) |
|
35 | - puts "TIME: #{t}" |
|
35 | + #puts "TIME: #{t}" |
|
36 | if (result=/^(.*)r(.*)u(.*)s(.*)kbytes/.match(t)) |
|
36 | if (result=/^(.*)r(.*)u(.*)s(.*)kbytes/.match(t)) |
|
37 | {:real => result[1], :user => result[2], :sys => result[3], :mem => result[4]} |
|
37 | {:real => result[1], :user => result[2], :sys => result[3], :mem => result[4]} |
|
38 | else |
|
38 | else |
|
39 | #{:real => 0, :user => 0, :sys => 0} |
|
39 | #{:real => 0, :user => 0, :sys => 0} |
|
40 | #puts "ERROR READING RUNNING TIME: #{t}" |
|
40 | #puts "ERROR READING RUNNING TIME: #{t}" |
|
41 | raise "Error reading running time: #{t}" |
|
41 | raise "Error reading running time: #{t}" |
|
42 | end |
|
42 | end |
|
43 | end |
|
43 | end |
|
44 |
|
44 | ||
|
45 | problem_home = ENV['PROBLEM_HOME'] |
|
45 | problem_home = ENV['PROBLEM_HOME'] |
|
46 | require "#{problem_home}/script/test_dsl.rb" |
|
46 | require "#{problem_home}/script/test_dsl.rb" |
|
47 | load "#{problem_home}/test_cases/all_tests.cfg" |
|
47 | load "#{problem_home}/test_cases/all_tests.cfg" |
@@ -44,25 +44,25 | |||||
|
44 | # ARGV[2] --- test result directory |
|
44 | # ARGV[2] --- test result directory |
|
45 | # ARGV[3] --- sandbox directory |
|
45 | # ARGV[3] --- sandbox directory |
|
46 |
|
46 | ||
|
47 | if ARGV.length < 2 || ARGV.length > 4 |
|
47 | if ARGV.length < 2 || ARGV.length > 4 |
|
48 | puts "Usage: judge <language> <program-source> [<test-result-directory>] [<sandbox-directory>]" |
|
48 | puts "Usage: judge <language> <program-source> [<test-result-directory>] [<sandbox-directory>]" |
|
49 | puts " <sandbox-directory> is defaulted to ./sandbox" |
|
49 | puts " <sandbox-directory> is defaulted to ./sandbox" |
|
50 | puts " <test-result-directory> is defaulted to ./test-result" |
|
50 | puts " <test-result-directory> is defaulted to ./test-result" |
|
51 | puts "WARNING: The judge script will forcefully create the (implicitly and explicitly) specified directories and remove anything inside it." |
|
51 | puts "WARNING: The judge script will forcefully create the (implicitly and explicitly) specified directories and remove anything inside it." |
|
52 | exit(127) |
|
52 | exit(127) |
|
53 | end |
|
53 | end |
|
54 |
|
54 | ||
|
55 | language = ARGV[0] |
|
55 | language = ARGV[0] |
|
56 | - if language != "c" && language != "c++" && language != "pas" && language != "java" && language != "ruby" && language != "python" |
|
56 | + if language != "c" && language != "c++" && language != "pas" && language != "java" && language != "ruby" && language != "python" && language != "php" |
|
57 | log "You specified a language that is not supported: #{language}." |
|
57 | log "You specified a language that is not supported: #{language}." |
|
58 | exit(127) |
|
58 | exit(127) |
|
59 | end |
|
59 | end |
|
60 |
|
60 | ||
|
61 | source_file = ARGV[1] |
|
61 | source_file = ARGV[1] |
|
62 | ENV['SOURCE_NAME'] = source_file |
|
62 | ENV['SOURCE_NAME'] = source_file |
|
63 | if File.exist?(source_file) == false |
|
63 | if File.exist?(source_file) == false |
|
64 | log "The source file does not exist." |
|
64 | log "The source file does not exist." |
|
65 | exit(127) |
|
65 | exit(127) |
|
66 | end |
|
66 | end |
|
67 |
|
67 | ||
|
68 | log "Making test result and sandbox directories..." |
|
68 | log "Making test result and sandbox directories..." |
@@ -84,39 +84,42 | |||||
|
84 |
|
84 | ||
|
85 | # Hide PROBLEM_HOME |
|
85 | # Hide PROBLEM_HOME |
|
86 | ENV['PROBLEM_HOME'] = nil |
|
86 | ENV['PROBLEM_HOME'] = nil |
|
87 | ENV['SOURCE_NAME'] = nil |
|
87 | ENV['SOURCE_NAME'] = nil |
|
88 |
|
88 | ||
|
89 | # Run the program. |
|
89 | # Run the program. |
|
90 | #run_command = "/usr/bin/time -f \"#{time_output_format}\" 2>run_result #{problem_home}/script/box_new -a 2 -f -t #{time_limit} -m #{mem_limit} -i #{input_file_name} -o output.txt #{program_name}" |
|
90 | #run_command = "/usr/bin/time -f \"#{time_output_format}\" 2>run_result #{problem_home}/script/box_new -a 2 -f -t #{time_limit} -m #{mem_limit} -i #{input_file_name} -o output.txt #{program_name}" |
|
91 | # |
|
91 | # |
|
92 |
|
92 | ||
|
93 | JAVA_OPTION = "-s set_robust_list -s futex -s clone -s getppid -s clone -s wait4 -p /usr/bin/ -p ./" |
|
93 | JAVA_OPTION = "-s set_robust_list -s futex -s clone -s getppid -s clone -s wait4 -p /usr/bin/ -p ./" |
|
94 | RUBY_OPTION = "-p /usr/lib64/ -p /lib64/ -p /dev/urandom -p #{sandbox_dir}/#{program_name} -s set_robust_list -s sched_getaffinity -s clock_gettime -s sigaltstack -s pipe2 -s clone -s futex -s openat" |
|
94 | RUBY_OPTION = "-p /usr/lib64/ -p /lib64/ -p /dev/urandom -p #{sandbox_dir}/#{program_name} -s set_robust_list -s sched_getaffinity -s clock_gettime -s sigaltstack -s pipe2 -s clone -s futex -s openat" |
|
95 | PYTHON_OPTION = "-p /usr/lib64/ -p /lib64/ -p /usr/bin/ -p /usr/local/lib64/ -p /usr/local/lib/ -p #{sandbox_dir}/#{program_name} -p ./#{program_name} -p #{sandbox_dir}/#{source_name} -s set_robust_list -s openat -s recvmsg -s connect -s socket -s sendto -E PYTHONNOUSERSITE=yes" |
|
95 | PYTHON_OPTION = "-p /usr/lib64/ -p /lib64/ -p /usr/bin/ -p /usr/local/lib64/ -p /usr/local/lib/ -p #{sandbox_dir}/#{program_name} -p ./#{program_name} -p #{sandbox_dir}/#{source_name} -s set_robust_list -s openat -s recvmsg -s connect -s socket -s sendto -E PYTHONNOUSERSITE=yes" |
|
|
96 | + PHP_OPTION = "-p /usr/lib64/ -p/lib64/ -p /usr/bin/ -p #{sandbox_dir}/#{program_name} -p ./#{program_name} -p /usr/share/ -s setfsuid -s setfsgid -s openat -s set_robust_list -s futex " | ||
|
96 |
|
97 | ||
|
97 | case language |
|
98 | case language |
|
98 | when "java" |
|
99 | when "java" |
|
99 | # for java, extract the classname |
|
100 | # for java, extract the classname |
|
100 | # wne have to add additional systemcall and we don't check the mem limit (dunno how to fix...) |
|
101 | # wne have to add additional systemcall and we don't check the mem limit (dunno how to fix...) |
|
101 | classname = 'DUMMY' |
|
102 | classname = 'DUMMY' |
|
102 | File.open(program_name,"r").each do |line| |
|
103 | File.open(program_name,"r").each do |line| |
|
103 | classname = line |
|
104 | classname = line |
|
104 | end |
|
105 | end |
|
105 | #for java, we cannot really check the memory limit... |
|
106 | #for java, we cannot really check the memory limit... |
|
106 | run_command = "#{problem_home}/script/box -a 3 -f -T -t #{time_limit} #{JAVA_OPTION} -i #{input_file_name} -o output.txt /usr/bin/java #{classname} 2>run_result" |
|
107 | run_command = "#{problem_home}/script/box -a 3 -f -T -t #{time_limit} #{JAVA_OPTION} -i #{input_file_name} -o output.txt /usr/bin/java #{classname} 2>run_result" |
|
107 | when "ruby" |
|
108 | when "ruby" |
|
108 | run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{mem_limit} #{RUBY_OPTION} -i #{input_file_name} -o output.txt /usr/bin/ruby #{program_name} 2>run_result" |
|
109 | run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{mem_limit} #{RUBY_OPTION} -i #{input_file_name} -o output.txt /usr/bin/ruby #{program_name} 2>run_result" |
|
109 | when "python" |
|
110 | when "python" |
|
110 | run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{mem_limit} #{PYTHON_OPTION} -i #{input_file_name} -o output.txt /usr/bin/python #{program_name} 2>run_result" |
|
111 | run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{mem_limit} #{PYTHON_OPTION} -i #{input_file_name} -o output.txt /usr/bin/python #{program_name} 2>run_result" |
|
|
112 | + when "php" | ||
|
|
113 | + run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} #{PHP_OPTION} -i #{input_file_name} -o output.txt /usr/bin/php #{program_name} 2>run_result" | ||
|
111 | else # for c++, pascal, we do the normal checking |
|
114 | else # for c++, pascal, we do the normal checking |
|
112 | run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{mem_limit} -i #{input_file_name} -o output.txt #{program_name} 2>run_result" |
|
115 | run_command = "#{problem_home}/script/box -a 2 -f -T -t #{time_limit} -m #{mem_limit} -i #{input_file_name} -o output.txt #{program_name} 2>run_result" |
|
113 | end |
|
116 | end |
|
114 |
|
117 | ||
|
115 |
|
118 | ||
|
116 | log "Running test #{test_num}..." |
|
119 | log "Running test #{test_num}..." |
|
117 | log run_command |
|
120 | log run_command |
|
118 | log |
|
121 | log |
|
119 | system(run_command) |
|
122 | system(run_command) |
|
120 |
|
123 | ||
|
121 | # Restore PROBLEM_HOME |
|
124 | # Restore PROBLEM_HOME |
|
122 | ENV['PROBLEM_HOME'] = problem_home |
|
125 | ENV['PROBLEM_HOME'] = problem_home |
You need to be logged in to leave comments.
Login now