Evaluated more AF feedback -- still some to catch up.
[privoxy.git] / win32.c
1 const char win32_rcs[] = "$Id: win32.c,v 1.9 2002/03/31 17:19:00 jongfoster Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa//current/Attic/win32.c,v $
5  *
6  * Purpose     :  Win32 User Interface initialization and message loop
7  *
8  * Copyright   :  Written by and Copyright (C) 2001-2002 members of
9  *                the Privoxy team.  http://www.privoxy.org/
10  *
11  *                Written by and Copyright (C) 1999 Adam Lock
12  *                <locka@iol.ie>
13  *
14  *                This program is free software; you can redistribute it 
15  *                and/or modify it under the terms of the GNU General
16  *                Public License as published by the Free Software
17  *                Foundation; either version 2 of the License, or (at
18  *                your option) any later version.
19  *
20  *                This program is distributed in the hope that it will
21  *                be useful, but WITHOUT ANY WARRANTY; without even the
22  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
23  *                PARTICULAR PURPOSE.  See the GNU General Public
24  *                License for more details.
25  *
26  *                The GNU General Public License should be included with
27  *                this file.  If not, you can view it at
28  *                http://www.gnu.org/copyleft/gpl.html
29  *                or write to the Free Software Foundation, Inc., 59
30  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  *
32  * Revisions   :
33  *    $Log: win32.c,v $
34  *    Revision 1.9  2002/03/31 17:19:00  jongfoster
35  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
36  *
37  *    Revision 1.8  2002/03/26 22:57:10  jongfoster
38  *    Web server name should begin www.
39  *
40  *    Revision 1.7  2002/03/24 12:03:47  jongfoster
41  *    Name change
42  *
43  *    Revision 1.6  2002/03/16 21:53:28  jongfoster
44  *    VC++ Heap debug option
45  *
46  *    Revision 1.5  2002/03/04 23:47:30  jongfoster
47  *    - Rewritten, simpler command-line pre-parser
48  *    - not using raise(SIGINT) any more
49  *
50  *    Revision 1.4  2001/11/30 21:29:33  jongfoster
51  *    Fixing a warning
52  *
53  *    Revision 1.3  2001/11/16 00:46:31  jongfoster
54  *    Fixing compiler warnings
55  *
56  *    Revision 1.2  2001/07/29 19:32:00  jongfoster
57  *    Renaming _main() [mingw32 only] to real_main(), for ANSI compliance.
58  *
59  *    Revision 1.1.1.1  2001/05/15 13:59:08  oes
60  *    Initial import of version 2.9.3 source tree
61  *
62  *
63  *********************************************************************/
64 \f
65
66 #include "config.h"
67
68 #ifdef _WIN32
69
70 #include <stdio.h>
71
72 #include "project.h"
73 #include "jcc.h"
74 #include "miscutil.h"
75
76 /* Uncomment this if you want to build Win32 as a console app */
77 /* #define _WIN_CONSOLE */
78
79 #ifndef STRICT
80 #define STRICT
81 #endif
82 #include <windows.h>
83
84 #include <stdarg.h>
85 #include <process.h>
86
87 #if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
88 /* Visual C++ Heap debugging */
89 #include <crtdbg.h>
90 #endif /* defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG) */
91
92 #include "win32.h"
93
94 const char win32_h_rcs[] = WIN32_H_VERSION;
95
96 const char win32_blurb[] =
97 "Privoxy version " VERSION " for Windows\n"
98 "Copyright (C) 2000-2002 the Privoxy Team (" HOME_PAGE_URL ")\n"
99 "Based on the Internet Junkbuster by Junkbusters Corp.\n"
100 "This is free software; it may be used and copied under the\n"
101 "GNU General Public License: http://www.gnu.org/copyleft/gpl.html .\n"
102 "This program comes with ABSOLUTELY NO WARRANTY OF ANY KIND.\n"
103
104 #ifdef _WIN_CONSOLE
105
106 int hideConsole     = 0;
107
108 #else
109
110 HINSTANCE g_hInstance;
111 int g_nCmdShow;
112
113 static void  __cdecl UserInterfaceThread(void *);
114
115 #endif
116
117
118 /*********************************************************************
119  *
120  * Function    :  WinMain
121  *
122  * Description :  M$ Windows "main" routine:
123  *                parse the `lpCmdLine' param into main's argc and argv variables,
124  *                start the user interface thread (for the systray window), and
125  *                call main (i.e. patch execution into normal startup).
126  *
127  * Parameters  :
128  *          1  :  hInstance = instance handle of this execution
129  *          2  :  hPrevInstance = instance handle of previous execution
130  *          3  :  lpCmdLine = command line string which started us
131  *          4  :  nCmdShow = window show value (MIN, MAX, NORMAL, etc...)
132  *
133  * Returns     :  `main' never returns, so WinMain will also never return.
134  *
135  *********************************************************************/
136 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
137 {
138    int i;
139    int res;
140    int argc = 1;
141    const char *argv[3];
142    char szModule[MAX_PATH+1];
143 #ifndef _WIN_CONSOLE
144    HANDLE hInitCompleteEvent = NULL;
145 #endif
146
147
148 #if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
149 #if 0
150    /* Visual C++ Heap debugging */
151
152    /* Get current flag*/
153    int tmpFlag = _CrtSetDbgFlag( _CRTDBG_REPORT_FLAG );
154
155    /* Turn on leak-checking bit */
156    tmpFlag |= _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF;
157
158    /* Turn off CRT block checking bit */
159    tmpFlag &= ~(_CRTDBG_CHECK_CRT_DF | _CRTDBG_DELAY_FREE_MEM_DF);
160
161    /* Set flag to the new value */
162    _CrtSetDbgFlag( tmpFlag );
163 #endif
164 #endif /* defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG) */
165
166    /*
167     * Cheat in parsing the command line.  We only ever have at most one
168     * paramater, which may optionally be specified inside double quotes.
169     */
170
171    if (lpCmdLine != NULL)
172    {
173       /* Make writable copy */
174       lpCmdLine = strdup(lpCmdLine);
175    }
176    if (lpCmdLine != NULL)
177    {
178       chomp(lpCmdLine);
179       i = strlen(lpCmdLine);
180       if ((i >= 2) && (lpCmdLine[0] == '\"') && (lpCmdLine[i - 1] == '\"'))
181       {
182          lpCmdLine[i - 1] = '\0';
183          lpCmdLine++;
184       }
185       if (lpCmdLine[0] == '\0')
186       {
187          lpCmdLine = NULL;
188       }
189    }
190
191    GetModuleFileName(hInstance, szModule, MAX_PATH);
192    argv[0] = szModule;
193    argv[1] = lpCmdLine;
194    argv[2] = NULL;
195    argc = ((lpCmdLine != NULL) ? 2 : 1);
196
197 #ifndef _WIN_CONSOLE
198    /* Create a user-interface thread and wait for it to initialise */
199    hInitCompleteEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
200    g_hInstance = hInstance;
201    g_nCmdShow = nCmdShow;
202    _beginthread(UserInterfaceThread, 0, &hInitCompleteEvent);
203    WaitForSingleObject(hInitCompleteEvent, INFINITE);
204    DeleteObject(hInitCompleteEvent);
205 #endif
206
207 #ifdef __MINGW32__
208    res = real_main( argc, argv );
209 #else
210    res = main( argc, argv );
211 #endif
212
213    return res;
214
215 }
216
217 #endif
218
219 /*********************************************************************
220  *
221  * Function    :  InitWin32
222  *
223  * Description :  Initialise windows, setting up the console or windows as appropriate.
224  *
225  * Parameters  :  None
226  *
227  * Returns     :  N/A
228  *
229  *********************************************************************/
230 void InitWin32(void)
231 {
232    WORD wVersionRequested;
233    WSADATA wsaData;
234
235 #ifdef _WIN_CONSOLE
236    SetProcessShutdownParameters(0x100, SHUTDOWN_NORETRY);
237    if (hideConsole)
238    {
239       FreeConsole();
240    }
241 #endif
242    wVersionRequested = MAKEWORD(2, 0);
243    if (WSAStartup(wVersionRequested, &wsaData) != 0)
244    {
245 #ifndef _WIN_CONSOLE
246       MessageBox(NULL, "Cannot initialize WinSock library", "Privoxy Error", 
247          MB_OK | MB_ICONERROR | MB_TASKMODAL | MB_SETFOREGROUND | MB_TOPMOST);  
248 #endif
249       exit(1);
250    }
251
252 }
253
254
255 #ifndef _WIN_CONSOLE
256 #include <signal.h>
257 #include <assert.h>
258
259 #include "win32.h"
260 #include "w32log.h"
261
262
263 /*********************************************************************
264  *
265  * Function    :  UserInterfaceThread
266  *
267  * Description :  User interface thread.  WinMain will wait for us to set
268  *                the hInitCompleteEvent before patching over to `main'.
269  *                This ensures the systray window is active before beginning
270  *                operations.
271  *
272  * Parameters  :
273  *          1  :  pData = pointer to `hInitCompleteEvent'.
274  *
275  * Returns     :  N/A
276  *
277  *********************************************************************/
278 static void __cdecl UserInterfaceThread(void *pData)
279 {
280    MSG msg;
281    HANDLE hInitCompleteEvent = *((HANDLE *) pData);
282
283    /* Initialise */
284    InitLogWindow();
285    SetEvent(hInitCompleteEvent);
286
287    /* Enter a message processing loop */
288    while (GetMessage(&msg, (HWND) NULL, 0, 0))
289    {
290       TranslateMessage(&msg);
291       DispatchMessage(&msg);
292    }
293
294    /* Cleanup */
295    TermLogWindow();
296
297    /* Time to die... */
298    exit(0);
299
300 }
301
302
303 #endif
304
305
306 /*
307   Local Variables:
308   tab-width: 3
309   end:
310 */