source: main/trunk/greenstone2/runtime-src/src/recpt/os_process_unix.h@ 28762

Last change on this file since 28762 was 22183, checked in by davidb, 14 years ago

Further expansion of functionality (and testing) or os_process classes

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1/**********************************************************************
2 *
3 * os_process_unix.h -- Unix version of osprocess. See os_process.h
4 * for more details
5 *
6 * Copyright (C) 2010 The New Zealand Digital Library Project
7 *
8 * A component of the Greenstone digital library software
9 * from the New Zealand Digital Library Project at the
10 * University of Waikato, New Zealand.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *********************************************************************/
27
28
29#ifndef OS_PROCESS_UNIX_H
30#define OS_PROCESS_UNIX_H
31
32#ifndef __WIN32__ // i.e. Unix
33
34#include "os_process.h"
35
36class osprocessunix : public osprocess
37{
38
39 public:
40 osprocessunix(OSProcessPipeMode mode,
41 char* prog_name, char* argv[]=NULL, char* envp[]=NULL);
42 virtual ~osprocessunix();
43
44 virtual int read(char* buffer, const int buffer_len);
45 virtual int write(char* buffer, const int buffer_len);
46
47 virtual void wait();
48
49 virtual bool close_write_pipe(OSProcessWarnStatus warn_status=withWarning);
50 virtual bool close_read_pipe(OSProcessWarnStatus warn_status=withWarning);
51
52 protected:
53
54 static const int READ_PIPE_INDEX=0;
55 static const int WRITE_PIPE_INDEX=1;
56
57 static const int FD_STDIN=0;
58 static const int FD_STDOUT=1;
59 static const int FD_STDERR=2;
60
61 pid_t pid_;
62
63 int child_stdin_write_;
64 int child_stdout_read_;
65};
66
67#endif
68
69#endif
70
Note: See TracBrowser for help on using the repository browser.