Sha256: 09e2fc78da89bfd8179746d31e45b8aa9e3d78ee5d94c7e639542505d689b877

Contents?: true

Size: 1.17 KB

Versions: 8

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

require_relative 'shared_string_table/string_index'
module OoxmlParser
  # Class for parsing shared string table
  class SharedStringTable < OOXMLDocumentObject
    # @return [Integer] count of shared strings
    attr_reader :count
    # @return [Integer] unique count of shared strings
    attr_reader :unique_count
    # @return [Array<StringIndex>] String Index
    attr_reader :string_indexes

    def initialize(parent: nil)
      @string_indexes = []
      @parent = parent
    end

    # Parse Shared string table file
    # @param file [String] path to file
    # @return [SharedStringTable]
    def parse(file)
      return nil unless File.exist?(file)

      document = parse_xml(file)
      node = document.xpath('*').first

      node.attributes.each do |key, value|
        case key
        when 'count'
          @count = value.value.to_i
        when 'uniqueCount'
          @unique_count = value.value.to_i
        end
      end

      node.xpath('*').each do |node_child|
        case node_child.name
        when 'si'
          @string_indexes << StringIndex.new(parent: self).parse(node_child)
        end
      end
      self
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ooxml_parser-0.8.1 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.8.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.7.2 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.7.1 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.7.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.6.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.5.1 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb
ooxml_parser-0.5.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table.rb