2012-02-03 19:42:56 +01:00
|
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
|
|
|
* GObject introspection: Constant implementation
|
2010-06-07 00:52:12 +02:00
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2005 Matthias Clasen
|
|
|
|
|
* Copyright (C) 2008,2009 Red Hat, Inc.
|
|
|
|
|
*
|
2023-10-25 18:10:10 +02:00
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
*
|
2010-06-07 00:52:12 +02:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-07-04 12:27:41 +02:00
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2010-06-07 00:52:12 +02:00
|
|
|
|
#include <glib.h>
|
2010-09-07 19:56:57 +02:00
|
|
|
|
#include <string.h> // memcpy
|
2010-06-07 00:52:12 +02:00
|
|
|
|
|
2023-10-25 18:45:42 +02:00
|
|
|
|
#include <girepository/girepository.h>
|
2023-11-28 18:24:20 +01:00
|
|
|
|
#include "gibaseinfo-private.h"
|
2010-06-07 00:52:12 +02:00
|
|
|
|
#include "girepository-private.h"
|
|
|
|
|
#include "gitypelib-internal.h"
|
2023-10-25 19:11:38 +02:00
|
|
|
|
#include "giconstantinfo.h"
|
2010-06-07 00:52:12 +02:00
|
|
|
|
|
2010-06-07 03:48:08 +02:00
|
|
|
|
/**
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* GIConstantInfo:
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* `GIConstantInfo` represents a constant.
|
2010-06-12 01:16:00 +02:00
|
|
|
|
*
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* A constant has a type associated – which can be obtained by calling
|
|
|
|
|
* [method@GIRepository.ConstantInfo.get_type_info] – and a value – which can be
|
|
|
|
|
* obtained by calling [method@GIRepository.ConstantInfo.get_value].
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.80
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-28 18:09:26 +01:00
|
|
|
|
* gi_constant_info_get_type_info:
|
2010-06-07 03:48:08 +02:00
|
|
|
|
* @info: a #GIConstantInfo
|
|
|
|
|
*
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* Obtain the type of the constant as a [class@GIRepository.TypeInfo].
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* Returns: (transfer full): The [class@GIRepository.TypeInfo]. Free the struct
|
|
|
|
|
* by calling [method@GIRepository.BaseInfo.unref] when done.
|
|
|
|
|
* Since: 2.80
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*/
|
2010-06-07 00:52:12 +02:00
|
|
|
|
GITypeInfo *
|
2023-11-28 18:09:26 +01:00
|
|
|
|
gi_constant_info_get_type_info (GIConstantInfo *info)
|
2010-06-07 00:52:12 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
|
2010-06-07 03:48:08 +02:00
|
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
|
|
|
|
g_return_val_if_fail (GI_IS_CONSTANT_INFO (info), NULL);
|
|
|
|
|
|
2023-11-08 16:23:31 +01:00
|
|
|
|
return gi_type_info_new ((GIBaseInfo*)info, rinfo->typelib, rinfo->offset + 8);
|
2010-06-07 00:52:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-07 16:42:49 +02:00
|
|
|
|
#define DO_ALIGNED_COPY(dest_addr, src_addr, type) \
|
|
|
|
|
memcpy((dest_addr), (src_addr), sizeof(type))
|
|
|
|
|
|
2011-10-05 22:31:43 +02:00
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_constant_info_free_value: (skip)
|
2011-10-05 22:31:43 +02:00
|
|
|
|
* @info: a #GIConstantInfo
|
|
|
|
|
* @value: the argument
|
|
|
|
|
*
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* Free the value returned from [method@GIRepository.ConstantInfo.get_value].
|
2011-10-05 22:31:43 +02:00
|
|
|
|
*
|
2023-11-09 00:24:11 +01:00
|
|
|
|
* Since: 2.80
|
2011-10-05 22:31:43 +02:00
|
|
|
|
*/
|
|
|
|
|
void
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_constant_info_free_value (GIConstantInfo *info,
|
|
|
|
|
GIArgument *value)
|
2011-10-05 22:31:43 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ConstantBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (info != NULL);
|
|
|
|
|
g_return_if_fail (GI_IS_CONSTANT_INFO (info));
|
|
|
|
|
|
|
|
|
|
blob = (ConstantBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
/* FIXME non-basic types ? */
|
|
|
|
|
if (blob->type.flags.reserved == 0 && blob->type.flags.reserved2 == 0)
|
|
|
|
|
{
|
|
|
|
|
if (blob->type.flags.pointer)
|
|
|
|
|
g_free (value->v_pointer);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-07 03:48:08 +02:00
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_constant_info_get_value: (skip)
|
2010-06-07 03:48:08 +02:00
|
|
|
|
* @info: a #GIConstantInfo
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* @value: (out caller-allocates): an argument
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* Obtain the value associated with the `GIConstantInfo` and store it in the
|
|
|
|
|
* @value parameter.
|
|
|
|
|
*
|
|
|
|
|
* @argument needs to be allocated before passing it in.
|
|
|
|
|
*
|
|
|
|
|
* The size of the constant value (in bytes) stored in @argument will be
|
|
|
|
|
* returned.
|
|
|
|
|
*
|
|
|
|
|
* Free the value with [method@GIRepository.ConstantInfo.free_value].
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*
|
2023-12-12 18:42:32 +01:00
|
|
|
|
* Returns: size of the constant, in bytes
|
2023-12-13 01:26:56 +01:00
|
|
|
|
* Since: 2.80
|
2010-06-07 03:48:08 +02:00
|
|
|
|
*/
|
2024-01-16 00:35:23 +01:00
|
|
|
|
size_t
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_constant_info_get_value (GIConstantInfo *info,
|
|
|
|
|
GIArgument *value)
|
2010-06-07 00:52:12 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
2010-06-07 03:48:08 +02:00
|
|
|
|
ConstantBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, 0);
|
|
|
|
|
g_return_val_if_fail (GI_IS_CONSTANT_INFO (info), 0);
|
|
|
|
|
|
|
|
|
|
blob = (ConstantBlob *)&rinfo->typelib->data[rinfo->offset];
|
2010-06-07 00:52:12 +02:00
|
|
|
|
|
|
|
|
|
/* FIXME non-basic types ? */
|
|
|
|
|
if (blob->type.flags.reserved == 0 && blob->type.flags.reserved2 == 0)
|
|
|
|
|
{
|
|
|
|
|
if (blob->type.flags.pointer)
|
2021-03-12 19:54:47 +01:00
|
|
|
|
{
|
2024-01-16 00:35:23 +01:00
|
|
|
|
size_t blob_size = blob->size;
|
2021-03-12 19:54:47 +01:00
|
|
|
|
|
2024-01-16 17:30:37 +01:00
|
|
|
|
value->v_pointer = g_memdup2 (&rinfo->typelib->data[blob->offset], blob_size);
|
2021-03-12 19:54:47 +01:00
|
|
|
|
}
|
2010-06-07 00:52:12 +02:00
|
|
|
|
else
|
2024-01-16 17:30:37 +01:00
|
|
|
|
{
|
|
|
|
|
switch (blob->type.flags.tag)
|
|
|
|
|
{
|
|
|
|
|
case GI_TYPE_TAG_BOOLEAN:
|
|
|
|
|
value->v_boolean = *(gboolean*)&rinfo->typelib->data[blob->offset];
|
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_INT8:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
value->v_int8 = *(int8_t*)&rinfo->typelib->data[blob->offset];
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_UINT8:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
value->v_uint8 = *(uint8_t*)&rinfo->typelib->data[blob->offset];
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_INT16:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
value->v_int16 = *(int16_t*)&rinfo->typelib->data[blob->offset];
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_UINT16:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
value->v_uint16 = *(uint16_t*)&rinfo->typelib->data[blob->offset];
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_INT32:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
value->v_int32 = *(int32_t*)&rinfo->typelib->data[blob->offset];
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_UINT32:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
value->v_uint32 = *(uint32_t*)&rinfo->typelib->data[blob->offset];
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_INT64:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
DO_ALIGNED_COPY (&value->v_int64, &rinfo->typelib->data[blob->offset], int64_t);
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_UINT64:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
DO_ALIGNED_COPY (&value->v_uint64, &rinfo->typelib->data[blob->offset], uint64_t);
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_FLOAT:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
DO_ALIGNED_COPY (&value->v_float, &rinfo->typelib->data[blob->offset], float);
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case GI_TYPE_TAG_DOUBLE:
|
2024-01-15 22:20:02 +01:00
|
|
|
|
DO_ALIGNED_COPY (&value->v_double, &rinfo->typelib->data[blob->offset], double);
|
2024-01-16 17:30:37 +01:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-06-07 00:52:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return blob->size;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
void
|
|
|
|
|
gi_constant_info_class_init (gpointer g_class,
|
|
|
|
|
gpointer class_data)
|
|
|
|
|
{
|
|
|
|
|
GIBaseInfoClass *info_class = g_class;
|
|
|
|
|
|
|
|
|
|
info_class->info_type = GI_INFO_TYPE_CONSTANT;
|
|
|
|
|
}
|