Class: Teodoro::ArquivoXML

Inherits:
Object
  • Object
show all
Defined in:
lib/teodoro/arquivo_xml.rb

Overview

rubocop:disable Metrics/ClassLength

Constant Summary collapse

TIPOS_DE_EVENTO_PROCESSAVEIS =
%w[
  S1000
  S1005
  S1010
  S1020
  S1030
  S1040
  S1050
  S1070
  S1298
  S1299
  S2190
  S2200
  S2205
  S2206
  S2210
  S2220
  S2230
  S2240
  S2250
  S2299
  S2300
  S2306
  S2399
  S2500
  S2501
  S3000
  S3500
].freeze
TIPOS_DE_EVENTO_RETIFICAVEIS =
%w[
  S2190
  S2200
  S2205
  S2206
  S2210
  S2220
  S2230
  S2240
  S2250
  S2299
  S2300
  S2306
  S2399
  S2500
  S2501
].freeze
VERSOES_DE_LEIAUTE_2 =
%w[
  02_04_01
  02_04_02
  02_05_00
].freeze
VERSOES_DE_LEIAUTE_SIMPLIFICADO =
%w[
  _S_01_00_00
  _S_01_01_00
].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#momento_de_processamento_pelo_e_socialObject (readonly)

Returns the value of attribute momento_de_processamento_pelo_e_social.



108
109
110
# File 'lib/teodoro/arquivo_xml.rb', line 108

def momento_de_processamento_pelo_e_social
  @momento_de_processamento_pelo_e_social
end

#recibo_do_evento_a_excluirObject (readonly)

Returns the value of attribute recibo_do_evento_a_excluir.



108
109
110
# File 'lib/teodoro/arquivo_xml.rb', line 108

def recibo_do_evento_a_excluir
  @recibo_do_evento_a_excluir
end

#recibo_do_evento_a_retificarObject (readonly)

Returns the value of attribute recibo_do_evento_a_retificar.



108
109
110
# File 'lib/teodoro/arquivo_xml.rb', line 108

def recibo_do_evento_a_retificar
  @recibo_do_evento_a_retificar
end

Instance Method Details

#carregarObject

otimizacao do gerenciamento de memoria



111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/teodoro/arquivo_xml.rb', line 111

def carregar
  Console.print "carregando #{nome}.xml..." do
    evento, recibo = carregar_evento_e_recibo

    @recibo_do_evento_a_excluir = evento['infoExclusao/nrRecEvt'] if exclusao_por_recibo?
    @retificacao = evento_retificavel? && evento['ideEvento/indRetif'] == '2'
    @recibo_do_evento_a_retificar = evento['ideEvento/nrRecibo'] if retificacao?
    @momento_de_processamento_pelo_e_social = recibo['processamento/dhProcessamento']

    validar_carregamento
  end
rescue StandardError => e
  tratar_excecao(e)
end

#exclusao_por_recibo?Boolean

Returns:

  • (Boolean)


126
127
128
# File 'lib/teodoro/arquivo_xml.rb', line 126

def exclusao_por_recibo?
  tipo_de_evento == 'S3000'
end

#nomeObject



138
139
140
# File 'lib/teodoro/arquivo_xml.rb', line 138

def nome
  @nome ||= File.basename(caminho, '.xml')
end

#processarObject



146
147
148
149
150
151
152
153
# File 'lib/teodoro/arquivo_xml.rb', line 146

def processar
  Console.print "processando #{nome}.xml..." do
    validar_versao_do_leiaute
    processar_arquivo
  end
rescue StandardError => e
  tratar_excecao(e)
end

#processavel?Boolean

Returns:

  • (Boolean)


134
135
136
# File 'lib/teodoro/arquivo_xml.rb', line 134

def processavel?
  TIPOS_DE_EVENTO_PROCESSAVEIS.include?(tipo_de_evento)
end

#retificacao?Boolean

Returns:

  • (Boolean)


130
131
132
# File 'lib/teodoro/arquivo_xml.rb', line 130

def retificacao?
  @retificacao
end

#s1000?Boolean

Returns:

  • (Boolean)


142
143
144
# File 'lib/teodoro/arquivo_xml.rb', line 142

def s1000?
  tipo_de_evento == 'S1000'
end