SENSOR service integration
[oweals/gnunet.git] / src / sensor / gnunet-sensor.c
1 /*
2      This file is part of GNUnet.
3      (C)
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 sensor/gnunet-sensor.c
23  * @brief sensor tool
24  * @author Omar Tarabai
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_sensor_service.h"
29
30 static int ret;
31
32 /*
33  * option '-a'
34  */
35 static int get_all;
36
37 /*
38  * Handle to sensor service
39  */
40 struct GNUNET_SENSOR_Handle *sensor_handle;
41
42 /**
43  * Run on shutdown
44  *
45  * @param cls unused
46  * @param tc scheduler context
47  */
48 static void
49 shutdown_task (void *cls,
50          const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   if(NULL != sensor_handle)
53   {
54     GNUNET_SENSOR_disconnect(sensor_handle);
55     sensor_handle = NULL;
56   }
57 }
58
59 /**
60  * Callback for getting sensor info from service
61  *
62  * @param cls not used
63  * @param sensor brief information about sensor (NULL means end of transmission)
64  * @param err_msg contains error string if any
65  */
66 void print_sensor_info(void *cls,
67     const struct SensorInfoShort *sensor,
68     const char *err_msg)
69 {
70   if(NULL != err_msg)
71   {
72     printf("Error: %s\n", err_msg);
73     GNUNET_SCHEDULER_shutdown();
74     return;
75   }
76   if(NULL == sensor) /* no more sensors from service */
77   {
78     GNUNET_SCHEDULER_shutdown();
79     return;
80   }
81   printf("Name: %s\nVersion: %d.%d\n",
82       sensor->name,
83       sensor->version_major,
84       sensor->version_minor);
85   if(NULL != sensor->description)
86     printf("Description: %s\n", sensor->description);
87   printf("\n");
88 }
89
90 /**
91  * Main function that will be run by the scheduler.
92  *
93  * @param cls closure
94  * @param args remaining command-line arguments
95  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
96  * @param cfg configuration
97  */
98 static void
99 run (void *cls,
100      char *const *args,
101      const char *cfgfile,
102      const struct GNUNET_CONFIGURATION_Handle *cfg)
103 {
104
105   sensor_handle = NULL;
106   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
107                                   &shutdown_task,
108                                   NULL);
109   if(GNUNET_YES == get_all)
110   {
111     sensor_handle = GNUNET_SENSOR_connect(cfg);
112     GNUNET_assert(NULL != sensor_handle);
113     GNUNET_SENSOR_iterate_sensors(sensor_handle,
114         GNUNET_TIME_UNIT_FOREVER_REL,
115         NULL,
116         0,
117         &print_sensor_info,
118         NULL);
119   }
120
121   ret = 0;
122 }
123
124 /**
125  * The main function to sensor.
126  *
127  * @param argc number of arguments from the command line
128  * @param argv command line arguments
129  * @return 0 ok, 1 on error
130  */
131 int
132 main (int argc, char *const *argv)
133 {
134   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
135       {'a', "all", NULL,
136           gettext_noop("Retrieve names of all defined sensors"),
137       0, &GNUNET_GETOPT_set_one, &get_all},
138     GNUNET_GETOPT_OPTION_END
139   };
140   return (GNUNET_OK ==
141           GNUNET_PROGRAM_run (argc,
142                               argv,
143                               "gnunet-sensor [options [value]]",
144                               gettext_noop
145                               ("sensor"),
146                               options, &run, NULL)) ? ret : 1;
147 }
148
149 /* end of gnunet-sensor.c */