1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements.  See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership.  The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License.  You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
20 #pragma once
21 
22 #include <arrow/api.h>
23 
24 #include <arrow-glib/datum.h>
25 
26 arrow::Datum
27 garrow_datum_get_raw(GArrowDatum *datum);
28 GArrowDatum *
29 garrow_datum_new_raw(arrow::Datum *arrow_datum);
30 
31 GArrowScalarDatum *
32 garrow_scalar_datum_new_raw(arrow::Datum *arrow_datum,
33                             GArrowScalar *value);
34 GArrowArrayDatum *
35 garrow_array_datum_new_raw(arrow::Datum *arrow_datum,
36                            GArrowArray *value);
37 GArrowChunkedArrayDatum *
38 garrow_chunked_array_datum_new_raw(arrow::Datum *arrow_datum,
39                                    GArrowChunkedArray *value);
40 GArrowRecordBatchDatum *
41 garrow_record_batch_datum_new_raw(arrow::Datum *arrow_datum,
42                                   GArrowRecordBatch *value);
43 GArrowTableDatum *
44 garrow_table_datum_new_raw(arrow::Datum *arrow_datum,
45                            GArrowTable *value);
46