Class: Contest::Driver::DriverBase

Inherits:
DriverEvent show all
Defined in:
lib/contest/driver/base.rb

Direct Known Subclasses

AizuOnlineJudge, Codeforces, Kattis, UvaOnlineJudge

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DriverEvent

#off, #on, #trigger

Constructor Details

#initializeDriverBase

Returns a new instance of DriverBase.



20
21
22
23
24
25
26
27
28
29
# File 'lib/contest/driver/base.rb', line 20

def initialize
  # submit options
  @options ||= {}
  # site config
  @config ||= {}
  @config["submit_rules"] ||= {}
  # call DriverEvent#initialize
  super
  initialize_ext
end

Instance Attribute Details

#configObject

Returns the value of attribute config.



18
19
20
# File 'lib/contest/driver/base.rb', line 18

def config
  @config
end

#optionsObject

Returns the value of attribute options.



18
19
20
# File 'lib/contest/driver/base.rb', line 18

def options
  @options
end

Instance Method Details

#define_options(&block) ⇒ Object



68
69
70
71
# File 'lib/contest/driver/base.rb', line 68

def define_options &block
  @blocks ||= []
  @blocks.push(block)
end

#get_commit_message(status) ⇒ Object



108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/contest/driver/base.rb', line 108

def get_commit_message status
  if @options[:message].nil?
    message = @config["submit_rules"]["message"] || DEFAULT_COMMIT_MESSAGE
    message = message.gsub '${site}', get_site_name
    message = message.gsub '${problem-id}', get_problem_id(options)
    message = message.gsub '${status}', status
    message = "\n#{get_commit_message_ext}" unless get_commit_message_ext.nil?
  else
    message = @options[:message]
  end
  message
end

#get_commit_message_extObject



104
105
106
# File 'lib/contest/driver/base.rb', line 104

def get_commit_message_ext
  nil
end

#get_descObject



64
65
66
# File 'lib/contest/driver/base.rb', line 64

def get_desc
  ''
end

#get_optsObject



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
# File 'lib/contest/driver/base.rb', line 73

def get_opts
  get_opts_ext()
  define_options do
    opt(
      :source,
      "Specify submitted code (Ex: main.cpp)",
      :type => :string,
      :required => false,
    )
    opt(
      :language,
      "Specify programming language (Ex: C++, Java or etc...)",
      :type => :string,
      :required => false,
    )
    opt(
      :message,
      "Set git-commit message",
      :type => :string,
      :required => false,
    )
  end
  Trollop::options ARGV, @blocks do |blocks|
    version "git-contest driver"
    # set driver options
    blocks.each do |b|
      instance_eval &b
    end
  end
end

#get_opts_extObject



35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/contest/driver/base.rb', line 35

def get_opts_ext
  # Example:
  # define_options do
  #   opt(
  #     :problem_id,
  #     "Problem ID (Ex: 1000, 123, 0123, etc...)",
  #     :type => :string,
  #     :required => true,
  #   )
  # end
  raise 'TODO: Implement'
end

#get_problem_id(options) ⇒ Object



52
53
54
# File 'lib/contest/driver/base.rb', line 52

def get_problem_id(options)
  raise 'TODO: Implement'
end

#get_site_nameObject



48
49
50
# File 'lib/contest/driver/base.rb', line 48

def get_site_name
  raise 'TODO: Implement'
end

#initialize_extObject



31
32
33
# File 'lib/contest/driver/base.rb', line 31

def initialize_ext
  nil
end

#resolve_language(label) ⇒ Object



56
57
58
# File 'lib/contest/driver/base.rb', line 56

def resolve_language(label)
  raise 'TODO: Implement'
end

#submitObject

submit a solution



122
123
124
125
126
127
128
129
130
# File 'lib/contest/driver/base.rb', line 122

def submit
  @options[:source] = Utils.resolve_path(
    @options[:source] || @config["submit_rules"]["source"] || DEFAULT_SOURCE_PATH
  )
  @options[:language] ||= Utils.resolve_language(@options[:source])
  @options[:language] = resolve_language Utils.normalize_language(@options[:language])

  submit_ext()
end

#submit_ext(config, source_path, options) ⇒ Object



60
61
62
# File 'lib/contest/driver/base.rb', line 60

def submit_ext(config, source_path, options)
  raise 'TODO: Implement'
end