-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSWBufferedPipe.m
104 lines (78 loc) · 2.31 KB
/
SWBufferedPipe.m
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
//
// SWBufferedPipe.m
// This file is part of the "SWApplicationSupport" project, and is distributed under the MIT License.
//
// Created by Samuel Williams on 29/03/08.
// Copyright 2008 Samuel Williams. All rights reserved.
//
#import "SWBufferedPipe.h"
@interface SWBufferedPipe(Private)
- (void) _setupPipe: (NSPipe *) pipe;
- (void) _dataAvailable: (NSNotification *)note;
- (void) _dataFinished: (NSNotification*)note;
@end
@implementation SWBufferedPipe
@synthesize pipe, data, delegate;
- (id) init
{
self = [super init];
if (self != nil) {
[self _setupPipe:[NSPipe pipe]];
}
return self;
}
- (id) initWithPipe: (NSPipe *)newPipe;
{
self = [super init];
if (self != nil) {
[self _setupPipe:newPipe];
}
return self;
}
- (void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[data release];
data = nil;
[pipe release];
pipe = nil;
[super dealloc];
}
- (void) _setupPipe: (NSPipe *)newPipe
{
data = [[NSMutableData alloc] init];
pipe = [newPipe retain];
handle = [pipe fileHandleForReading];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_dataAvailable:) name:NSFileHandleReadCompletionNotification object:handle];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_dataFinished:) name:NSFileHandleReadToEndOfFileCompletionNotification object:handle];
}
- (void) readInBackgroundAndNotify
{
[handle readInBackgroundAndNotify];
}
- (void) readToEndOfFileInBackgroundAndNotify
{
[handle readToEndOfFileInBackgroundAndNotify];
}
- (void) _dataAvailable: (NSNotification *)note
{
NSData * readData = [[note userInfo] objectForKey:NSFileHandleNotificationDataItem];
if ([readData length] > 0) {
[data appendData:readData];
if (delegate && [delegate respondsToSelector:@selector(bufferedPipe:dataAvailable:)]) {
[delegate bufferedPipe:self dataAvailable:readData];
}
[[pipe fileHandleForReading] readInBackgroundAndNotify];
}
}
- (void) _dataFinished: (NSNotification*)note
{
NSData * readData = [[note userInfo] objectForKey:NSFileHandleNotificationDataItem];
if ([readData length] > 0) {
[data appendData:readData];
if (delegate && [delegate respondsToSelector:@selector(bufferedPipe:dataFinished:)]) {
[delegate bufferedPipe:self dataFinished:data];
}
}
}
@end