aboutsummaryrefslogtreecommitdiff
path: root/src/env
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-09-25 17:45:59 +0000
committerGabor X Toth <*@tg-x.net>2013-09-25 17:45:59 +0000
commitffc11bb1c2c09cda9e7bed84e56cedb8ed49d46c (patch)
tree8003be1feb88db1f585e5c480b11b2a01cf3109b /src/env
parent38f919aee243423fdc49828687c5735ab77b9128 (diff)
downloadgnunet-ffc11bb1c2c09cda9e7bed84e56cedb8ed49d46c.tar.gz
gnunet-ffc11bb1c2c09cda9e7bed84e56cedb8ed49d46c.zip
env lib
Diffstat (limited to 'src/env')
-rw-r--r--src/env/Makefile.am47
-rw-r--r--src/env/env.c131
-rw-r--r--src/env/test_env.c85
3 files changed, 263 insertions, 0 deletions
diff --git a/src/env/Makefile.am b/src/env/Makefile.am
new file mode 100644
index 000000000..67e9c6425
--- /dev/null
+++ b/src/env/Makefile.am
@@ -0,0 +1,47 @@
1AM_CPPFLAGS = -I$(top_srcdir)/src/include
2
3pkgcfgdir= $(pkgdatadir)/config.d/
4
5libexecdir= $(pkglibdir)/libexec/
6
7if MINGW
8 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
9endif
10
11if USE_COVERAGE
12 AM_CFLAGS = --coverage -O0
13 XLIB = -lgcov
14endif
15
16lib_LTLIBRARIES = libgnunetenv.la
17
18libgnunetenv_la_SOURCES = \
19 env.c
20libgnunetenv_la_LIBADD = \
21 $(top_builddir)/src/util/libgnunetutil.la \
22 $(GN_LIBINTL) $(XLIB)
23libgnunetenv_la_LDFLAGS = \
24 $(GN_LIB_LDFLAGS) $(WINFLAGS) \
25 -version-info 0:0:0
26libgnunetenv_la_DEPENDENCIES = \
27 $(top_builddir)/src/util/libgnunetutil.la
28
29if HAVE_TESTING
30check_PROGRAMS = \
31 test_env
32endif
33
34if ENABLE_TEST_RUN
35TESTS = $(check_PROGRAMS)
36endif
37
38test_env_SOURCES = \
39 test_env.c
40test_env_LDADD = \
41 libgnunetenv.la \
42 $(top_builddir)/src/testing/libgnunettesting.la \
43 $(top_builddir)/src/util/libgnunetutil.la
44test_env_DEPENDENCIES = \
45 libgnunetenv.la \
46 $(top_builddir)/src/testing/libgnunettesting.la \
47 $(top_builddir)/src/util/libgnunetutil.la
diff --git a/src/env/env.c b/src/env/env.c
new file mode 100644
index 000000000..c977572ab
--- /dev/null
+++ b/src/env/env.c
@@ -0,0 +1,131 @@
1/*
2 * This file is part of GNUnet.
3 * (C) 2013 Christian Grothoff (and other contributing authors)
4 *
5 * GNUnet is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published
7 * by the Free Software Foundation; either version 3, or (at your
8 * option) any later version.
9 *
10 * GNUnet is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with GNUnet; see the file COPYING. If not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
19 */
20
21/**
22 * @file env/env.c
23 * @brief Library providing operations for the @e environment of
24 * PSYC and Social messages, and for (de)serializing variable values.
25 * @author Gabor X Toth
26 */
27
28#include "platform.h"
29#include "gnunet_util_lib.h"
30#include "gnunet_env_lib.h"
31
32/**
33 * Environment for a message.
34 *
35 * Contains modifiers.
36 */
37struct GNUNET_ENV_Environment
38{
39 struct GNUNET_ENV_Modifier *mod_head;
40 struct GNUNET_ENV_Modifier *mod_tail;
41 size_t mod_count;
42};
43
44
45/**
46 * Create an environment.
47 *
48 * @return A newly allocated environment.
49 */
50struct GNUNET_ENV_Environment *
51GNUNET_ENV_environment_create ()
52{
53 return GNUNET_new (struct GNUNET_ENV_Environment);
54}
55
56
57/**
58 * Add a modifier to the environment.
59 *
60 * @param env The environment.
61 * @param oper Operation to perform.
62 * @param name Name of the variable.
63 * @param value Value of the variable.
64 * @param value_size Size of @a value.
65 */
66void
67GNUNET_ENV_environment_add_mod (struct GNUNET_ENV_Environment *env,
68 enum GNUNET_ENV_Operator oper, const char *name,
69 const void *value, size_t value_size)
70{
71 struct GNUNET_ENV_Modifier *mod = GNUNET_malloc (sizeof (*mod));
72 mod->oper = oper;
73 mod->name = name;
74 mod->value = value;
75 mod->value_size = value_size;
76 GNUNET_CONTAINER_DLL_insert_tail (env->mod_head, env->mod_tail, mod);
77 env->mod_count++;
78}
79
80
81/**
82 * Iterate through all modifiers in the environment.
83 *
84 * @param env The environment.
85 * @param it Iterator.
86 * @param it_cls Closure for iterator.
87 */
88void
89GNUNET_ENV_environment_iterate (const struct GNUNET_ENV_Environment *env,
90 GNUNET_ENV_Iterator it, void *it_cls)
91{
92 struct GNUNET_ENV_Modifier *mod;
93 for (mod = env->mod_head; NULL != mod; mod = mod->next)
94 it (it_cls, mod);
95}
96
97
98/**
99 * Get the number of modifiers in the environment.
100 *
101 * @param env The environment.
102 *
103 * @return Number of modifiers.
104 */
105size_t
106GNUNET_ENV_environment_get_mod_count (const struct GNUNET_ENV_Environment *env)
107{
108 return env->mod_count;
109}
110
111
112/**
113 * Destroy an environment.
114 *
115 * @param env The environment to destroy.
116 */
117void
118GNUNET_ENV_environment_destroy (struct GNUNET_ENV_Environment *env)
119{
120 struct GNUNET_ENV_Modifier *mod, *prev = NULL;
121 for (mod = env->mod_head; NULL != mod; mod = mod->next)
122 {
123 if (NULL != prev)
124 GNUNET_free (prev);
125 prev = mod;
126 }
127 if (NULL != prev)
128 GNUNET_free (prev);
129
130 GNUNET_free (env);
131}
diff --git a/src/env/test_env.c b/src/env/test_env.c
new file mode 100644
index 000000000..11ec9662b
--- /dev/null
+++ b/src/env/test_env.c
@@ -0,0 +1,85 @@
1/*
2 * This file is part of GNUnet.
3 * (C) 2013 Christian Grothoff (and other contributing authors)
4 *
5 * GNUnet is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published
7 * by the Free Software Foundation; either version 3, or (at your
8 * option) any later version.
9 *
10 * GNUnet is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with GNUnet; see the file COPYING. If not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
19 */
20
21/**
22 * @file env/test_env.c
23 * @brief Tests for the environment library.
24 * @author Gabor X Toth
25 */
26
27#include "platform.h"
28#include "gnunet_common.h"
29#include "gnunet_util_lib.h"
30#include "gnunet_testing_lib.h"
31#include "gnunet_env_lib.h"
32
33struct GNUNET_ENV_Modifier mods[] = {
34 { .oper = GNUNET_ENV_OP_SET,
35 .name = "_foo", .value = "foo", .value_size = 3 },
36
37 { .oper = GNUNET_ENV_OP_ASSIGN,
38 .name = "_foo_bar", .value = "foo bar", .value_size = 7 },
39
40 { .oper = GNUNET_ENV_OP_AUGMENT,
41 .name = "_foo_bar_baz", .value = "foo bar baz", .value_size = 11 }
42};
43
44struct ItCls
45{
46 size_t n;
47};
48
49int
50iterator (void *cls, struct GNUNET_ENV_Modifier *mod)
51{
52 struct ItCls *it_cls = cls;
53 struct GNUNET_ENV_Modifier *m = &mods[it_cls->n++];
54
55 GNUNET_assert (mod->oper == m->oper);
56 GNUNET_assert (mod->value_size == m->value_size);
57 GNUNET_assert (0 == memcmp (mod->name, m->name, strlen (m->name)));
58 GNUNET_assert (0 == memcmp (mod->value, m->value, m->value_size));
59
60 return GNUNET_YES;
61}
62
63int
64main (int argc, char *argv[])
65{
66 GNUNET_log_setup ("test-env", "WARNING", NULL);
67
68 struct GNUNET_ENV_Environment *env = GNUNET_ENV_environment_create ();
69 GNUNET_assert (NULL != env);
70 int i, len = 3;
71
72 for (i = 0; i < len; i++)
73 {
74 GNUNET_ENV_environment_add_mod (env, mods[i].oper, mods[i].name,
75 mods[i].value, mods[i].value_size);
76 }
77
78 struct ItCls it_cls = { .n = 0 };
79 GNUNET_ENV_environment_iterate (env, iterator, &it_cls);
80 GNUNET_assert (len == it_cls.n);
81
82 GNUNET_ENV_environment_destroy (env);
83
84 return 0;
85}