Class: Eco::API::UseCases::DefaultCases::CsvToTree

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/default_cases/csv_to_tree_case.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/node.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/helper.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/treeify.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/nodes_cleaner.rb

Defined Under Namespace

Modules: Helper, NodesCleaner, Treeify Classes: Node

Constant Summary collapse

TIME_FORMAT =
'%Y%m%dT%H%M%S'

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, #name, set_created_at!

Methods included from Common::ClassHelpers

#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/eco/api/usecases/default_cases/csv_to_tree_case.rb', line 7

def options
  @options
end

#sessionObject (readonly)

Returns the value of attribute session.



7
8
9
# File 'lib/eco/api/usecases/default_cases/csv_to_tree_case.rb', line 7

def session
  @session
end

Instance Method Details

#main(session, options, usecase) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/eco/api/usecases/default_cases/csv_to_tree_case.rb', line 9

def main(session, options, usecase)
  options[:end_get] = false
  @session = session; @options = options

  tree_struct = Helper.treeify(Helper.csv_nodes(input_file))

  File.open(output_file, "w") do |fd|
    json = tree_struct.to_json
    fd <<  json
  end
  logger.info("Saved structure in '#{output_file}'")
end