Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin/sugar-native-factory.c
blob: 858249a2725be4acf8c289b1e13ddfdae79ff6d4 (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
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
/*
Copyright (c) 2007 Bert Freudenberg

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/



#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <sys/wait.h>
#include <dbus/dbus.h>
#include <unistd.h>

char* prog;

/* command and arguments for activity instance*/
static char* inst_argv[100];
static int   inst_argc = 0;

/* instance process ids */
static pid_t pidv[100];
static int   pidc = 0;

/* instance process id that exited before it was added */
static pid_t exited = 0;



/* add and remove instances, quit when last instance exits*/

static void
quit()
{
  fprintf(stderr, "%s: quitting\n", prog);
  exit(0);
}


static void
add_pid(pid_t pid)
{
  if (pid == exited)
    {
      fprintf(stderr, "%s: ign instance pid %i\n", prog, pid);
      exited = 0;
      if (pidc == 0)
	quit();
      return;
    }
  pidv[pidc++] = pid;
  fprintf(stderr, "%s: add instance pid %i\n", prog, pid);
}


static void
remove_pid(pid_t pid)
{
  int i;
  for (i=0; i<pidc; i++) 
    if (pidv[i]==pid)
      break;
  if (i==pidc)
    {
      exited = pid;
      return;
    }
  pidc--;
  for ( ; i<pidc; i++)
    pidv[i] = pidv[i+1];

  fprintf(stderr, "%s: del instance pid %i\n", prog, pid);

  if (pidc == 0)
    quit();
}


static void
sigchld_handler(int signum)
{
  int pid;
  int status;
  while (1)
    {
      pid = waitpid(WAIT_ANY, &status, WNOHANG);
      if (pid <= 0)
	break;
      remove_pid(pid);
    }
}



/* fork and exit a new activity instance */

static void
create_instance(int argc)
{
  pid_t pid = fork();
 
  if (pid<0)
    {
      perror("fork failed");
      exit(1);
    }

  inst_argv[argc] = NULL;
  if (pid == 0)
    {
      execvp(inst_argv[0], inst_argv);
      perror(inst_argv[0]);
      exit(1);
    }

  add_pid(pid);
}



/* handle dbus Introspect() call */

static DBusHandlerResult
handle_introspect(DBusConnection *connection, DBusMessage* message)
{
  DBusMessage *reply;
  const char *introspect_xml =
    DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE
    "<node>\n"
    "	<interface name=\"org.freedesktop.DBus.Introspectable\">\n"
    "		<method name=\"Introspect\">\n"
    "			<arg direction=\"out\" type=\"s\" />\n"
    "		</method>\n"
    "	</interface>\n"
    "	<interface name=\"org.laptop.ActivityFactory\">\n"
    "		<method name=\"create\">\n"
    "			<arg direction=\"in\" type=\"a{ss}\" />\n"
    "		</method>\n"
    "	</interface>\n"
    "</node>\n";

  reply = dbus_message_new_method_return(message);
  dbus_message_append_args(reply,
			   DBUS_TYPE_STRING, &introspect_xml,
			   DBUS_TYPE_INVALID);

  dbus_connection_send(connection, reply, NULL);
  dbus_message_unref(reply);

  return DBUS_HANDLER_RESULT_HANDLED;
}



/* handle dbus create() call */

static DBusHandlerResult
handle_create(DBusConnection *connection, DBusMessage* message)
{
  DBusMessage *reply;
  DBusMessageIter iter_arss, iter_rss, iter_ss;
  char *key, *value;
  char *activity_id = 0;
  int   argc = inst_argc;

  dbus_message_iter_init(message, &iter_arss);
  if (strcmp("a{ss}", dbus_message_iter_get_signature(&iter_arss)))
    {
      reply = dbus_message_new_error(message, 
				     DBUS_ERROR_INVALID_ARGS, 
				     "signature a{ss} expected");
      dbus_connection_send(connection, reply, NULL);
      dbus_message_unref(reply);
      return DBUS_HANDLER_RESULT_HANDLED;
    }

  dbus_message_iter_recurse(&iter_arss, &iter_rss);

  do
    {
      dbus_message_iter_recurse(&iter_rss, &iter_ss);
      dbus_message_iter_get_basic(&iter_ss, &key);
      dbus_message_iter_next(&iter_ss);
      dbus_message_iter_get_basic(&iter_ss, &value); 

      inst_argv[argc++] = key;
      inst_argv[argc++] = value;

      if (!strcmp("activity_id", key))
	activity_id = value;

    } while(dbus_message_iter_next(&iter_rss));

  if (!activity_id)
    {
      reply = dbus_message_new_error(message, 
				     DBUS_ERROR_INVALID_ARGS, 
				     "'activity_id' expected");
      dbus_connection_send(connection, reply, NULL);
      dbus_message_unref(reply);
      return DBUS_HANDLER_RESULT_HANDLED;
    }

  create_instance(argc);

  reply = dbus_message_new_method_return(message);
  dbus_connection_send(connection, reply, NULL);
  dbus_message_unref(reply);

  return DBUS_HANDLER_RESULT_HANDLED;
}



/* activity factory dbus service */

static void
factory_unregistered_func(DBusConnection  *connection,
			  void            *user_data)
{
}


static DBusHandlerResult
factory_message_func(DBusConnection  *connection,
		     DBusMessage     *message,
		     void            *user_data)
{
  if (dbus_message_is_method_call(message,
				  "org.freedesktop.DBus.Introspectable",
				  "Introspect"))
    return handle_introspect(connection, message);
  else if (dbus_message_is_method_call(message,
				       "org.laptop.ActivityFactory",
				       "create"))
    return handle_create(connection, message);
  else
    return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}


static DBusObjectPathVTable
factory_vtable = {
  factory_unregistered_func,
  factory_message_func,
  NULL,
};



/* register service and run main loop */

static char*
dots_to_slashes(char* dotted)
{
    char* slashed = (char*) malloc(strlen(dotted)+2);
    char* p = slashed;
    *p++ = '/';
    strcpy(p, dotted);
    while (*++p) if (*p == '.') *p = '/';
    return slashed;
}


int main(int argc, char **argv)
{
  DBusConnection *connection;
  DBusError error;
  int result;
  int i;
  char* service;
 
  if (argc < 3) 
    {
      printf("Usage: %s org.laptop.MyActivity cmd args\n", argv[0]);
      printf("\twhere cmd will be invoked as\n");
      printf("\tcmd args                           \\\n");
      printf("\t   bundle_id org.laptop.MyActivity \\\n");
      printf("\t   activity_id 123ABC...           \\\n");
      printf("\t   object_id 456DEF...             \\\n");
      printf("\t   pservice_id 789ACE..            \\\n");
      printf("\t   uri file:///path/to/file\n");
      printf("\tas given in the org.laptop.ActivityFactory.create() call\n");
      exit(1);
    }
  prog = argv[0];
  service = argv[1];

  for (i = 2; i<argc; i++)
    inst_argv[inst_argc++] = argv[i];
  inst_argv[inst_argc++] = "bundle_id";
  inst_argv[inst_argc++] = service;
  
  signal(SIGCHLD, sigchld_handler);

  dbus_error_init(&error);

  connection = dbus_bus_get(DBUS_BUS_SESSION, &error);
  if (dbus_error_is_set(&error))
    {
      fprintf(stderr, "%s: could not get bus connection: %s\n", prog, error.message);
      exit(1);
    }

  result = dbus_bus_request_name(connection, 
				 service, 
				 DBUS_NAME_FLAG_DO_NOT_QUEUE, 
				 &error);
  if (dbus_error_is_set(&error))
    {
      fprintf(stderr, "%s: could not aquire name %s: %s\n", prog, service, error.message);
      exit(1);
    }
  if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
    {
      fprintf(stderr, "%s: could not become primary owner of %s\n", prog, service);
      exit(1);
   }
  
  dbus_connection_register_object_path(connection, 
				       dots_to_slashes(service), 
				       &factory_vtable, 
				       NULL);

  while (dbus_connection_read_write_dispatch(connection, -1))
     ;

  _exit(0);
}