]> err.no Git - sope/blob - sope-core/NGStreams/NGStreams/NGStreamPipe.h
Id fixes
[sope] / sope-core / NGStreams / NGStreams / NGStreamPipe.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #ifndef __NGStreams_NGStreamPipe_H__
24 #define __NGStreams_NGStreamPipe_H__
25
26 #import <Foundation/NSFileHandle.h>
27
28 @interface NGStreamPipe : NSPipe < NGStream, NGByteSequenceStream >
29 {
30 @private
31   int          fildes[2];
32   NSFileHandle *fhIn;
33   NSFileHandle *fhOut;
34 }
35
36 + (id)pipe;
37 - (id)init;
38
39 - (NSFileHandle *)fileHandleForReading;
40 - (NSFileHandle *)fileHandleForWriting;
41
42 - (id<NGByteSequenceStream>)streamForReading;
43 - (id<NGOutputStream>)streamForWriting;
44
45 // NGInputStream
46
47 - (unsigned)readBytes:(void *)_buf count:(unsigned)_len;
48 - (BOOL)safeReadBytes:(void *)_buf count:(unsigned)_len;
49
50 - (BOOL)mark;
51 - (BOOL)rewind;
52 - (BOOL)markSupported;
53
54 // NGOutputStream
55
56 - (unsigned)writeBytes:(const void *)_buf count:(unsigned)_len;
57 - (BOOL)safeWriteBytes:(const void *)_buf count:(unsigned)_len;
58 - (BOOL)flush;
59
60 // NGStream
61
62 - (BOOL)close;
63 - (NGStreamMode)mode;
64
65 // Extensions
66
67 - (BOOL)isOpen;
68
69 @end
70
71 #endif /* __NGStreams_NGStreamPipe_H__ */