summaryrefslogtreecommitdiff
path: root/shared/nm-glib-aux/nm-value-type.h
blob: 0fe0a98780b986f4270f3d1aa78c3ffe94d28d3f (plain)
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
// SPDX-License-Identifier: LGPL-2.1+
/*
 * Copyright 2019 Red Hat, Inc.
 */

#ifndef __NM_VALUE_TYPE_H__
#define __NM_VALUE_TYPE_H__

typedef enum {
	NM_VALUE_TYPE_UNSPEC = 1,
	NM_VALUE_TYPE_BOOL   = 2,
	NM_VALUE_TYPE_INT32  = 3,
	NM_VALUE_TYPE_INT    = 4,
	NM_VALUE_TYPE_STRING = 5,
} NMValueType;

/*****************************************************************************/

#ifdef NM_VALUE_TYPE_DEFINE_FUNCTIONS

typedef union {
	bool             v_bool;
	gint32           v_int32;
	int              v_int;
	const char      *v_string;

	/* for convenience, also let the union contain other pointer types. These are
	 * for NM_VALUE_TYPE_UNSPEC. */
	gconstpointer   *v_ptr;
	const GPtrArray *v_ptrarray;

} NMValueTypUnion;

/* Set the NMValueTypUnion. You can also assign the member directly.
 * The only purpose of this is that it also returns a pointer to the
 * union. So, you can do
 *
 *   ptr = NM_VALUE_TYP_UNION_SET (&value_typ_union_storage, v_bool, TRUE);
 */
#define NM_VALUE_TYP_UNION_SET(_arg, _type, _val) \
	({ \
		NMValueTypUnion *const _arg2 = (_arg); \
		\
		*_arg2 = (NMValueTypUnion) { \
			._type = (_val), \
		}; \
		_arg2; \
	})

typedef struct {
	bool has;
	NMValueTypUnion val;
} NMValueTypUnioMaybe;

#define NM_VALUE_TYP_UNIO_MAYBE_SET(_arg, _type, _val) \
	({ \
		NMValueTypUnioMaybe *const _arg2 = (_arg); \
		\
		*_arg2 = (NMValueTypUnioMaybe) { \
			.has       = TRUE, \
			.val._type = (_val), \
		}; \
		_arg2; \
	})

/*****************************************************************************/

static inline int
nm_value_type_cmp (NMValueType value_type,
                   gconstpointer p_a,
                   gconstpointer p_b)
{
	switch (value_type) {
	case NM_VALUE_TYPE_BOOL:   NM_CMP_DIRECT (*((const bool   *) p_a), *((const bool   *) p_b)); return 0;
	case NM_VALUE_TYPE_INT32:  NM_CMP_DIRECT (*((const gint32 *) p_a), *((const gint32 *) p_b)); return 0;
	case NM_VALUE_TYPE_INT:    NM_CMP_DIRECT (*((const int    *) p_a), *((const int    *) p_b)); return 0;
	case NM_VALUE_TYPE_STRING: return nm_strcmp0 (*((const char *const*) p_a), *((const char *const*) p_b));
	case NM_VALUE_TYPE_UNSPEC:
		break;
	}
	nm_assert_not_reached ();
	return 0;
}

static inline gboolean
nm_value_type_equal (NMValueType value_type,
                     gconstpointer p_a,
                     gconstpointer p_b)
{
	return nm_value_type_cmp (value_type, p_a, p_b) == 0;
}

static inline void
nm_value_type_copy (NMValueType value_type,
                    gpointer dst,
                    gconstpointer src)
{
	switch (value_type) {
	case NM_VALUE_TYPE_BOOL:   (*((bool   *) dst) = *((const bool   *) src)); return;
	case NM_VALUE_TYPE_INT32:  (*((gint32 *) dst) = *((const gint32 *) src)); return;
	case NM_VALUE_TYPE_INT:    (*((int    *) dst) = *((const int    *) src)); return;
	case NM_VALUE_TYPE_STRING:
		/* self assignment safe! */
		if (*((char **) dst) != *((const char *const*) src)) {
			g_free (*((char **) dst));
			*((char **) dst) = g_strdup (*((const char *const*) src));
		}
		return;
	case NM_VALUE_TYPE_UNSPEC:
		break;
	}
	nm_assert_not_reached ();
}

static inline void
nm_value_type_get_from_variant (NMValueType value_type,
                                gpointer dst,
                                GVariant *variant,
                                gboolean clone)
{
	switch (value_type) {
	case NM_VALUE_TYPE_BOOL:   *((bool   *) dst) = g_variant_get_boolean (variant); return;
	case NM_VALUE_TYPE_INT32:  *((gint32 *) dst) = g_variant_get_int32 (variant);   return;
	case NM_VALUE_TYPE_STRING:
		if (clone) {
			g_free (*((char **) dst));
			*((char **) dst) = g_variant_dup_string (variant, NULL);
		} else {
			/* we don't clone the string, nor free the previous value. */
			*((const char **) dst) = g_variant_get_string (variant, NULL);
		}
		return;

	case NM_VALUE_TYPE_INT:
		/* "int" also does not have a define variant type, because it's not
		 * clear how many bits we would need. */

		/* fall-through */
	case NM_VALUE_TYPE_UNSPEC:
		break;
	}
	nm_assert_not_reached ();
}

static inline GVariant *
nm_value_type_to_variant (NMValueType value_type,
                          gconstpointer src)
{
	const char *v_string;

	switch (value_type) {
	case NM_VALUE_TYPE_BOOL:   return g_variant_new_boolean (*((const bool   *) src));
	case NM_VALUE_TYPE_INT32:  return g_variant_new_int32   (*((const gint32 *) src));;
	case NM_VALUE_TYPE_STRING:
		v_string = *((const char *const*) src);
		return v_string ? g_variant_new_string (v_string) : NULL;

	case NM_VALUE_TYPE_INT:
		/* "int" also does not have a define variant type, because it's not
		 * clear how many bits we would need. */

		/* fall-through */
	case NM_VALUE_TYPE_UNSPEC:
		break;
	}
	nm_assert_not_reached ();
	return NULL;
}

static inline const GVariantType *
nm_value_type_get_variant_type (NMValueType value_type)
{
	switch (value_type) {
	case NM_VALUE_TYPE_BOOL:   return G_VARIANT_TYPE_BOOLEAN;
	case NM_VALUE_TYPE_INT32:  return G_VARIANT_TYPE_INT32;
	case NM_VALUE_TYPE_STRING: return G_VARIANT_TYPE_STRING;

	case NM_VALUE_TYPE_INT:
		/* "int" also does not have a define variant type, because it's not
		 * clear how many bits we would need. */

		/* fall-through */
	case NM_VALUE_TYPE_UNSPEC:
		break;
	}
	nm_assert_not_reached ();
	return NULL;
}

/*****************************************************************************/

#endif /* NM_VALUE_TYPE_DEFINE_FUNCTIONS */

#endif  /* __NM_VALUE_TYPE_H__ */