version 1.4.39b
[polyglot.git] / pipex.h
1 #ifndef PIPEX_H
2 #define PIPEX_H
3 #ifdef _WIN32
4
5 // WIN32 part
6
7 // includes
8
9 #include <windows.h>
10 #include <stdio.h>
11 #include "util.h"
12
13 // defines
14
15 #define PIPEX_EOF (1<<0)
16 #define PIPEX_ACTIVE (1<<1)
17
18 // This should be bigger than the maximum length of an engine output or GUI
19 // input line.
20
21 #define LINE_INPUT_MAX_CHAR 4096
22
23 // types
24
25 typedef struct {
26     HANDLE hProcess;
27     HANDLE hEvent;
28     HANDLE hInput, hOutput;
29     FILE *fpInput;
30     HANDLE hThread;
31     BOOL bConsole;
32     BOOL bPipe;
33     CRITICAL_SECTION CriticalSection;
34     volatile DWORD state;
35     volatile char * lpFeedEnd;
36     volatile int nReadEnd;
37     char lpBuffer[LINE_INPUT_MAX_CHAR];
38     char lpReadBuffer[LINE_INPUT_MAX_CHAR];
39     char szWriteBuffer[LINE_INPUT_MAX_CHAR];
40     DWORD dwWriteIndex;
41     const char *name;
42
43 } pipex_t;
44
45 #else
46
47 // POSIX part
48
49 // includes
50
51 #include <sys/types.h>
52 #include <unistd.h>
53 #include <sys/time.h>
54 #include <sys/resource.h>
55
56
57 #include "io.h"
58 #include "util.h"
59
60 // defines
61
62 #define PIPEX_EOF (1<<0)
63 #define PIPEX_ACTIVE (1<<1)
64
65 // types
66
67 typedef struct {
68     io_t io[1];
69     pid_t pid;
70     int state;
71 } pipex_t;
72
73 #endif
74
75 // part common to WIN32 and POSIX
76
77 // functions 
78
79 extern void pipex_open         (pipex_t *pipex, 
80                                 const char *name,
81                                 const char *working_dir,
82                                 const char *command);
83 extern bool pipex_active       (pipex_t *pipex);
84 extern bool pipex_readln       (pipex_t *pipex, char *string);
85 extern bool pipex_readln_nb    (pipex_t *pipex, char *string);
86 extern void pipex_writeln      (pipex_t *pipex, const char *string);
87 extern void pipex_write        (pipex_t *pipex, const char *string);
88 extern bool pipex_eof          (pipex_t *pipex);
89 extern void pipex_send_eof     (pipex_t *pipex);
90 extern void pipex_exit         (pipex_t *pipex);
91 extern void pipex_set_priority (pipex_t *pipex, int value);
92 extern void pipex_set_affinity (pipex_t *pipex, int value);
93 extern void pipex_wait_event   (pipex_t *pipex[]);
94
95 // pipex
96
97 #endif