aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/nntp/MCONNTPOperation.mm
blob: 862b52591cba0ed8eedfed3ded0ceff4ccb5604b (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
//
//  MCONNTPOperation.m
//  mailcore2
//
//  Created by Robert Widmann on 8/13/14.
//  Copyright (c) 2014 MailCore. All rights reserved.
//

#import "MCONNTPOperation.h"

#include "MCAsyncNNTP.h"

#import "MCOUtils.h"
#import "MCOOperation+Private.h"
#import "MCONNTPSession.h"

typedef void (^CompletionType)(NSError *error);

@implementation MCONNTPOperation {
    CompletionType _completionBlock;
    MCONNTPSession * _session;
}

#define nativeType mailcore::NNTPOperation

- (void) dealloc
{
    [_session release];
    [_completionBlock release];
    [super dealloc];
}

- (void)start:(void (^)(NSError *error))completionBlock {
    _completionBlock = [completionBlock copy];
    [self start];
}

- (void)operationCompleted {
    if (_completionBlock == NULL)
        return;
    
    NSError * error = [NSError mco_errorWithErrorCode:MCO_NATIVE_INSTANCE->error()];
    _completionBlock(error);
    [_completionBlock release];
    _completionBlock = nil;
}

- (void) setSession:(MCONNTPSession *)session
{
    [_session release];
    _session = [session retain];
}

- (MCONNTPSession *) session
{
    return _session;
}

@end