source: main/trunk/greenstone2/runtime-src/src/recpt/os_process.cpp@ 22173

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

Some initial development on the ability to have bi-directional pipes to spawned processes (with no DOS windows being opened up in the case of Windows). Think popen2()

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