summaryrefslogtreecommitdiff
path: root/examples/OS/Process/process.cpp
blob: e5342f320b7b9e54e10c0cbe9bde437baf824ed8 (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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
// ============================================================================
// $Id$

//
// = LIBRARY
//    examples
// 
// = FILENAME
//    process.cpp
//
// = DESCRIPTION
//    This example tests the ACE_Process.  For more info, check the
//    README file in this directory.
//
// = AUTHOR
//    Tim Harrison.
// 
// ============================================================================

#include "ace/OS.h"
#include "ace/Get_Opt.h"
#include "ace/Process.h"

#if defined (ACE_WIN32)
#define EXEC_NAME "MORE.COM"
const char *DATE_PATH = "date.exe";
const char *LS_PATH = "ls.exe";
#else
#define EXEC_NAME "less"
const char *DATE_PATH = "date";
const char *LS_PATH = "ls";
#endif /* ACE_WIN32 */

static char *executable = EXEC_NAME;
static char *print_file = 0;
static char *environment_string = 0;
static int get_env = 0;
static int run_date = 0;
static int run_ls = 0;
static int run_all = 0;
static int run_setenv = 0;
static int run_tokenizer = 0;

// Parse the command-line arguments and set options.
static int
parse_args (int argc, char **argv)
{
  ACE_Get_Opt get_opt (argc, argv, "dlx:p:e:gastu");
  int c;

  while ((c = get_opt ()) != -1)
    {
    switch (c)
      {
      case 't':
	run_tokenizer = 1;
	break;
      case 's':
	run_setenv = 1;
	break;
      case 'a':
	run_all = 1;
	break;
      case 'd':
	run_date = 1;
	break;
      case 'l':
	run_ls = 1;
	break;
      case 'x':
	executable = get_opt.optarg;
	break;
      case 'p':
	print_file = get_opt.optarg;
	break;
      case 'e':
	environment_string = get_opt.optarg;
	break;
      case 'g':
	get_env = 1;
	break;
      case 'u':
      default:
	ACE_ERROR_RETURN ((LM_ERROR, "Usage:\n"
			   "-d print date\n"
			   "-l run ls\n"
			   "-x <executable=more.com>\n"
			   "-p print <file_name>\n"
			   "-e <env variable message>\n"
			   "-s setenv ACE_PROCESS_ENV and spawn -g\n"
			   "-g get_env ACE_PROCESS_ENV\n"
			   "-t test tokenizer\n"
			   "-a run all (d,l,e \"running\")\n"), -1);
	break;
      }
    }

  return 0;
}

// This shows how to set handles.
static void
test_more (void)
{
  ACE_HANDLE infile = ACE_OS::open (print_file, O_RDONLY);

  if (infile == ACE_INVALID_HANDLE)
    {
      ACE_ERROR ((LM_DEBUG, "%p\n", print_file));
      return;
    }

  ACE_Process new_process;
  ACE_Process_Options options;
  options.command_line (executable);
  options.set_handles (infile);

  if (new_process.spawn (options) == -1)
    {
      int error = ACE_OS::last_error ();
      ACE_ERROR ((LM_ERROR, "%p errno = %d.\n",
		  "test_more", error));
    }

  new_process.wait ();
  ACE_OS::close (infile);

  ACE_DEBUG ((LM_DEBUG, "More succeeded.\n"));
}

// This is a simple usage of ACE_Process.
static void
test_date (void)
{
  ACE_Process_Options options;
  options.command_line (DATE_PATH);

  // Try to create a new process running date.
  ACE_Process new_process;
  if (new_process.spawn (options) == -1)
    {
      int error = ACE_OS::last_error ();
      ACE_ERROR ((LM_ERROR, "%p errno = %d.\n",
		  "test_date", error));
      return;
    }

  new_process.wait ();
  ACE_DEBUG ((LM_DEBUG, "date succeeded.\n"));
}

static void
test_ls (void)
{
  ACE_Process_Options options;
  options.command_line ("%s -al", LS_PATH);
  
  ACE_Process new_process;
  if (new_process.spawn (options) == -1)
    {
      int error = ACE_OS::last_error ();
      ACE_ERROR ((LM_ERROR, "%p errno = %d.\n",
		  "test_ls", error));
    }

  new_process.wait ();
}

#if defined (ACE_WIN32)
// This is just to test the direct usage of CreateProcess.  I use this
// occasionally as a sanity check when ACE_Process breaks.
static void
win32_test_ls (void)
{
  PROCESS_INFORMATION process_info;
  STARTUPINFO startup_info;
  ACE_OS::memset ((void *) &startup_info,
		  0, sizeof startup_info);
  ACE_OS::memset ((void *) &process_info, 
		  0, sizeof process_info);
  startup_info.cb = sizeof (startup_info);
  startup_info.dwFlags = STARTF_USESTDHANDLES;

  ACE_HANDLE std_out = ACE_STDOUT;

  if (!::DuplicateHandle (::GetCurrentProcess(),
			  std_out,
			  ::GetCurrentProcess(),
			  &startup_info.hStdOutput,
			  NULL,
			  TRUE,
			  DUPLICATE_SAME_ACCESS))
    {
      ACE_ERROR ((LM_ERROR, "%p duplicate failed.\n", "test_ls"));
      return;
    }

  BOOL fork_result = 
    ::CreateProcess ("c:\\Utils\\bin\\ls.exe",
		     "-a",
		     NULL, // No process attributes.
		     NULL, // No thread attributes.
		     TRUE, // Allow handle inheritance.
		     NULL, // CREATE_NEW_CONSOLE, // Create a new console window.
		     NULL,
		     0, // Current directory to start in.
		     &startup_info,
		     &process_info);

  ::CloseHandle (startup_info.hStdOutput);

  if (fork_result == 0)
    ACE_ERROR ((LM_ERROR, "%p CreateProcess failed.\n", "test_ls"));
  else
    {
      ::WaitForSingleObject (process_info.hProcess, INFINITE);
      ACE_DEBUG ((LM_ERROR, "ls succeeded.\n"));
    }
}

// This code spawns a new process.  The new process inherits our
// existing environment, plus one more.  This has to be done by hand
// since CreateProcess does not allow us to inherit AND add
// environment variables.
static void
win32_spawn_environment_process (void)
{
  PROCESS_INFORMATION process_info;
  STARTUPINFO startup_info;
  ACE_OS::memset ((void *) &startup_info,
		  0, sizeof startup_info);
  ACE_OS::memset ((void *) &process_info, 
		  0, sizeof process_info);
  startup_info.cb = sizeof (startup_info);
  startup_info.dwFlags = STARTF_USESTDHANDLES;

  ACE_HANDLE std_in = ACE_STDIN;
  ACE_HANDLE std_out = ACE_STDOUT;
  ACE_HANDLE std_err = ACE_STDERR;

  if (!::DuplicateHandle (::GetCurrentProcess(),
			  std_out,
			  ::GetCurrentProcess(),
			  &startup_info.hStdOutput,
			  NULL,
			  TRUE,
			  DUPLICATE_SAME_ACCESS))
    {
      ACE_ERROR ((LM_ERROR, "%p duplicate failed.\n", "spawn_environment_process"));
      return;
    }

  if (!::DuplicateHandle (::GetCurrentProcess(),
			  std_err,
			  ::GetCurrentProcess(),
			  &startup_info.hStdError,
			  NULL,
			  TRUE,
			  DUPLICATE_SAME_ACCESS))
    {
      ACE_ERROR ((LM_ERROR, "%p duplicate failed.\n", "spawn_environment_process"));
      return;
    }

  if (!::DuplicateHandle (::GetCurrentProcess(),
			  std_in,
			  ::GetCurrentProcess(),
			  &startup_info.hStdInput,
			  NULL,
			  TRUE,
			  DUPLICATE_SAME_ACCESS))
    {
      ACE_ERROR ((LM_ERROR, "%p duplicate failed.\n", "spawn_environment_process"));
      return;
    }

  char *existing_environment = ::GetEnvironmentStrings ();
  char environment[10240];
  ACE_OS::sprintf (environment, "ACE_PROCESS_TEST=%s",
		   environment_string);

  int size = 0;
  while (existing_environment[size] != '\0')
    size += ACE_OS::strlen (existing_environment + size) + 1;

  ACE_OS::memcpy (environment + (ACE_OS::strlen (environment) + 1),
		  existing_environment, 
		  size);

  ::FreeEnvironmentStrings (existing_environment);

  BOOL fork_result = 
    ::CreateProcess ("d:\\harrison\\ACE_wrappers\\examples\\OS\\Process\\process.exe",
		     "process -g",
		     NULL, // No process attributes.
		     NULL, // No thread attributes.
		     TRUE, // Allow handle inheritance.
		     NULL, // CREATE_NEW_CONSOLE, // Create a new console window.
		     environment, // Environment.
		     //"d:\\harrison\\ACE_wrappers\\examples\\OS\\Process\\",
		     0,
		     &startup_info,
		     &process_info);

  ::CloseHandle (startup_info.hStdOutput);
  ::CloseHandle (startup_info.hStdError);

  if (fork_result == 0)
    ACE_ERROR ((LM_ERROR, "%p.\n", "spawn_environment_process"));
  else
    {
      ::WaitForSingleObject (process_info.hProcess, INFINITE);
      ACE_DEBUG ((LM_ERROR, "spawn_environment_process succeeded.\n"));
    }
}
#endif

static void
test_setenv (const char *argv0)
{
  ACE_Process_Options options;
  //  options.setenv ("ACE_PROCESS_TEST", "here's a really large number: %u", 0 - 1);
  options.setenv ("ACE_PROCESS_TEST= here's a large number %u", 0 - 1);
  options.setenv ("ACE_PROCESS_TEST2", "ophilli");
  options.command_line ("%s -g", argv0);
  ACE_Process process;
  if (process.spawn (options) == -1)
    {
      ACE_ERROR ((LM_ERROR, "%p.\n", "test_setenv"));
      return;
    }

  process.wait ();
}

// Tests the ACE_Tokenizer.
static void
tokenize (char *buffer)
{
  // This tokenizer will replace all spaces with end-of-string
  // characters and will preserve text between "" and '' pairs.
  ACE_Tokenizer parser (buffer);
  parser.delimiter_replace (' ', '\0');
  parser.preserve_designators ('\"', '\"'); // "  This quote is for emacs
  parser.preserve_designators ('\'', '\'');

  const char *temp;

  while (1)
    {
      temp = parser.next ();
      if (temp == 0)
	break;
      ACE_DEBUG ((LM_DEBUG, temp));
      ACE_DEBUG ((LM_DEBUG, "\n"));
    }
}

int
main (int argc, char *argv[])
{
  if (ACE_LOG_MSG->open (argv[0]) == -1)
    ACE_ERROR ((LM_ERROR, "cannot open logger!!!\n"));

  ACE_DEBUG ((LM_DEBUG, "starting...\n"));

  if (::parse_args (argc, argv) == -1)
    return -1;

  if (run_all)
    {
      ACE_Process_Options options;
      options.command_line ("%s -d -l -s", argv[0]);
      ACE_Process process;
      if (process.spawn (options) == -1)
	ACE_ERROR_RETURN ((LM_ERROR, "%p.\n", "main"), -1);
      process.wait ();
    }

  if (run_date)
    ::test_date ();

  if (run_setenv)
    ::test_setenv (argv[0]);

  if (get_env)
    {
      ACE_DEBUG ((LM_DEBUG, "checking ACE_PROCESS_TEST\n"));
      char *value = ACE_OS::getenv ("ACE_PROCESS_TEST");
      char *value2 = ACE_OS::getenv ("ACE_PROCESS_TEST2");
      ACE_DEBUG ((LM_DEBUG, "ACE_PROCESS_TEST = %s.\n"
		  "ACE_PROCESS_TEST2 = %s.\n",
		  value == 0 ? "no value" : value,
		  value2 == 0 ? "no value" : value2));
    }

  if (run_ls)
    ::test_ls ();

#if defined (ACE_WIN32)
  if (environment_string != 0)
    win32_spawn_environment_process ();
#endif /* ACE_WIN32 */

  if (print_file != 0)
    test_more ();

  if (run_tokenizer)
    {
      tokenize (" -f hi honey -g \"I\'m home\"");
      tokenize ("\"token 1\"\'token 2\'\"token 3\" ");
    }

  return 0;
}