Class: GlobalCollect::LogParsing::PaymentReport::ReportFile

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_idObject (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
end

#dataObject (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

#dateObject (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

#environmentObject (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

#pathObject (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

#parseObject



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