blob: 40603ce3b228b45806610038385ccd427e3798ae [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/version.h>
#include <arrow-glib/basic-array.h>
#include <arrow-glib/data-type.h>
G_BEGIN_DECLS
#define GARROW_TYPE_LIST_ARRAY (garrow_list_array_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowListArray,
garrow_list_array,
GARROW,
LIST_ARRAY,
GArrowArray)
struct _GArrowListArrayClass
{
GArrowArrayClass parent_class;
};
GArrowListArray *garrow_list_array_new(GArrowDataType *data_type,
gint64 length,
GArrowBuffer *value_offsets,
GArrowArray *values,
GArrowBuffer *null_bitmap,
gint64 n_nulls);
GArrowDataType *garrow_list_array_get_value_type(GArrowListArray *array);
GArrowArray *garrow_list_array_get_value(GArrowListArray *array,
gint64 i);
#define GARROW_TYPE_STRUCT_ARRAY (garrow_struct_array_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowStructArray,
garrow_struct_array,
GARROW,
STRUCT_ARRAY,
GArrowArray)
struct _GArrowStructArrayClass
{
GArrowArrayClass parent_class;
};
GArrowStructArray *garrow_struct_array_new(GArrowDataType *data_type,
gint64 length,
GList *fields,
GArrowBuffer *null_bitmap,
gint64 n_nulls);
GArrowArray *garrow_struct_array_get_field(GArrowStructArray *array,
gint i);
#ifndef GARROW_DISABLE_DEPRECATED
GARROW_DEPRECATED_IN_0_10_FOR(garrow_struct_array_flatten)
GList *garrow_struct_array_get_fields(GArrowStructArray *array);
#endif
GARROW_AVAILABLE_IN_0_10
GList *garrow_struct_array_flatten(GArrowStructArray *array, GError **error);
#define GARROW_TYPE_UNION_ARRAY (garrow_union_array_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowUnionArray,
garrow_union_array,
GARROW,
UNION_ARRAY,
GArrowArray)
struct _GArrowUnionArrayClass
{
GArrowArrayClass parent_class;
};
GArrowArray *
garrow_union_array_get_field(GArrowUnionArray *array,
gint i);
#define GARROW_TYPE_SPARSE_UNION_ARRAY (garrow_sparse_union_array_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowSparseUnionArray,
garrow_sparse_union_array,
GARROW,
SPARSE_UNION_ARRAY,
GArrowUnionArray)
struct _GArrowSparseUnionArrayClass
{
GArrowUnionArrayClass parent_class;
};
GArrowSparseUnionArray *
garrow_sparse_union_array_new(GArrowInt8Array *type_ids,
GList *fields,
GError **error);
GArrowSparseUnionArray *
garrow_sparse_union_array_new_data_type(GArrowSparseUnionDataType *data_type,
GArrowInt8Array *type_ids,
GList *fields,
GError **error);
#define GARROW_TYPE_DENSE_UNION_ARRAY (garrow_dense_union_array_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowDenseUnionArray,
garrow_dense_union_array,
GARROW,
DENSE_UNION_ARRAY,
GArrowUnionArray)
struct _GArrowDenseUnionArrayClass
{
GArrowUnionArrayClass parent_class;
};
GArrowDenseUnionArray *
garrow_dense_union_array_new(GArrowInt8Array *type_ids,
GArrowInt32Array *value_offsets,
GList *fields,
GError **error);
GArrowDenseUnionArray *
garrow_dense_union_array_new_data_type(GArrowDenseUnionDataType *data_type,
GArrowInt8Array *type_ids,
GArrowInt32Array *value_offsets,
GList *fields,
GError **error);
#define GARROW_TYPE_DICTIONARY_ARRAY (garrow_dictionary_array_get_type())
G_DECLARE_DERIVABLE_TYPE(GArrowDictionaryArray,
garrow_dictionary_array,
GARROW,
DICTIONARY_ARRAY,
GArrowArray)
struct _GArrowDictionaryArrayClass
{
GArrowArrayClass parent_class;
};
GArrowDictionaryArray *
garrow_dictionary_array_new(GArrowDataType *data_type,
GArrowArray *indices,
GArrowArray *dictionary,
GError **error);
GArrowArray *
garrow_dictionary_array_get_indices(GArrowDictionaryArray *array);
GArrowArray *
garrow_dictionary_array_get_dictionary(GArrowDictionaryArray *array);
GArrowDictionaryDataType *
garrow_dictionary_array_get_dictionary_data_type(GArrowDictionaryArray *array);
G_END_DECLS