File: typeparameter.c

package info (click to toggle)
vala 0.56.18-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,520 kB
  • sloc: ansic: 581,293; sh: 5,357; makefile: 3,980; xml: 3,161; yacc: 1,219; lex: 374; javascript: 23
file content (210 lines) | stat: -rw-r--r-- 8,608 bytes parent folder | download | duplicates (2)
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
/* typeparameter.c generated by valac, the Vala compiler
 * generated from typeparameter.vala, do not modify */

/* typeparameter.vala
 *
 * Copyright (C) 2008-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 <glib.h>
#include <glib-object.h>
#include <stdlib.h>
#include <string.h>
#include <vala.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

enum  {
	VALADOC_API_TYPEPARAMETER_0_PROPERTY,
	VALADOC_API_TYPEPARAMETER_NODE_TYPE_PROPERTY,
	VALADOC_API_TYPEPARAMETER_NUM_PROPERTIES
};
static GParamSpec* valadoc_api_typeparameter_properties[VALADOC_API_TYPEPARAMETER_NUM_PROPERTIES];
#define _valadoc_api_signature_builder_unref0(var) ((var == NULL) ? NULL : (var = (valadoc_api_signature_builder_unref (var), NULL)))

static gpointer valadoc_api_typeparameter_parent_class = NULL;

static ValadocContentInline* valadoc_api_typeparameter_real_build_signature (ValadocApiItem* base);
static void valadoc_api_typeparameter_real_accept (ValadocApiNode* base,
                                            ValadocApiVisitor* visitor);
static gboolean valadoc_api_typeparameter_real_is_browsable (ValadocApiNode* base,
                                                      ValadocSettings* settings);
static GType valadoc_api_typeparameter_get_type_once (void);
static void _vala_valadoc_api_typeparameter_get_property (GObject * object,
                                                   guint property_id,
                                                   GValue * value,
                                                   GParamSpec * pspec);

ValadocApiTypeParameter*
valadoc_api_typeparameter_construct (GType object_type,
                                     ValadocApiNode* parent,
                                     ValadocApiSourceFile* file,
                                     const gchar* name,
                                     ValaTypeParameter* data)
{
	ValadocApiTypeParameter * self = NULL;
	g_return_val_if_fail (parent != NULL, NULL);
	g_return_val_if_fail (file != NULL, NULL);
	g_return_val_if_fail (name != NULL, NULL);
	g_return_val_if_fail (data != NULL, NULL);
	self = (ValadocApiTypeParameter*) valadoc_api_symbol_construct (object_type, parent, file, name, VALA_SYMBOL_ACCESSIBILITY_PUBLIC, NULL, (ValaSymbol*) data);
	return self;
}

ValadocApiTypeParameter*
valadoc_api_typeparameter_new (ValadocApiNode* parent,
                               ValadocApiSourceFile* file,
                               const gchar* name,
                               ValaTypeParameter* data)
{
	return valadoc_api_typeparameter_construct (VALADOC_API_TYPE_TYPEPARAMETER, parent, file, name, data);
}

/**
 * {@inheritDoc}
 */
static ValadocContentInline*
valadoc_api_typeparameter_real_build_signature (ValadocApiItem* base)
{
	ValadocApiTypeParameter * self;
	ValadocApiSignatureBuilder* _tmp0_;
	ValadocApiSignatureBuilder* _tmp1_;
	ValadocApiSignatureBuilder* _tmp2_;
	ValadocContentRun* _tmp3_;
	ValadocContentInline* _tmp4_;
	ValadocContentInline* result;
	self = (ValadocApiTypeParameter*) base;
	_tmp0_ = valadoc_api_signature_builder_new ();
	_tmp1_ = _tmp0_;
	_tmp2_ = valadoc_api_signature_builder_append_symbol (_tmp1_, (ValadocApiNode*) self, TRUE);
	_tmp3_ = valadoc_api_signature_builder_get (_tmp2_);
	_tmp4_ = (ValadocContentInline*) _tmp3_;
	_valadoc_api_signature_builder_unref0 (_tmp1_);
	result = _tmp4_;
	return result;
}

static ValadocApiNodeType
valadoc_api_typeparameter_real_get_node_type (ValadocApiNode* base)
{
	ValadocApiNodeType result;
	ValadocApiTypeParameter* self;
	self = (ValadocApiTypeParameter*) base;
	result = VALADOC_API_NODE_TYPE_TYPE_PARAMETER;
	return result;
}

/**
 * {@inheritDoc}
 */
static void
valadoc_api_typeparameter_real_accept (ValadocApiNode* base,
                                       ValadocApiVisitor* visitor)
{
	ValadocApiTypeParameter * self;
	self = (ValadocApiTypeParameter*) base;
	g_return_if_fail (visitor != NULL);
	valadoc_api_visitor_visit_type_parameter (visitor, self);
}

static gboolean
valadoc_api_typeparameter_real_is_browsable (ValadocApiNode* base,
                                             ValadocSettings* settings)
{
	ValadocApiTypeParameter * self;
	gboolean result;
	self = (ValadocApiTypeParameter*) base;
	g_return_val_if_fail (settings != NULL, FALSE);
	result = FALSE;
	return result;
}

static void
valadoc_api_typeparameter_class_init (ValadocApiTypeParameterClass * klass,
                                      gpointer klass_data)
{
	valadoc_api_typeparameter_parent_class = g_type_class_peek_parent (klass);
	((ValadocApiItemClass *) klass)->build_signature = (ValadocContentInline* (*) (ValadocApiItem*)) valadoc_api_typeparameter_real_build_signature;
	((ValadocApiNodeClass *) klass)->accept = (void (*) (ValadocApiNode*, ValadocApiVisitor*)) valadoc_api_typeparameter_real_accept;
	((ValadocApiNodeClass *) klass)->is_browsable = (gboolean (*) (ValadocApiNode*, ValadocSettings*)) valadoc_api_typeparameter_real_is_browsable;
	VALADOC_API_NODE_CLASS (klass)->get_node_type = (ValadocApiNodeType (*) (ValadocApiNode*)) valadoc_api_typeparameter_real_get_node_type;
	G_OBJECT_CLASS (klass)->get_property = _vala_valadoc_api_typeparameter_get_property;
	/**
	 * {@inheritDoc}
	 */
	g_object_class_install_property (G_OBJECT_CLASS (klass), VALADOC_API_TYPEPARAMETER_NODE_TYPE_PROPERTY, valadoc_api_typeparameter_properties[VALADOC_API_TYPEPARAMETER_NODE_TYPE_PROPERTY] = g_param_spec_enum ("node-type", "node-type", "node-type", VALADOC_API_TYPE_NODE_TYPE, 0, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
}

static void
valadoc_api_typeparameter_instance_init (ValadocApiTypeParameter * self,
                                         gpointer klass)
{
}

/**
 * Represents a generic type parameter in the source code.
 */
static GType
valadoc_api_typeparameter_get_type_once (void)
{
	static const GTypeInfo g_define_type_info = { sizeof (ValadocApiTypeParameterClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) valadoc_api_typeparameter_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (ValadocApiTypeParameter), 0, (GInstanceInitFunc) valadoc_api_typeparameter_instance_init, NULL };
	GType valadoc_api_typeparameter_type_id;
	valadoc_api_typeparameter_type_id = g_type_register_static (VALADOC_API_TYPE_SYMBOL, "ValadocApiTypeParameter", &g_define_type_info, 0);
	return valadoc_api_typeparameter_type_id;
}

GType
valadoc_api_typeparameter_get_type (void)
{
	static volatile gsize valadoc_api_typeparameter_type_id__once = 0;
	if (g_once_init_enter (&valadoc_api_typeparameter_type_id__once)) {
		GType valadoc_api_typeparameter_type_id;
		valadoc_api_typeparameter_type_id = valadoc_api_typeparameter_get_type_once ();
		g_once_init_leave (&valadoc_api_typeparameter_type_id__once, valadoc_api_typeparameter_type_id);
	}
	return valadoc_api_typeparameter_type_id__once;
}

static void
_vala_valadoc_api_typeparameter_get_property (GObject * object,
                                              guint property_id,
                                              GValue * value,
                                              GParamSpec * pspec)
{
	ValadocApiTypeParameter * self;
	self = G_TYPE_CHECK_INSTANCE_CAST (object, VALADOC_API_TYPE_TYPEPARAMETER, ValadocApiTypeParameter);
	switch (property_id) {
		case VALADOC_API_TYPEPARAMETER_NODE_TYPE_PROPERTY:
		g_value_set_enum (value, valadoc_api_node_get_node_type ((ValadocApiNode*) self));
		break;
		default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
		break;
	}
}