Class: FlatKit::Command::Sort

Inherits:
FlatKit::Command show all
Defined in:
lib/flat_kit/command/sort.rb

Instance Attribute Summary collapse

Attributes inherited from FlatKit::Command

#argv, #env, #logger, #opts, #readers, #writer

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from FlatKit::Command

for, #initialize, names

Methods included from DescendantTracker

#children, #find_child, #inherited

Constructor Details

This class inherits a constructor from FlatKit::Command

Instance Attribute Details

#compare_keysObject (readonly)

Returns the value of attribute compare_keys.



61
62
63
# File 'lib/flat_kit/command/sort.rb', line 61

def compare_keys
  @compare_keys
end

#readerObject (readonly)

Returns the value of attribute reader.



62
63
64
# File 'lib/flat_kit/command/sort.rb', line 62

def reader
  @reader
end

#sortObject (readonly)

Returns the value of attribute sort.



63
64
65
# File 'lib/flat_kit/command/sort.rb', line 63

def sort
  @sort
end

Class Method Details

.descriptionObject



10
11
12
# File 'lib/flat_kit/command/sort.rb', line 10

def self.description
  "Sort a given file by a set of fields."
end

.nameObject



6
7
8
# File 'lib/flat_kit/command/sort.rb', line 6

def self.name
  "sort"
end

.parserObject



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/flat_kit/command/sort.rb', line 14

def self.parser
  ::Optimist::Parser.new do
    banner "#{Sort.description}"
    banner ""

    banner <<~BANNER
    Given an input file and a sort key, order the records in that file by that
    key. If no input file is given the stdin is assumed. If no output file
    is given then stdout is assumed.

    The --key parameter is required, and it must be a comma separated list
    of field nams on the input on which to use as the sort key for the merge
    process.

    There must also be only 1 input files.

    The flatfile type(s) will be automatically determined by the file name.
    If the output is not a file, but to stdout then the output type will
    be the same as the first input file, or it can be specified as a commandline
    switch.

    BANNER

    banner <<~USAGE

    Usage:
      fk sort --key surname,given_name file.csv > sorted.csv
      fk sort --key surname,given_name --output-format json file.csv > sorted.json
      fk sort --key field1,field2 --output-format json input.csv | gzip -c > sorted.json.gz
      fk sort --key field1 file.json.gz -o sorted.json.gz
      gunzip -c file.json.gz | fk sort --key field1 --input-format json --output-format json > gzip -c sorted.json.gz

    USAGE

    banner <<~OPTIONS

    Options:

    OPTIONS

    opt :output, "Send the output to the given path instead of standard out.", default: "<stdout>"
    opt :input_format, "Input format, csv or json", default: "auto", short: :none
    opt :output_format, "Output format, csv or json", default: "auto", short: :none
    opt :key, "The comma separted list of field(s) to use for sorting the input", required: true, type: :string
  end
end

Instance Method Details

#callObject



83
84
85
# File 'lib/flat_kit/command/sort.rb', line 83

def call
  sort.call
end

#parseObject



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/flat_kit/command/sort.rb', line 65

def parse
  parser = self.class.parser
  ::Optimist::with_standard_exception_handling(parser) do
    begin
      @opts = parser.parse(argv)
      @compare_keys = CSV.parse_line(opts[:key])
      paths = parser.leftovers
      raise ::Optimist::CommandlineError, "1 and only 1 input file is allowed" if paths.size > 1
      path = paths.first || "-" # default to stdin
      @sort = ::FlatKit::Sort.new(input: path, input_fallback: opts[:input_format],
                                  output: opts[:output], output_fallback: opts[:output_format],
                                  compare_fields: @compare_keys)
    rescue ::FlatKit::Error => e
      raise ::Optimist::CommandlineError, e.message
    end
  end
end