Description:
fix bug
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r176:1bdb8b71a462 - - 1 file changed: 1 inserted, 1 deleted
@@ -240,232 +240,232 | |||
|
240 | 240 | end |
|
241 | 241 | |
|
242 | 242 | prob_reporter = Grader::SubmissionReporter.new(:dry_run => options[:dry_run], |
|
243 | 243 | :result_collector => result_collector) |
|
244 | 244 | |
|
245 | 245 | engine = Grader::Engine.new(:reporter => prob_reporter) |
|
246 | 246 | runner = Grader::Runner.new(engine, grader_proc) |
|
247 | 247 | |
|
248 | 248 | grader_proc.report_active if grader_proc!=nil |
|
249 | 249 | |
|
250 | 250 | latest_submitted_at = nil |
|
251 | 251 | graded_submission_ids = {} |
|
252 | 252 | |
|
253 | 253 | while true |
|
254 | 254 | |
|
255 | 255 | if check_stopfile # created by calling grader stop |
|
256 | 256 | clear_stopfile |
|
257 | 257 | log "stopped (with stop file)" |
|
258 | 258 | break |
|
259 | 259 | end |
|
260 | 260 | |
|
261 | 261 | if latest_submitted_at==nil |
|
262 | 262 | submissions = Submission.all |
|
263 | 263 | else |
|
264 | 264 | submissions = Submission.all(:conditions => ["submitted_at >= :latest", |
|
265 | 265 | {:latest => latest_submitted_at}]) |
|
266 | 266 | end |
|
267 | 267 | |
|
268 | 268 | graded_any = false |
|
269 | 269 | |
|
270 | 270 | if submissions.length != 0 |
|
271 | 271 | submissions.each do |submission| |
|
272 | 272 | if (submission.problem == nil) or (!submission.problem.available) |
|
273 | 273 | next |
|
274 | 274 | end |
|
275 | 275 | if ! graded_submission_ids[submission.id] |
|
276 | 276 | runner.grade_submission(submission) |
|
277 | 277 | graded_submission_ids[submission.id] = true |
|
278 | 278 | if (!latest_submitted_at or |
|
279 | 279 | latest_submitted_at < submission.submitted_at) |
|
280 | 280 | latest_submitted_at = submission.submitted_at |
|
281 | 281 | end |
|
282 | 282 | puts "graded: #{submission.id}" |
|
283 | 283 | puts "latest: #{latest_submitted_at}" |
|
284 | 284 | graded_any = true |
|
285 | 285 | end |
|
286 | 286 | end |
|
287 | 287 | end |
|
288 | 288 | |
|
289 | 289 | if ! graded_any |
|
290 | 290 | sleep(1) |
|
291 | 291 | end |
|
292 | 292 | end |
|
293 | 293 | end |
|
294 | 294 | |
|
295 | 295 | def grader_grade_problems(grader_proc, options) |
|
296 | 296 | if options[:report] |
|
297 | 297 | result_collector = ResultCollector.new |
|
298 | 298 | else |
|
299 | 299 | result_collector = nil |
|
300 | 300 | end |
|
301 | 301 | |
|
302 | 302 | if options[:dry_run] |
|
303 | 303 | puts "Running in dry mode" |
|
304 | 304 | end |
|
305 | 305 | |
|
306 | 306 | prob_reporter = Grader::SubmissionReporter.new(:dry_run => options[:dry_run], |
|
307 | 307 | :result_collector => result_collector) |
|
308 | 308 | engine = Grader::Engine.new(:reporter => prob_reporter) |
|
309 | 309 | runner = Grader::Runner.new(engine, grader_proc) |
|
310 | 310 | |
|
311 | 311 | grader_proc.report_active if grader_proc!=nil |
|
312 | 312 | |
|
313 | 313 | ARGV.each do |prob_name| |
|
314 | 314 | prob = Problem.find_by_name(prob_name) |
|
315 | 315 | if prob==nil |
|
316 | 316 | puts "cannot find problem: #{prob_name}" |
|
317 | 317 | else |
|
318 | 318 | runner.grade_problem(prob,options) |
|
319 | 319 | end |
|
320 | 320 | end |
|
321 | 321 | |
|
322 | 322 | if options[:report] |
|
323 | 323 | result_collector.print_report_by_user |
|
324 | 324 | end |
|
325 | 325 | end |
|
326 | 326 | |
|
327 | 327 | def grader_grade_contests(grader_proc, options) |
|
328 | 328 | # always use dry run when grading during contest |
|
329 | 329 | dry_run = options[:dry_run] = true |
|
330 | 330 | |
|
331 | 331 | contest_name = ARGV.shift |
|
332 | 332 | |
|
333 | 333 | contest = Contest.find_by_name(contest_name) |
|
334 | 334 | if contest==nil |
|
335 | 335 | puts "cannot find contest: #{contest_name}" |
|
336 | 336 | exit(0) |
|
337 | 337 | end |
|
338 | 338 | |
|
339 | 339 | if options[:report] |
|
340 | 340 | result_collector = ResultCollector.new |
|
341 | 341 | else |
|
342 | 342 | result_collector = nil |
|
343 | 343 | end |
|
344 | 344 | |
|
345 | 345 | if options[:dry_run] |
|
346 | 346 | puts "Running in dry mode" |
|
347 | 347 | end |
|
348 | 348 | |
|
349 | 349 | prob_reporter = Grader::SubmissionReporter.new(:dry_run => dry_run, |
|
350 | 350 | :result_collector => result_collector) |
|
351 | 351 | engine = Grader::Engine.new(:reporter => prob_reporter) |
|
352 | 352 | runner = Grader::Runner.new(engine, grader_proc) |
|
353 | 353 | |
|
354 | 354 | grader_proc.report_active if grader_proc!=nil |
|
355 | 355 | |
|
356 | 356 | contest.problems.each do |problem| |
|
357 | 357 | puts "Grading: #{problem.name}" |
|
358 | 358 | runner.grade_problem(problem, |
|
359 | 359 | :user_conditions => lambda do |u| |
|
360 | 360 | u.contest_finished? and |
|
361 | 361 | u.contest_ids.include?(contest.id) |
|
362 | 362 | end) |
|
363 | 363 | end |
|
364 | 364 | |
|
365 | 365 | if options[:report] |
|
366 | 366 | result_collector.print_report_by_user |
|
367 | 367 | end |
|
368 | 368 | end |
|
369 | 369 | |
|
370 | 370 | def grader_grade_submissions(grader_proc, options) |
|
371 | 371 | engine = Grader::Engine.new |
|
372 | 372 | runner = Grader::Runner.new(engine, grader_proc) |
|
373 | 373 | |
|
374 | 374 | grader_proc.report_active if grader_proc!=nil |
|
375 | 375 | |
|
376 | 376 | ARGV.each do |sub_id| |
|
377 | 377 | puts "Grading #{sub_id}" |
|
378 | 378 | begin |
|
379 | 379 | submission = Submission.find(sub_id.to_i) |
|
380 | 380 | rescue ActiveRecord::RecordNotFound |
|
381 | 381 | puts "Submission #{sub_id} not found" |
|
382 | 382 | submission = nil |
|
383 | 383 | end |
|
384 | 384 | |
|
385 | 385 | if submission!=nil |
|
386 | 386 | runner.grade_submission(submission) |
|
387 | 387 | end |
|
388 | 388 | end |
|
389 | 389 | end |
|
390 | 390 | |
|
391 | 391 | ######################################### |
|
392 | 392 | # main program |
|
393 | 393 | ######################################### |
|
394 | 394 | |
|
395 | 395 | options = process_options_and_stop_file |
|
396 | 396 | GRADER_ENV = options[:environment] |
|
397 | 397 | grader_mode = options[:mode] |
|
398 | 398 | dry_run = options[:dry_run] |
|
399 | 399 | |
|
400 | 400 | puts "environment: #{GRADER_ENV}" |
|
401 | 401 | puts "grader mode: #{grader_mode}" |
|
402 | 402 | require File.join(File.dirname(__FILE__),'config/environment') |
|
403 | 403 | |
|
404 | 404 | # add grader_mode to config |
|
405 | 405 | # this is needed because method log needs it. TODO: clean this up |
|
406 | 406 | class << config |
|
407 | 407 | attr_accessor :grader_mode |
|
408 | 408 | end |
|
409 | 409 | config.grader_mode = grader_mode |
|
410 | 410 | |
|
411 | 411 | # reading rails environment |
|
412 | 412 | log 'Reading rails environment' |
|
413 | 413 | |
|
414 | 414 | RAILS_ENV = config.rails_env |
|
415 | 415 | require RAILS_ROOT + '/config/environment' |
|
416 | 416 | |
|
417 | 417 | # register grader process |
|
418 | 418 | if config.report_grader |
|
419 | 419 | grader_proc = GraderProcess.register(config.grader_hostname, |
|
420 | 420 | Process.pid, |
|
421 | 421 | grader_mode) |
|
422 | 422 | else |
|
423 | 423 | grader_proc = nil |
|
424 | 424 | end |
|
425 | 425 | |
|
426 | 426 | #set loggin environment |
|
427 | 427 | ENV['GRADER_LOGGING'] = log_file_name |
|
428 | 428 | if options[:err_log] |
|
429 | 429 | err_file_name = log_file_name + '.err' |
|
430 | 430 | $stderr.reopen(err_file_name,"a") |
|
431 | 431 | log "STDERR log to file [#{err_file_name}]" |
|
432 | - warn "start logging for grader PID #{Process.id} on #{Time.now.in_time_zone}" | |
|
432 | + warn "start logging for grader PID #{Process.pid} on #{Time.now.in_time_zone}" | |
|
433 | 433 | end |
|
434 | 434 | |
|
435 | 435 | |
|
436 | 436 | # register exit handler to report inactive, and terminated |
|
437 | 437 | at_exit do |
|
438 | 438 | if grader_proc!=nil |
|
439 | 439 | grader_proc.report_inactive |
|
440 | 440 | grader_proc.terminate |
|
441 | 441 | end |
|
442 | 442 | end |
|
443 | 443 | |
|
444 | 444 | # |
|
445 | 445 | # MAIN LOOP |
|
446 | 446 | # |
|
447 | 447 | |
|
448 | 448 | case grader_mode |
|
449 | 449 | when "queue" |
|
450 | 450 | grader_queue_loop(grader_proc, options) |
|
451 | 451 | |
|
452 | 452 | when "test_request" |
|
453 | 453 | grader_test_request_loop(grader_proc, options) |
|
454 | 454 | |
|
455 | 455 | when "prob" |
|
456 | 456 | grader_grade_problems(grader_proc, options) |
|
457 | 457 | |
|
458 | 458 | when "contest" |
|
459 | 459 | grader_grade_contests(grader_proc, options) |
|
460 | 460 | |
|
461 | 461 | when "sub" |
|
462 | 462 | grader_grade_submissions(grader_proc, options) |
|
463 | 463 | |
|
464 | 464 | when "autonew" |
|
465 | 465 | grader_autonew_loop(grader_proc, options) |
|
466 | 466 | |
|
467 | 467 | else |
|
468 | 468 | display_manual |
|
469 | 469 | exit(0) |
|
470 | 470 | end |
|
471 | 471 |
You need to be logged in to leave comments.
Login now