all changes for dbus-1.2 API (cherry picked from commit 6734a3210a0705e3ab01ee123fac2...
[platform/upstream/dbus.git] / tools / dbus-launch-win.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-launch.c  dbus-launch utility
3  *
4  * Copyright (C) 2007 Ralf Habacker <ralf.habacker@freenet.de>
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23 #include <windows.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <assert.h>
27
28 #if defined __MINGW32__ || (defined _MSC_VER && _MSC_VER <= 1310)
29 /* save string functions version
30 */ 
31 #define errno_t int
32
33 errno_t strcat_s(char *dest, size_t size, char *src) 
34 {
35   assert(strlen(dest) + strlen(src) +1 <= size);
36   strcat(dest,src);
37   return 0;
38 }
39
40 errno_t strcpy_s(char *dest, size_t size, char *src)
41 {
42   assert(strlen(src) +1 <= size);
43   strcpy(dest,src);  
44   return 0;
45 }
46 #endif
47
48 /* TODO: use unicode version as suggested by Tor Lillqvist */
49
50 #define AUTO_ACTIVATE_CONSOLE_WHEN_VERBOSE_MODE 1
51
52 int main(int argc,char **argv)
53 {
54   char dbusDaemonPath[MAX_PATH*2+1];
55   char command[MAX_PATH*2+1];
56   char *p;
57   char *daemon_name;
58   int result;
59   int showConsole = 0;
60   char *s = getenv("DBUS_VERBOSE");
61   int verbose = s && *s != '\0' ? 1 : 0;
62   PROCESS_INFORMATION pi;
63   STARTUPINFO si;
64   HANDLE h; 
65   
66 #ifdef AUTO_ACTIVATE_CONSOLE_WHEN_VERBOSE_MODE
67   if (verbose)
68       showConsole = 1; 
69 #endif
70   GetModuleFileName(NULL,dbusDaemonPath,sizeof(dbusDaemonPath));
71
72 #ifdef _DEBUG
73       daemon_name = "dbus-daemond.exe";
74 #else
75       daemon_name = "dbus-daemon.exe";
76 #endif
77   if ((p = strrchr(dbusDaemonPath,'\\'))) 
78     {
79       *(p+1)= '\0';
80       strcat_s(dbusDaemonPath,sizeof(dbusDaemonPath),daemon_name);
81     }
82   else 
83     {
84       if (verbose)
85           fprintf(stderr,"error: could not extract path from current applications module filename\n");
86       return 1;
87     } 
88   
89   strcpy_s(command,sizeof(command),dbusDaemonPath);
90   strcat_s(command,sizeof(command)," --session");
91   if (verbose)
92       fprintf(stderr,"%s\n",command);
93   
94   memset(&si, 0, sizeof(si));
95   memset(&pi, 0, sizeof(pi));
96   si.cb = sizeof(si);
97
98   result = CreateProcess(NULL, 
99                   command,
100                   0,
101                   0,
102                   TRUE,
103                   (showConsole ? CREATE_NEW_CONSOLE : 0) | NORMAL_PRIORITY_CLASS,
104                   0,
105                   0,
106                   &si,
107                   &pi);
108
109   CloseHandle(pi.hProcess);
110   CloseHandle(pi.hThread);
111
112   if (result == 0) 
113     {
114       if (verbose)
115           fprintf(stderr,"could not start dbus-daemon error=%d",GetLastError());
116       return 4;
117     }
118    
119   return 0;
120 }