summaryrefslogtreecommitdiffstats
path: root/src/arrow/c_glib/arrow-glib/decimal.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
commite6918187568dbd01842d8d1d2c808ce16a894239 (patch)
tree64f88b554b444a49f656b6c656111a145cbbaa28 /src/arrow/c_glib/arrow-glib/decimal.h
parentInitial commit. (diff)
downloadceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz
ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/arrow/c_glib/arrow-glib/decimal.h')
-rw-r--r--src/arrow/c_glib/arrow-glib/decimal.h154
1 files changed, 154 insertions, 0 deletions
diff --git a/src/arrow/c_glib/arrow-glib/decimal.h b/src/arrow/c_glib/arrow-glib/decimal.h
new file mode 100644
index 000000000..61f849234
--- /dev/null
+++ b/src/arrow/c_glib/arrow-glib/decimal.h
@@ -0,0 +1,154 @@
+/*
+ * 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/gobject-type.h>
+#include <arrow-glib/version.h>
+
+G_BEGIN_DECLS
+
+/* Disabled because it conflicts with GARROW_TYPE_DECIMAL128 in GArrowType. */
+/* #define GARROW_TYPE_DECIMAL128 (garrow_decimal128_get_type()) */
+G_DECLARE_DERIVABLE_TYPE(GArrowDecimal128,
+ garrow_decimal128,
+ GARROW,
+ DECIMAL128,
+ GObject)
+
+struct _GArrowDecimal128Class
+{
+ GObjectClass parent_class;
+};
+
+GArrowDecimal128 *garrow_decimal128_new_string(const gchar *data);
+GArrowDecimal128 *garrow_decimal128_new_integer(const gint64 data);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal128 *garrow_decimal128_copy(GArrowDecimal128 *decimal);
+GARROW_AVAILABLE_IN_0_12
+gboolean garrow_decimal128_equal(GArrowDecimal128 *decimal,
+ GArrowDecimal128 *other_decimal);
+GARROW_AVAILABLE_IN_0_12
+gboolean garrow_decimal128_not_equal(GArrowDecimal128 *decimal,
+ GArrowDecimal128 *other_decimal);
+GARROW_AVAILABLE_IN_0_12
+gboolean garrow_decimal128_less_than(GArrowDecimal128 *decimal,
+ GArrowDecimal128 *other_decimal);
+GARROW_AVAILABLE_IN_0_12
+gboolean garrow_decimal128_less_than_or_equal(GArrowDecimal128 *decimal,
+ GArrowDecimal128 *other_decimal);
+GARROW_AVAILABLE_IN_0_12
+gboolean garrow_decimal128_greater_than(GArrowDecimal128 *decimal,
+ GArrowDecimal128 *other_decimal);
+GARROW_AVAILABLE_IN_0_12
+gboolean garrow_decimal128_greater_than_or_equal(GArrowDecimal128 *decimal,
+ GArrowDecimal128 *other_decimal);
+gchar *garrow_decimal128_to_string_scale(GArrowDecimal128 *decimal,
+ gint32 scale);
+gchar *garrow_decimal128_to_string(GArrowDecimal128 *decimal);
+GARROW_AVAILABLE_IN_3_0
+GBytes *garrow_decimal128_to_bytes(GArrowDecimal128 *decimal);
+void garrow_decimal128_abs(GArrowDecimal128 *decimal);
+void garrow_decimal128_negate(GArrowDecimal128 *decimal);
+gint64 garrow_decimal128_to_integer(GArrowDecimal128 *decimal);
+GArrowDecimal128 *garrow_decimal128_plus(GArrowDecimal128 *left,
+ GArrowDecimal128 *right);
+GArrowDecimal128 *garrow_decimal128_minus(GArrowDecimal128 *left,
+ GArrowDecimal128 *right);
+GArrowDecimal128 *garrow_decimal128_multiply(GArrowDecimal128 *left,
+ GArrowDecimal128 *right);
+GArrowDecimal128 *garrow_decimal128_divide(GArrowDecimal128 *left,
+ GArrowDecimal128 *right,
+ GArrowDecimal128 **remainder,
+ GError **error);
+GARROW_AVAILABLE_IN_0_15
+GArrowDecimal128 *
+garrow_decimal128_rescale(GArrowDecimal128 *decimal,
+ gint32 original_scale,
+ gint32 new_scale,
+ GError **error);
+
+
+/* Disabled because it conflicts with GARROW_TYPE_DECIMAL256 in GArrowType. */
+/* #define GARROW_TYPE_DECIMAL256 (garrow_decimal256_get_type()) */
+G_DECLARE_DERIVABLE_TYPE(GArrowDecimal256,
+ garrow_decimal256,
+ GARROW,
+ DECIMAL256,
+ GObject)
+
+struct _GArrowDecimal256Class
+{
+ GObjectClass parent_class;
+};
+
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *garrow_decimal256_new_string(const gchar *data);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *garrow_decimal256_new_integer(const gint64 data);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *garrow_decimal256_copy(GArrowDecimal256 *decimal);
+GARROW_AVAILABLE_IN_3_0
+gboolean garrow_decimal256_equal(GArrowDecimal256 *decimal,
+ GArrowDecimal256 *other_decimal);
+GARROW_AVAILABLE_IN_3_0
+gboolean garrow_decimal256_not_equal(GArrowDecimal256 *decimal,
+ GArrowDecimal256 *other_decimal);
+GARROW_AVAILABLE_IN_3_0
+gboolean garrow_decimal256_less_than(GArrowDecimal256 *decimal,
+ GArrowDecimal256 *other_decimal);
+GARROW_AVAILABLE_IN_3_0
+gboolean garrow_decimal256_less_than_or_equal(GArrowDecimal256 *decimal,
+ GArrowDecimal256 *other_decimal);
+GARROW_AVAILABLE_IN_3_0
+gboolean garrow_decimal256_greater_than(GArrowDecimal256 *decimal,
+ GArrowDecimal256 *other_decimal);
+GARROW_AVAILABLE_IN_3_0
+gboolean garrow_decimal256_greater_than_or_equal(GArrowDecimal256 *decimal,
+ GArrowDecimal256 *other_decimal);
+GARROW_AVAILABLE_IN_3_0
+gchar *garrow_decimal256_to_string_scale(GArrowDecimal256 *decimal,
+ gint32 scale);
+GARROW_AVAILABLE_IN_3_0
+gchar *garrow_decimal256_to_string(GArrowDecimal256 *decimal);
+GARROW_AVAILABLE_IN_3_0
+GBytes *garrow_decimal256_to_bytes(GArrowDecimal256 *decimal);
+GARROW_AVAILABLE_IN_3_0
+void garrow_decimal256_abs(GArrowDecimal256 *decimal);
+GARROW_AVAILABLE_IN_3_0
+void garrow_decimal256_negate(GArrowDecimal256 *decimal);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *garrow_decimal256_plus(GArrowDecimal256 *left,
+ GArrowDecimal256 *right);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *garrow_decimal256_multiply(GArrowDecimal256 *left,
+ GArrowDecimal256 *right);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *garrow_decimal256_divide(GArrowDecimal256 *left,
+ GArrowDecimal256 *right,
+ GArrowDecimal256 **remainder,
+ GError **error);
+GARROW_AVAILABLE_IN_3_0
+GArrowDecimal256 *
+garrow_decimal256_rescale(GArrowDecimal256 *decimal,
+ gint32 original_scale,
+ gint32 new_scale,
+ GError **error);
+
+G_END_DECLS