tools/dbus-launch-win.c: TODO++ (cherry picked from commit 0f5dbec6407975d6a93fbb2cbc...
[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 <mbstring.h>
27 #include <assert.h>
28
29 #if defined __MINGW32__ || (defined _MSC_VER && _MSC_VER <= 1310)
30 /* save string functions version
31 */ 
32 #define errno_t int
33
34 errno_t strcat_s(char *dest, size_t size, char *src) 
35 {
36   assert(strlen(dest) + strlen(src) +1 <= size);
37   strcat(dest,src);
38   return 0;
39 }
40
41 errno_t strcpy_s(char *dest, size_t size, char *src)
42 {
43   assert(strlen(src) +1 <= size);
44   strcpy(dest,src);  
45   return 0;
46 }
47 #endif
48
49 /* TODO: Use Unicode APIs */
50
51 /* TODO: This Windows version of dbus-launch is curretly rather
52  * pointless as it doesn't take the same command-line options as the
53  * UNIX dbus-launch does. A main point of the dbus-launch command is
54  * to pass it for instance a --config-file option to make the started
55  * dbus-daemon use that config file.
56  *
57  * This version also doesn't print out any information, which is a
58  * main point of the UNIX one. It should at least support the
59  * --sh-syntax option, and maybe also a --cmd-syntax to print out the
60  * variable settings in cmd.exe syntax?
61  */
62
63 #define AUTO_ACTIVATE_CONSOLE_WHEN_VERBOSE_MODE 1
64
65 int main(int argc,char **argv)
66 {
67   char dbusDaemonPath[MAX_PATH*2+1];
68   char command[MAX_PATH*2+1];
69   char *p;
70   char *daemon_name;
71   int result;
72   int showConsole = 0;
73   char *s = getenv("DBUS_VERBOSE");
74   int verbose = s && *s != '\0' ? 1 : 0;
75   PROCESS_INFORMATION pi;
76   STARTUPINFO si;
77   HANDLE h; 
78   
79 #ifdef AUTO_ACTIVATE_CONSOLE_WHEN_VERBOSE_MODE
80   if (verbose)
81       showConsole = 1; 
82 #endif
83   GetModuleFileName(NULL,dbusDaemonPath,sizeof(dbusDaemonPath));
84
85 #ifdef _DEBUG
86       daemon_name = "dbus-daemond.exe";
87 #else
88       daemon_name = "dbus-daemon.exe";
89 #endif
90   if ((p = _mbsrchr (dbusDaemonPath, '\\'))) 
91     {
92       *(p+1)= '\0';
93       strcat_s(dbusDaemonPath,sizeof(dbusDaemonPath),daemon_name);
94     }
95   else 
96     {
97       if (verbose)
98           fprintf(stderr,"error: could not extract path from current applications module filename\n");
99       return 1;
100     } 
101   
102   strcpy_s(command,sizeof(command),dbusDaemonPath);
103   strcat_s(command,sizeof(command)," --session");
104   if (verbose)
105       fprintf(stderr,"%s\n",command);
106   
107   memset(&si, 0, sizeof(si));
108   memset(&pi, 0, sizeof(pi));
109   si.cb = sizeof(si);
110
111   result = CreateProcess(NULL, 
112                   command,
113                   0,
114                   0,
115                   TRUE,
116                   (showConsole ? CREATE_NEW_CONSOLE : 0) | NORMAL_PRIORITY_CLASS,
117                   0,
118                   0,
119                   &si,
120                   &pi);
121
122   CloseHandle(pi.hProcess);
123   CloseHandle(pi.hThread);
124
125   if (result == 0) 
126     {
127       if (verbose)
128           fprintf(stderr, "Could not start dbus-daemon error=%d",GetLastError());
129       return 4;
130     }
131    
132   return 0;
133 }