Sha256: 836316eabef6ca8de4cb72187faf9b3a3fece37fe1f4eb7217201c6000209b13

Contents?: true

Size: 1.74 KB

Versions: 7

Compression:

Stored size: 1.74 KB

Contents

begin
  RUBY_VERSION =~ /(\d+\.\d+)/
  require_relative "#{$1}/express_parser"
rescue LoadError
  require_relative "express_parser"
end
require 'expressir/express_exp/visitor'
require 'pathname'

=begin
char_stream = Antlr4::Runtime::CharStreams.from_string(input, 'String')
lexer = ::ExpressParser::Lexer.new(char_stream)
token_stream = Antlr4::Runtime::CommonTokenStream.new(lexer)
parser = ::ExpressParser::Parser.new(token_stream)

# don't attempt to recover from any parsing error
parser.instance_variable_set(:@_err_handler, Antlr4::Runtime::BailErrorStrategy.new)

parse_tree = parser.syntax()

visitor = Visitor.new(token_stream)
repo = visitor.visit(parse_tree)
=end

module Expressir
  module ExpressExp
    class Parser
      def self.from_file(file, options = {})
        root_path = options[:root_path]

        input = File.read(file)

        parser = ::ExpressParser::Parser.parse(input)

        parse_tree = parser.syntax()

        visitor = Visitor.new(parser.tokens, options)
        repository = visitor.visit(parse_tree)

        repository.schemas.each do |schema|
          schema.file = root_path ? Pathname.new(file).relative_path_from(root_path).to_s : File.basename(file)
        end

        repository
      end

      def self.from_files(files, options = {})
        schemas = files.each_with_index.map do |file, i|
          # start = Time.now
          repository = self.from_file(file, options)
          # STDERR.puts "#{i+1}/#{files.length} #{file} #{Time.now - start}"
          repository.schemas
        end.flatten

        repository = Model::Repository.new({
          schemas: schemas
        })

        repository.schemas.each do |schema|
          schema.parent = repository
        end

        repository
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
expressir-0.2.18 lib/expressir/express_exp/parser.rb
expressir-0.2.18-x86_64-linux lib/expressir/express_exp/parser.rb
expressir-0.2.18-x86_64-darwin lib/expressir/express_exp/parser.rb
expressir-0.2.18-x86-mingw32 lib/expressir/express_exp/parser.rb
expressir-0.2.18-x86-linux lib/expressir/express_exp/parser.rb
expressir-0.2.18-x64-mingw32 lib/expressir/express_exp/parser.rb
expressir-0.2.18-arm64-darwin lib/expressir/express_exp/parser.rb