blob: 11b83014ff8308a8b5e79615091b4e0c28e17175 [file] [log] [blame]
/*
* 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.
*/
#pragma once
#include <arrow-glib/basic-array.h>
#include <arrow-glib/basic-data-type.h>
#include <arrow-glib/field.h>
G_BEGIN_DECLS
#define GARROW_TYPE_LIST_DATA_TYPE \
(garrow_list_data_type_get_type())
#define GARROW_LIST_DATA_TYPE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
GARROW_TYPE_LIST_DATA_TYPE, \
GArrowListDataType))
#define GARROW_LIST_DATA_TYPE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), \
GARROW_TYPE_LIST_DATA_TYPE, \
GArrowListDataTypeClass))
#define GARROW_IS_LIST_DATA_TYPE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), \
GARROW_TYPE_LIST_DATA_TYPE))
#define GARROW_IS_LIST_DATA_TYPE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), \
GARROW_TYPE_LIST_DATA_TYPE))
#define GARROW_LIST_DATA_TYPE_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS((obj), \
GARROW_TYPE_LIST_DATA_TYPE, \
GArrowListDataTypeClass))
typedef struct _GArrowListDataType GArrowListDataType;
typedef struct _GArrowListDataTypeClass GArrowListDataTypeClass;
/**
* GArrowListDataType:
*
* It wraps `arrow::ListType`.
*/
struct _GArrowListDataType
{
/*< private >*/
GArrowDataType parent_instance;
};
struct _GArrowListDataTypeClass
{
GArrowDataTypeClass parent_class;
};
GType garrow_list_data_type_get_type (void) G_GNUC_CONST;
GArrowListDataType *garrow_list_data_type_new (GArrowField *field);
GArrowField *garrow_list_data_type_get_value_field (GArrowListDataType *list_data_type);
#define GARROW_TYPE_STRUCT_DATA_TYPE \
(garrow_struct_data_type_get_type())
#define GARROW_STRUCT_DATA_TYPE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
GARROW_TYPE_STRUCT_DATA_TYPE, \
GArrowStructDataType))
#define GARROW_STRUCT_DATA_TYPE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), \
GARROW_TYPE_STRUCT_DATA_TYPE, \
GArrowStructDataTypeClass))
#define GARROW_IS_STRUCT_DATA_TYPE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), \
GARROW_TYPE_STRUCT_DATA_TYPE))
#define GARROW_IS_STRUCT_DATA_TYPE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), \
GARROW_TYPE_STRUCT_DATA_TYPE))
#define GARROW_STRUCT_DATA_TYPE_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS((obj), \
GARROW_TYPE_STRUCT_DATA_TYPE, \
GArrowStructDataTypeClass))
typedef struct _GArrowStructDataType GArrowStructDataType;
typedef struct _GArrowStructDataTypeClass GArrowStructDataTypeClass;
/**
* GArrowStructDataType:
*
* It wraps `arrow::StructType`.
*/
struct _GArrowStructDataType
{
/*< private >*/
GArrowDataType parent_instance;
};
struct _GArrowStructDataTypeClass
{
GArrowDataTypeClass parent_class;
};
GType garrow_struct_data_type_get_type (void) G_GNUC_CONST;
GArrowStructDataType *garrow_struct_data_type_new (GList *fields);
#define GARROW_TYPE_DICTIONARY_DATA_TYPE (garrow_dictionary_data_type_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowDictionaryDataType,
garrow_dictionary_data_type,
GARROW,
DICTIONARY_DATA_TYPE,
GArrowFixedWidthDataType)
struct _GArrowDictionaryDataTypeClass
{
GArrowFixedWidthDataTypeClass parent_class;
};
GArrowDictionaryDataType *
garrow_dictionary_data_type_new(GArrowDataType *index_data_type,
GArrowArray *dictionary,
gboolean ordered);
GArrowDataType *
garrow_dictionary_data_type_get_index_data_type(GArrowDictionaryDataType *data_type);
GArrowArray *
garrow_dictionary_data_type_get_dictionary(GArrowDictionaryDataType *data_type);
gboolean
garrow_dictionary_data_type_is_ordered(GArrowDictionaryDataType *data_type);
G_END_DECLS