Sha256: 38a0e343f4e40e65477b91dab4df464fc2bb73bb41e35fb07ec9c4a97133abd7

Contents?: true

Size: 1.33 KB

Versions: 9

Compression:

Stored size: 1.33 KB

Contents

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

module Parquet
  class Loader < GObjectIntrospection::Loader
    class << self
      def load
        super("Parquet", Parquet)
      end
    end

    private
    def post_load(repository, namespace)
      require_libraries
    end

    def require_libraries
      require "parquet/arrow-table-loadable"
      require "parquet/arrow-table-savable"
    end

    def load_object_info(info)
      super

      klass = @base_module.const_get(rubyish_class_name(info))
      if klass.method_defined?(:close)
        klass.extend(Arrow::BlockClosable)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
red-parquet-0.17.1 lib/parquet/loader.rb
red-parquet-0.17.0 lib/parquet/loader.rb
red-parquet-0.16.0 lib/parquet/loader.rb
red-parquet-0.15.1 lib/parquet/loader.rb
red-parquet-0.15.0 lib/parquet/loader.rb
red-parquet-0.14.1 lib/parquet/loader.rb
red-parquet-0.14.0 lib/parquet/loader.rb
red-parquet-0.13.0 lib/parquet/loader.rb
red-parquet-0.12.0 lib/parquet/loader.rb