Class: GlobalCollect::LogParsing::PaymentReport::ReportFile
- Inherits:
-
Object
- Object
- GlobalCollect::LogParsing::PaymentReport::ReportFile
- Defined in:
- lib/global_collect/log_parsing/payment_report/report_file.rb
Constant Summary collapse
- FILENAME_FORMAT =
RG - Ch2 => Technical aspects => File name 4 chars numeric account id, 1 char numeric year, 3 char numeric day-of-year, extension /wrt/ if test, /wrd/ if production (usually wr1).
/^(\d{4})(\d{1})(\d{3})\.wr(.)$/
- YEAR_BASE_ADJUSTED =
( Date.today.year * 10 ) / 10
- TEST_ENV_BYTE =
't'
Instance Attribute Summary collapse
-
#account_id ⇒ Object
readonly
Returns the value of attribute account_id.
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#date ⇒ Object
readonly
Returns the value of attribute date.
-
#environment ⇒ Object
readonly
Returns the value of attribute environment.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path) ⇒ ReportFile
constructor
A new instance of ReportFile.
- #parse ⇒ Object
Constructor Details
#initialize(path) ⇒ ReportFile
Returns a new instance of ReportFile.
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 11 def initialize(path) @path = path if File.basename(path) =~ FILENAME_FORMAT @account_id = $1 @date = Date.ordinal(YEAR_BASE_ADJUSTED + $2.to_i, $3.to_i) @environment = (TEST_ENV_BYTE == $4) ? :test : :production else raise ArgumentError.new("Unparseable path '#{path}'!") end end |
Instance Attribute Details
#account_id ⇒ Object (readonly)
Returns the value of attribute account_id.
3 4 5 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 3 def account_id @account_id end |
#data ⇒ Object (readonly)
Returns the value of attribute data.
3 4 5 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 3 def data @data end |
#date ⇒ Object (readonly)
Returns the value of attribute date.
3 4 5 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 3 def date @date end |
#environment ⇒ Object (readonly)
Returns the value of attribute environment.
3 4 5 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 3 def environment @environment end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
3 4 5 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 3 def path @path end |
Instance Method Details
#parse ⇒ Object
22 23 24 25 26 27 28 29 |
# File 'lib/global_collect/log_parsing/payment_report/report_file.rb', line 22 def parse begin file = File.open(@path, "r") @data = GlobalCollect::LogParsing::PaymentReport::Parser.parse(file) ensure file.close end end |