1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
/* sourcecomment.c generated by valac, the Vala compiler
* generated from sourcecomment.vala, do not modify */
/* sourcecomment.vala
*
* Copyright (C) 2011 Florian Brosch
*
* 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Florian Brosch <flo.brosch@gmail.com>
*/
#include "valadoc.h"
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <glib-object.h>
#include <gobject/gvaluecollector.h>
#if !defined(VALA_STRICT_C)
#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ >= 14)
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#elif defined(__clang__) && (__clang_major__ >= 16)
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
#pragma clang diagnostic ignored "-Wincompatible-pointer-types"
#endif
#endif
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))
#define _g_free0(var) (var = (g_free (var), NULL))
typedef struct _ValadocApiParamSpecSourceComment ValadocApiParamSpecSourceComment;
struct _ValadocApiSourceCommentPrivate {
ValadocApiSourceFile* _file;
gchar* _content;
gint _first_line;
gint _first_column;
gint _last_line;
gint _last_column;
};
struct _ValadocApiParamSpecSourceComment {
GParamSpec parent_instance;
};
static gint ValadocApiSourceComment_private_offset;
static gpointer valadoc_api_source_comment_parent_class = NULL;
static void valadoc_api_source_comment_set_file (ValadocApiSourceComment* self,
ValadocApiSourceFile* value);
static void valadoc_api_source_comment_set_content (ValadocApiSourceComment* self,
const gchar* value);
static void valadoc_api_source_comment_set_first_line (ValadocApiSourceComment* self,
gint value);
static void valadoc_api_source_comment_set_first_column (ValadocApiSourceComment* self,
gint value);
static void valadoc_api_source_comment_set_last_line (ValadocApiSourceComment* self,
gint value);
static void valadoc_api_source_comment_set_last_column (ValadocApiSourceComment* self,
gint value);
static void valadoc_api_source_comment_finalize (ValadocApiSourceComment * obj);
static GType valadoc_api_source_comment_get_type_once (void);
static inline gpointer
valadoc_api_source_comment_get_instance_private (ValadocApiSourceComment* self)
{
return G_STRUCT_MEMBER_P (self, ValadocApiSourceComment_private_offset);
}
ValadocApiSourceFile*
valadoc_api_source_comment_get_file (ValadocApiSourceComment* self)
{
ValadocApiSourceFile* result;
ValadocApiSourceFile* _tmp0_;
g_return_val_if_fail (self != NULL, NULL);
_tmp0_ = self->priv->_file;
result = _tmp0_;
return result;
}
static gpointer
_g_object_ref0 (gpointer self)
{
return self ? g_object_ref (self) : NULL;
}
static void
valadoc_api_source_comment_set_file (ValadocApiSourceComment* self,
ValadocApiSourceFile* value)
{
ValadocApiSourceFile* _tmp0_;
g_return_if_fail (self != NULL);
_tmp0_ = _g_object_ref0 (value);
_g_object_unref0 (self->priv->_file);
self->priv->_file = _tmp0_;
}
const gchar*
valadoc_api_source_comment_get_content (ValadocApiSourceComment* self)
{
const gchar* result;
const gchar* _tmp0_;
g_return_val_if_fail (self != NULL, NULL);
_tmp0_ = self->priv->_content;
result = _tmp0_;
return result;
}
static void
valadoc_api_source_comment_set_content (ValadocApiSourceComment* self,
const gchar* value)
{
gchar* _tmp0_;
g_return_if_fail (self != NULL);
_tmp0_ = g_strdup (value);
_g_free0 (self->priv->_content);
self->priv->_content = _tmp0_;
}
gint
valadoc_api_source_comment_get_first_line (ValadocApiSourceComment* self)
{
gint result;
g_return_val_if_fail (self != NULL, 0);
result = self->priv->_first_line;
return result;
}
static void
valadoc_api_source_comment_set_first_line (ValadocApiSourceComment* self,
gint value)
{
g_return_if_fail (self != NULL);
self->priv->_first_line = value;
}
gint
valadoc_api_source_comment_get_first_column (ValadocApiSourceComment* self)
{
gint result;
g_return_val_if_fail (self != NULL, 0);
result = self->priv->_first_column;
return result;
}
static void
valadoc_api_source_comment_set_first_column (ValadocApiSourceComment* self,
gint value)
{
g_return_if_fail (self != NULL);
self->priv->_first_column = value;
}
gint
valadoc_api_source_comment_get_last_line (ValadocApiSourceComment* self)
{
gint result;
g_return_val_if_fail (self != NULL, 0);
result = self->priv->_last_line;
return result;
}
static void
valadoc_api_source_comment_set_last_line (ValadocApiSourceComment* self,
gint value)
{
g_return_if_fail (self != NULL);
self->priv->_last_line = value;
}
gint
valadoc_api_source_comment_get_last_column (ValadocApiSourceComment* self)
{
gint result;
g_return_val_if_fail (self != NULL, 0);
result = self->priv->_last_column;
return result;
}
static void
valadoc_api_source_comment_set_last_column (ValadocApiSourceComment* self,
gint value)
{
g_return_if_fail (self != NULL);
self->priv->_last_column = value;
}
ValadocApiSourceComment*
valadoc_api_source_comment_construct (GType object_type,
const gchar* content,
ValadocApiSourceFile* file,
gint first_line,
gint first_column,
gint last_line,
gint last_column)
{
ValadocApiSourceComment* self = NULL;
g_return_val_if_fail (content != NULL, NULL);
g_return_val_if_fail (file != NULL, NULL);
self = (ValadocApiSourceComment*) g_type_create_instance (object_type);
valadoc_api_source_comment_set_first_column (self, first_column);
valadoc_api_source_comment_set_last_column (self, last_column);
valadoc_api_source_comment_set_first_line (self, first_line);
valadoc_api_source_comment_set_last_line (self, last_line);
valadoc_api_source_comment_set_content (self, content);
valadoc_api_source_comment_set_file (self, file);
return self;
}
ValadocApiSourceComment*
valadoc_api_source_comment_new (const gchar* content,
ValadocApiSourceFile* file,
gint first_line,
gint first_column,
gint last_line,
gint last_column)
{
return valadoc_api_source_comment_construct (VALADOC_API_TYPE_SOURCE_COMMENT, content, file, first_line, first_column, last_line, last_column);
}
static void
valadoc_api_value_source_comment_init (GValue* value)
{
value->data[0].v_pointer = NULL;
}
static void
valadoc_api_value_source_comment_free_value (GValue* value)
{
if (value->data[0].v_pointer) {
valadoc_api_source_comment_unref (value->data[0].v_pointer);
}
}
static void
valadoc_api_value_source_comment_copy_value (const GValue* src_value,
GValue* dest_value)
{
if (src_value->data[0].v_pointer) {
dest_value->data[0].v_pointer = valadoc_api_source_comment_ref (src_value->data[0].v_pointer);
} else {
dest_value->data[0].v_pointer = NULL;
}
}
static gpointer
valadoc_api_value_source_comment_peek_pointer (const GValue* value)
{
return value->data[0].v_pointer;
}
static gchar*
valadoc_api_value_source_comment_collect_value (GValue* value,
guint n_collect_values,
GTypeCValue* collect_values,
guint collect_flags)
{
if (collect_values[0].v_pointer) {
ValadocApiSourceComment * object;
object = collect_values[0].v_pointer;
if (object->parent_instance.g_class == NULL) {
return g_strconcat ("invalid unclassed object pointer for value type `", G_VALUE_TYPE_NAME (value), "'", NULL);
} else if (!g_value_type_compatible (G_TYPE_FROM_INSTANCE (object), G_VALUE_TYPE (value))) {
return g_strconcat ("invalid object type `", g_type_name (G_TYPE_FROM_INSTANCE (object)), "' for value type `", G_VALUE_TYPE_NAME (value), "'", NULL);
}
value->data[0].v_pointer = valadoc_api_source_comment_ref (object);
} else {
value->data[0].v_pointer = NULL;
}
return NULL;
}
static gchar*
valadoc_api_value_source_comment_lcopy_value (const GValue* value,
guint n_collect_values,
GTypeCValue* collect_values,
guint collect_flags)
{
ValadocApiSourceComment ** object_p;
object_p = collect_values[0].v_pointer;
if (!object_p) {
return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
}
if (!value->data[0].v_pointer) {
*object_p = NULL;
} else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) {
*object_p = value->data[0].v_pointer;
} else {
*object_p = valadoc_api_source_comment_ref (value->data[0].v_pointer);
}
return NULL;
}
GParamSpec*
valadoc_api_param_spec_source_comment (const gchar* name,
const gchar* nick,
const gchar* blurb,
GType object_type,
GParamFlags flags)
{
ValadocApiParamSpecSourceComment* spec;
g_return_val_if_fail (g_type_is_a (object_type, VALADOC_API_TYPE_SOURCE_COMMENT), NULL);
spec = g_param_spec_internal (G_TYPE_PARAM_OBJECT, name, nick, blurb, flags);
G_PARAM_SPEC (spec)->value_type = object_type;
return G_PARAM_SPEC (spec);
}
gpointer
valadoc_api_value_get_source_comment (const GValue* value)
{
g_return_val_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, VALADOC_API_TYPE_SOURCE_COMMENT), NULL);
return value->data[0].v_pointer;
}
void
valadoc_api_value_set_source_comment (GValue* value,
gpointer v_object)
{
ValadocApiSourceComment * old;
g_return_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, VALADOC_API_TYPE_SOURCE_COMMENT));
old = value->data[0].v_pointer;
if (v_object) {
g_return_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (v_object, VALADOC_API_TYPE_SOURCE_COMMENT));
g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (v_object), G_VALUE_TYPE (value)));
value->data[0].v_pointer = v_object;
valadoc_api_source_comment_ref (value->data[0].v_pointer);
} else {
value->data[0].v_pointer = NULL;
}
if (old) {
valadoc_api_source_comment_unref (old);
}
}
void
valadoc_api_value_take_source_comment (GValue* value,
gpointer v_object)
{
ValadocApiSourceComment * old;
g_return_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, VALADOC_API_TYPE_SOURCE_COMMENT));
old = value->data[0].v_pointer;
if (v_object) {
g_return_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (v_object, VALADOC_API_TYPE_SOURCE_COMMENT));
g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (v_object), G_VALUE_TYPE (value)));
value->data[0].v_pointer = v_object;
} else {
value->data[0].v_pointer = NULL;
}
if (old) {
valadoc_api_source_comment_unref (old);
}
}
static void
valadoc_api_source_comment_class_init (ValadocApiSourceCommentClass * klass,
gpointer klass_data)
{
valadoc_api_source_comment_parent_class = g_type_class_peek_parent (klass);
((ValadocApiSourceCommentClass *) klass)->finalize = valadoc_api_source_comment_finalize;
g_type_class_adjust_private_offset (klass, &ValadocApiSourceComment_private_offset);
}
static void
valadoc_api_source_comment_instance_init (ValadocApiSourceComment * self,
gpointer klass)
{
self->priv = valadoc_api_source_comment_get_instance_private (self);
self->ref_count = 1;
}
static void
valadoc_api_source_comment_finalize (ValadocApiSourceComment * obj)
{
ValadocApiSourceComment * self;
self = G_TYPE_CHECK_INSTANCE_CAST (obj, VALADOC_API_TYPE_SOURCE_COMMENT, ValadocApiSourceComment);
g_signal_handlers_destroy (self);
_g_object_unref0 (self->priv->_file);
_g_free0 (self->priv->_content);
}
/**
* A documentation comment used by valadoc
*/
static GType
valadoc_api_source_comment_get_type_once (void)
{
static const GTypeValueTable g_define_type_value_table = { valadoc_api_value_source_comment_init, valadoc_api_value_source_comment_free_value, valadoc_api_value_source_comment_copy_value, valadoc_api_value_source_comment_peek_pointer, "p", valadoc_api_value_source_comment_collect_value, "p", valadoc_api_value_source_comment_lcopy_value };
static const GTypeInfo g_define_type_info = { sizeof (ValadocApiSourceCommentClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) valadoc_api_source_comment_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (ValadocApiSourceComment), 0, (GInstanceInitFunc) valadoc_api_source_comment_instance_init, &g_define_type_value_table };
static const GTypeFundamentalInfo g_define_type_fundamental_info = { (G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_INSTANTIATABLE | G_TYPE_FLAG_DERIVABLE | G_TYPE_FLAG_DEEP_DERIVABLE) };
GType valadoc_api_source_comment_type_id;
valadoc_api_source_comment_type_id = g_type_register_fundamental (g_type_fundamental_next (), "ValadocApiSourceComment", &g_define_type_info, &g_define_type_fundamental_info, 0);
ValadocApiSourceComment_private_offset = g_type_add_instance_private (valadoc_api_source_comment_type_id, sizeof (ValadocApiSourceCommentPrivate));
return valadoc_api_source_comment_type_id;
}
GType
valadoc_api_source_comment_get_type (void)
{
static volatile gsize valadoc_api_source_comment_type_id__once = 0;
if (g_once_init_enter (&valadoc_api_source_comment_type_id__once)) {
GType valadoc_api_source_comment_type_id;
valadoc_api_source_comment_type_id = valadoc_api_source_comment_get_type_once ();
g_once_init_leave (&valadoc_api_source_comment_type_id__once, valadoc_api_source_comment_type_id);
}
return valadoc_api_source_comment_type_id__once;
}
gpointer
valadoc_api_source_comment_ref (gpointer instance)
{
ValadocApiSourceComment * self;
self = instance;
g_atomic_int_inc (&self->ref_count);
return instance;
}
void
valadoc_api_source_comment_unref (gpointer instance)
{
ValadocApiSourceComment * self;
self = instance;
if (g_atomic_int_dec_and_test (&self->ref_count)) {
VALADOC_API_SOURCE_COMMENT_GET_CLASS (self)->finalize (self);
g_type_free_instance ((GTypeInstance *) self);
}
}
|