blob: 611e7ec938cd926bb1c0b5896ec78471ee8f1877 (
plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
|
//
// MCONNTPFetchArticleOperation.m
// mailcore2
//
// Created by Robert Widmann on 8/13/14.
// Copyright (c) 2014 MailCore. All rights reserved.
//
#import "MCONNTPFetchArticleOperation.h"
#import "MCAsyncNNTP.h"
#import "MCOUtils.h"
#import "MCOOperation+Private.h"
#define nativeType mailcore::NNTPFetchArticleOperation
typedef void (^CompletionType)(NSError *error, NSData * messageData);
@interface MCONNTPFetchArticleOperation ()
- (void) bodyProgress:(unsigned int)current maximum:(unsigned int)maximum;
@end
class MCONNTPFetchArticleOperationCallback : public mailcore::NNTPOperationCallback {
public:
MCONNTPFetchArticleOperationCallback(MCONNTPFetchArticleOperation * op)
{
mOperation = op;
}
virtual ~MCONNTPFetchArticleOperationCallback()
{
}
virtual void bodyProgress(mailcore::NNTPOperation * session, unsigned int current, unsigned int maximum) {
[mOperation bodyProgress:current maximum:maximum];
}
private:
MCONNTPFetchArticleOperation * mOperation;
};
@implementation MCONNTPFetchArticleOperation {
CompletionType _completionBlock;
MCONNTPFetchArticleOperationCallback * _popCallback;
MCONNTPOperationProgressBlock _progress;
}
@synthesize progress = _progress;
+ (void) load
{
MCORegisterClass(self, &typeid(nativeType));
}
+ (NSObject *) mco_objectWithMCObject:(mailcore::Object *)object
{
nativeType * op = (nativeType *) object;
return [[[self alloc] initWithMCOperation:op] autorelease];
}
- (instancetype) initWithMCOperation:(mailcore::Operation *)op
{
self = [super initWithMCOperation:op];
_popCallback = new MCONNTPFetchArticleOperationCallback(self);
((mailcore::NNTPOperation *) op)->setNNTPCallback(_popCallback);
return self;
}
- (void) dealloc
{
[_progress release];
[_completionBlock release];
delete _popCallback;
[super dealloc];
}
- (void) start:(void (^)(NSError *error, NSData * messageData))completionBlock
{
_completionBlock = [completionBlock copy];
[self start];
}
- (void) cancel
{
[_completionBlock release];
_completionBlock = nil;
[super cancel];
}
- (void) operationCompleted
{
if (_completionBlock == NULL)
return;
nativeType *op = MCO_NATIVE_INSTANCE;
if (op->error() == mailcore::ErrorNone) {
_completionBlock(nil, MCO_TO_OBJC(op->data()));
} else {
_completionBlock([NSError mco_errorWithErrorCode:op->error()], nil);
}
[_completionBlock release];
_completionBlock = nil;
}
- (void) bodyProgress:(unsigned int)current maximum:(unsigned int)maximum
{
if (_progress != NULL) {
_progress(current, maximum);
}
}
@end
|