2012-02-03 19:42:56 +01:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
|
|
* GObject introspection: Enum implementation
|
2010-06-06 18:06:30 +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-06 18:06:30 +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-06 18:06:30 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
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-06 18:06:30 +02:00
|
|
|
#include "girepository-private.h"
|
|
|
|
#include "gitypelib-internal.h"
|
2023-10-25 19:11:38 +02:00
|
|
|
#include "gienuminfo.h"
|
2010-06-06 18:06:30 +02:00
|
|
|
|
|
|
|
/**
|
2023-12-13 01:27:07 +01:00
|
|
|
* GIEnumInfo:
|
2010-06-06 18:06:30 +02:00
|
|
|
*
|
2023-12-13 01:27:07 +01:00
|
|
|
* A `GIEnumInfo` represents an enumeration.
|
2022-02-13 15:20:51 +01:00
|
|
|
*
|
2023-12-13 01:27:07 +01:00
|
|
|
* The `GIEnumInfo` contains a set of values (each a
|
|
|
|
* [class@GIRepository.ValueInfo]) and a type.
|
2022-02-13 15:20:51 +01:00
|
|
|
*
|
2023-12-13 01:27:07 +01:00
|
|
|
* The [class@GIRepository.ValueInfo] for a value is fetched by calling
|
|
|
|
* [method@GIRepository.EnumInfo.get_value] on a `GIEnumInfo`.
|
|
|
|
*
|
|
|
|
* Since: 2.80
|
2010-06-06 18:06:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
* gi_enum_info_get_n_values:
|
2013-10-10 22:21:18 +02:00
|
|
|
* @info: a #GIEnumInfo
|
|
|
|
*
|
|
|
|
* Obtain the number of values this enumeration contains.
|
|
|
|
*
|
|
|
|
* Returns: the number of enumeration values
|
2023-12-13 01:27:07 +01:00
|
|
|
* Since: 2.80
|
2013-10-10 22:21:18 +02:00
|
|
|
*/
|
2024-01-15 22:20:02 +01:00
|
|
|
unsigned int
|
2023-11-08 15:17:52 +01:00
|
|
|
gi_enum_info_get_n_values (GIEnumInfo *info)
|
2010-06-06 18:06:30 +02:00
|
|
|
{
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
EnumBlob *blob;
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, 0);
|
|
|
|
g_return_val_if_fail (GI_IS_ENUM_INFO (info), 0);
|
|
|
|
|
|
|
|
blob = (EnumBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
return blob->n_values;
|
|
|
|
}
|
|
|
|
|
2013-02-14 20:51:57 +01:00
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
* gi_enum_info_get_error_domain:
|
2013-02-14 20:51:57 +01:00
|
|
|
* @info: a #GIEnumInfo
|
|
|
|
*
|
|
|
|
* Obtain the string form of the quark for the error domain associated with
|
|
|
|
* this enum, if any.
|
|
|
|
*
|
2023-12-13 01:27:07 +01:00
|
|
|
* Returns: (transfer none) (nullable): the string form of the error domain
|
|
|
|
* associated with this enum, or `NULL`.
|
2023-11-09 00:24:11 +01:00
|
|
|
* Since: 2.80
|
2013-02-14 20:51:57 +01:00
|
|
|
*/
|
2024-01-15 20:20:47 +01:00
|
|
|
const char *
|
2023-11-08 15:17:52 +01:00
|
|
|
gi_enum_info_get_error_domain (GIEnumInfo *info)
|
2011-05-19 22:21:13 +02:00
|
|
|
{
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
EnumBlob *blob;
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, 0);
|
|
|
|
g_return_val_if_fail (GI_IS_ENUM_INFO (info), 0);
|
|
|
|
|
|
|
|
blob = (EnumBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
if (blob->error_domain)
|
2023-11-08 15:17:52 +01:00
|
|
|
return gi_typelib_get_string (rinfo->typelib, blob->error_domain);
|
2011-05-19 22:21:13 +02:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-06 18:06:30 +02:00
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
* gi_enum_info_get_value:
|
2010-06-06 18:06:30 +02:00
|
|
|
* @info: a #GIEnumInfo
|
|
|
|
* @n: index of value to fetch
|
|
|
|
*
|
|
|
|
* Obtain a value for this enumeration.
|
|
|
|
*
|
2023-12-13 01:27:07 +01:00
|
|
|
* Returns: (transfer full): the enumeration value, free the struct with
|
|
|
|
* [method@GIRepository.BaseInfo.unref] when done.
|
|
|
|
* Since: 2.80
|
2010-06-06 18:06:30 +02:00
|
|
|
*/
|
|
|
|
GIValueInfo *
|
2023-11-08 15:17:52 +01:00
|
|
|
gi_enum_info_get_value (GIEnumInfo *info,
|
2024-01-15 22:20:02 +01:00
|
|
|
unsigned int n)
|
2010-06-06 18:06:30 +02:00
|
|
|
{
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
Header *header;
|
2024-01-16 01:00:07 +01:00
|
|
|
size_t offset;
|
2010-06-06 18:06:30 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GI_IS_ENUM_INFO (info), NULL);
|
2024-01-16 01:40:09 +01:00
|
|
|
g_return_val_if_fail (n <= G_MAXUINT16, NULL);
|
2010-06-06 18:06:30 +02:00
|
|
|
|
|
|
|
header = (Header *)rinfo->typelib->data;
|
|
|
|
offset = rinfo->offset + header->enum_blob_size
|
|
|
|
+ n * header->value_blob_size;
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
return (GIValueInfo *) gi_info_new (GI_INFO_TYPE_VALUE, (GIBaseInfo*)info, rinfo->typelib, offset);
|
2010-06-06 18:06:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-13 17:28:30 +02:00
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
* gi_enum_info_get_n_methods:
|
2011-08-13 17:28:30 +02:00
|
|
|
* @info: a #GIEnumInfo
|
|
|
|
*
|
|
|
|
* Obtain the number of methods that this enum type has.
|
|
|
|
*
|
|
|
|
* Returns: number of methods
|
2023-11-09 00:24:11 +01:00
|
|
|
* Since: 2.80
|
2011-08-13 17:28:30 +02:00
|
|
|
*/
|
2024-01-15 22:20:02 +01:00
|
|
|
unsigned int
|
2023-11-08 15:17:52 +01:00
|
|
|
gi_enum_info_get_n_methods (GIEnumInfo *info)
|
2011-08-13 17:28:30 +02:00
|
|
|
{
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
EnumBlob *blob;
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, 0);
|
|
|
|
g_return_val_if_fail (GI_IS_ENUM_INFO (info), 0);
|
|
|
|
|
|
|
|
blob = (EnumBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
return blob->n_methods;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
* gi_enum_info_get_method:
|
2011-08-13 17:28:30 +02:00
|
|
|
* @info: a #GIEnumInfo
|
|
|
|
* @n: index of method to get
|
|
|
|
*
|
|
|
|
* Obtain an enum type method at index @n.
|
|
|
|
*
|
2023-12-13 01:27:07 +01:00
|
|
|
* Returns: (transfer full): the [class@GIRepository.FunctionInfo]. Free the
|
|
|
|
* struct by calling [method@GIRepository.BaseInfo.unref] when done.
|
2023-11-09 00:24:11 +01:00
|
|
|
* Since: 2.80
|
2011-08-13 17:28:30 +02:00
|
|
|
*/
|
|
|
|
GIFunctionInfo *
|
2023-11-08 15:17:52 +01:00
|
|
|
gi_enum_info_get_method (GIEnumInfo *info,
|
2024-01-15 22:20:02 +01:00
|
|
|
unsigned int n)
|
2011-08-13 17:28:30 +02:00
|
|
|
{
|
2024-01-16 01:00:07 +01:00
|
|
|
size_t offset;
|
2011-08-13 17:28:30 +02:00
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
Header *header;
|
|
|
|
EnumBlob *blob;
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GI_IS_ENUM_INFO (info), NULL);
|
2024-01-16 01:40:09 +01:00
|
|
|
g_return_val_if_fail (n <= G_MAXUINT16, NULL);
|
2011-08-13 17:28:30 +02:00
|
|
|
|
|
|
|
header = (Header *)rinfo->typelib->data;
|
|
|
|
blob = (EnumBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
offset = rinfo->offset + header->enum_blob_size
|
|
|
|
+ blob->n_values * header->value_blob_size
|
|
|
|
+ n * header->function_blob_size;
|
|
|
|
|
2023-11-08 15:17:52 +01:00
|
|
|
return (GIFunctionInfo *) gi_info_new (GI_INFO_TYPE_FUNCTION, (GIBaseInfo*)info,
|
|
|
|
rinfo->typelib, offset);
|
2011-08-13 17:28:30 +02:00
|
|
|
}
|
|
|
|
|
2010-06-06 18:06:30 +02:00
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
* gi_enum_info_get_storage_type:
|
2010-06-06 18:06:30 +02:00
|
|
|
* @info: a #GIEnumInfo
|
|
|
|
*
|
|
|
|
* Obtain the tag of the type used for the enum in the C ABI. This will
|
|
|
|
* will be a signed or unsigned integral type.
|
2013-10-10 22:21:18 +02:00
|
|
|
*
|
2010-06-06 18:06:30 +02:00
|
|
|
* Note that in the current implementation the width of the type is
|
|
|
|
* computed correctly, but the signed or unsigned nature of the type
|
|
|
|
* may not match the sign of the type used by the C compiler.
|
|
|
|
*
|
2013-10-10 22:21:18 +02:00
|
|
|
* Returns: the storage type for the enumeration
|
2023-12-13 01:27:07 +01:00
|
|
|
* Since: 2.80
|
2010-06-06 18:06:30 +02:00
|
|
|
*/
|
|
|
|
GITypeTag
|
2023-11-08 15:17:52 +01:00
|
|
|
gi_enum_info_get_storage_type (GIEnumInfo *info)
|
2010-06-06 18:06:30 +02:00
|
|
|
{
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
EnumBlob *blob;
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, GI_TYPE_TAG_BOOLEAN);
|
|
|
|
g_return_val_if_fail (GI_IS_ENUM_INFO (info), GI_TYPE_TAG_BOOLEAN);
|
|
|
|
|
|
|
|
blob = (EnumBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
return blob->storage_type;
|
|
|
|
}
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
void
|
|
|
|
gi_enum_info_class_init (gpointer g_class,
|
|
|
|
gpointer class_data)
|
|
|
|
{
|
|
|
|
GIBaseInfoClass *info_class = g_class;
|
|
|
|
|
|
|
|
info_class->info_type = GI_INFO_TYPE_ENUM;
|
|
|
|
}
|