Description:
added problem description import
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r211:3a4974a6747f - - 3 files changed: 35 inserted, 3 deleted
@@ -1,49 +1,58 | |||
|
1 | 1 | - content_for :head do |
|
2 | 2 | = stylesheet_link_tag 'problems' |
|
3 | 3 | = javascript_include_tag :defaults |
|
4 | 4 | |
|
5 | 5 | %h1 Import problems |
|
6 | 6 | |
|
7 | 7 | %p= link_to '[Back to problem list]', :action => 'list' |
|
8 | 8 | |
|
9 | 9 | - if @problem and @problem.errors |
|
10 | 10 | =error_messages_for 'problem' |
|
11 | 11 | |
|
12 | 12 | - form_tag({:action => 'do_import'}, :multipart => true) do |
|
13 | 13 | .submitbox |
|
14 | 14 | %table |
|
15 | 15 | %tr |
|
16 | 16 | %td Name: |
|
17 | 17 | %td= text_field_tag 'name' |
|
18 | 18 | %tr |
|
19 | 19 | %td Full name: |
|
20 | 20 | %td |
|
21 | 21 | = text_field_tag 'full_name' |
|
22 | 22 | %span{:class => 'help'} Leave blank to use the same value as the name above. |
|
23 | 23 | %tr |
|
24 | 24 | %td Testdata file: |
|
25 | + %td= file_field_tag 'file' | |
|
26 | + %tr | |
|
25 | 27 | %td |
|
26 | - = file_field_tag 'file' | |
|
28 | + %td | |
|
29 | + %span{:class => 'help'} | |
|
30 | + In .zip, .tgz, tar.gz, .tar format. | |
|
31 | + It should includes inputs (e.g., 1.in, 2a.in, 2b.in) | |
|
32 | + and solutions (e.g., 1.sol, 2a.sol, 2b.sol). | |
|
33 | + %br/ | |
|
34 | + You may put task description in *.html for raw html | |
|
35 | + and *.md or *.markdown for markdown. | |
|
27 | 36 | %tr |
|
28 | 37 | %td |
|
29 | 38 | %td |
|
30 | 39 | = check_box_tag 'import_to_db' |
|
31 | 40 | Import test data to database (for a test-pair task) |
|
32 | 41 | %tr |
|
33 | 42 | %td Time limit: |
|
34 | 43 | %td |
|
35 | 44 | = text_field_tag 'time_limit' |
|
36 | 45 | %span{:class => 'help'} In seconds. Leave blank to use 1 sec. |
|
37 | 46 | %tr |
|
38 | 47 | %td Memory limit: |
|
39 | 48 | %td |
|
40 | 49 | = text_field_tag 'memory_limit' |
|
41 | 50 | %span{:class => 'help'} In MB. Leave blank to use 32MB. |
|
42 | 51 | %tr |
|
43 | 52 | %td |
|
44 | 53 | %td= submit_tag 'Import problem' |
|
45 | 54 | |
|
46 | 55 | - if @log |
|
47 | 56 | %h3 Import log |
|
48 | 57 | %pre.import-log |
|
49 | 58 | = @log |
@@ -1,22 +1,20 | |||
|
1 | 1 | <tr class="name"> |
|
2 | 2 | <td> |
|
3 | 3 | <a name="<%= problem.name %>"></a> |
|
4 | 4 | <%= "#{problem.full_name} (#{problem.name})" %> |
|
5 | 5 | </td> |
|
6 | 6 | </tr> |
|
7 | 7 | <tr> |
|
8 | 8 | <% td_class = (problem_counter%2==0) ? "desc-even" : "desc-odd" %> |
|
9 | 9 | <td class="<%= td_class %>"> |
|
10 | 10 | <% if problem.description!=nil %> |
|
11 | 11 | <% if problem.description.markdowned %> |
|
12 | 12 | <%= markdown(problem.description.body) %> |
|
13 | 13 | <% else %> |
|
14 | - <pre> | |
|
15 | 14 | <%= problem.description.body %> |
|
16 | - </pre> | |
|
17 | 15 | <% end %> |
|
18 | 16 | <% else %> |
|
19 | 17 | (not available) |
|
20 | 18 | <% end %> |
|
21 | 19 | </td> |
|
22 | 20 | </tr> |
@@ -1,109 +1,134 | |||
|
1 | 1 | require 'tmpdir' |
|
2 | 2 | |
|
3 | 3 | class TestdataImporter |
|
4 | 4 | |
|
5 | 5 | attr :log_msg |
|
6 | 6 | |
|
7 | 7 | def initialize(problem) |
|
8 | 8 | @problem = problem |
|
9 | 9 | end |
|
10 | 10 | |
|
11 | 11 | def import_from_file(tempfile, |
|
12 | 12 | time_limit, |
|
13 | 13 | memory_limit, |
|
14 | 14 | import_to_db=false) |
|
15 | 15 | |
|
16 | 16 | dirname = extract(tempfile) |
|
17 | 17 | return false if not dirname |
|
18 | 18 | if not import_to_db |
|
19 | 19 | @log_msg = GraderScript.call_import_problem(@problem.name, |
|
20 | 20 | dirname, |
|
21 | 21 | time_limit, |
|
22 | 22 | memory_limit) |
|
23 | 23 | else |
|
24 | 24 | # Import test data to test pairs. |
|
25 | 25 | |
|
26 | 26 | @problem.test_pairs.clear |
|
27 | 27 | if import_test_pairs(dirname) |
|
28 | 28 | test_pair_count = TestPair.count :conditions => "problem_id = #{@problem.id}" |
|
29 | 29 | @log_msg = "Importing test pair successful. (#{test_pair_count} test pairs imported)" |
|
30 | 30 | else |
|
31 | 31 | @log_msg = "Importing test pair failed. (0 test pairs imported)" |
|
32 | 32 | end |
|
33 | 33 | end |
|
34 | + | |
|
35 | + @log_msg << import_problem_description(dirname) | |
|
36 | + | |
|
34 | 37 | return true |
|
35 | 38 | end |
|
36 | 39 | |
|
37 | 40 | protected |
|
38 | 41 | |
|
39 | 42 | def self.long_ext(filename) |
|
40 | 43 | i = filename.index('.') |
|
41 | 44 | len = filename.length |
|
42 | 45 | return filename.slice(i..len) |
|
43 | 46 | end |
|
44 | 47 | |
|
45 | 48 | def extract(tempfile) |
|
46 | 49 | testdata_filename = save_testdata_file(tempfile) |
|
47 | 50 | ext = TestdataImporter.long_ext(tempfile.original_filename) |
|
48 | 51 | |
|
49 | 52 | extract_dir = File.join(GraderScript.raw_dir, @problem.name) |
|
50 | 53 | begin |
|
51 | 54 | Dir.mkdir extract_dir |
|
52 | 55 | rescue Errno::EEXIST |
|
53 | 56 | end |
|
54 | 57 | |
|
55 | 58 | if ext=='.tar.gz' or ext=='.tgz' |
|
56 | 59 | cmd = "tar -zxvf #{testdata_filename} -C #{extract_dir}" |
|
57 | 60 | elsif ext=='.tar' |
|
58 | 61 | cmd = "tar -xvf #{testdata_filename} -C #{extract_dir}" |
|
59 | 62 | elsif ext=='.zip' |
|
60 | 63 | cmd = "unzip -o #{testdata_filename} -d #{extract_dir}" |
|
61 | 64 | else |
|
62 | 65 | return nil |
|
63 | 66 | end |
|
64 | 67 | |
|
65 | 68 | system(cmd) |
|
66 | 69 | |
|
67 | 70 | files = Dir["#{extract_dir}/**/*1*.in"] |
|
68 | 71 | return nil if files.length==0 |
|
69 | 72 | |
|
70 | 73 | return File.dirname(files[0]) |
|
71 | 74 | end |
|
72 | 75 | |
|
73 | 76 | def save_testdata_file(tempfile) |
|
74 | 77 | ext = TestdataImporter.long_ext(tempfile.original_filename) |
|
75 | 78 | testdata_filename = File.join(Dir.tmpdir,"#{@problem.name}#{ext}") |
|
76 | 79 | |
|
77 | 80 | return nil if tempfile=="" |
|
78 | 81 | |
|
79 | 82 | if tempfile.instance_of?(Tempfile) |
|
80 | 83 | tempfile.close |
|
81 | 84 | FileUtils.move(tempfile.path,testdata_filename) |
|
82 | 85 | else |
|
83 | 86 | File.open(testdata_filename, "wb") do |f| |
|
84 | 87 | f.write(tempfile.read) |
|
85 | 88 | end |
|
86 | 89 | end |
|
87 | 90 | |
|
88 | 91 | return testdata_filename |
|
89 | 92 | end |
|
90 | 93 | |
|
91 | 94 | def import_test_pairs(dirname) |
|
92 | 95 | test_num = 1 |
|
93 | 96 | while FileTest.exists? "#{dirname}/#{test_num}.in" |
|
94 | 97 | in_filename = "#{dirname}/#{test_num}.in" |
|
95 | 98 | sol_filename = "#{dirname}/#{test_num}.sol" |
|
96 | 99 | |
|
97 | 100 | break if not FileTest.exists? sol_filename |
|
98 | 101 | |
|
99 | 102 | test_pair = TestPair.new(:input => open(in_filename).read, |
|
100 | 103 | :solution => open(sol_filename).read, |
|
101 | 104 | :problem => @problem) |
|
102 | 105 | break if not test_pair.save |
|
103 | 106 | |
|
104 | 107 | test_num += 1 |
|
105 | 108 | end |
|
106 | 109 | return test_num > 1 |
|
107 | 110 | end |
|
108 | 111 | |
|
112 | + def import_problem_description(dirname) | |
|
113 | + html_files = Dir["#{dirname}/*.html"] | |
|
114 | + markdown_files = Dir["#{dirname}/*.md"] + Dir["#{dirname}/*.markdown"] | |
|
115 | + if (html_files.length != 0) or (markdown_files.length != 0) | |
|
116 | + description = @problem.description || Description.new | |
|
117 | + | |
|
118 | + if html_files.length != 0 | |
|
119 | + filename = html_files[0] | |
|
120 | + description.markdowned = false | |
|
121 | + else | |
|
122 | + filename = markdown_files[0] | |
|
123 | + description.markdowned = true | |
|
109 | 124 | end |
|
125 | + | |
|
126 | + description.body = open(filename).read | |
|
127 | + description.save | |
|
128 | + @problem.description = description | |
|
129 | + @problem.save | |
|
130 | + return "\nProblem description imported from #{filename}." | |
|
131 | + end | |
|
132 | + end | |
|
133 | + | |
|
134 | + end |
You need to be logged in to leave comments.
Login now