aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/imap/MCIMAPIdleOperation.cc
blob: f10518f5f3ae4f0242eb5bf75c04f332dca5f343 (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
//
//  IMAPIdleOperation.cc
//  mailcore2
//
//  Created by DINH Viêt Hoà on 1/12/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#include "MCIMAPIdleOperation.h"

#include "MCIMAPSession.h"
#include "MCIMAPAsyncConnection.h"

using namespace mailcore;

IMAPIdleOperation::IMAPIdleOperation()
{
    mLastKnownUid = 0;
    mSetupSuccess = false;
}

IMAPIdleOperation::~IMAPIdleOperation()
{
}

void IMAPIdleOperation::setLastKnownUID(uint32_t uid)
{
    mLastKnownUid = uid;
}

uint32_t IMAPIdleOperation::lastKnownUID()
{
    return mLastKnownUid;
}

void IMAPIdleOperation::prepare()
{
    mSetupSuccess = session()->session()->setupIdle();
}

void IMAPIdleOperation::unprepare()
{
    if (mSetupSuccess) {
        session()->session()->unsetupIdle();
    }
}

void IMAPIdleOperation::main()
{
    ErrorCode error;
    session()->session()->selectIfNeeded(folder(), &error);
	if (error != ErrorNone) {
        setError(error);
        return;
    }

    performMethodOnMainThread((Object::Method) &IMAPIdleOperation::prepare, NULL, true);
    
    if (!mSetupSuccess) {
        return;
    }
    
    session()->session()->idle(folder(), mLastKnownUid, &error);
    setError(error);
    
    performMethodOnMainThread((Object::Method) &IMAPIdleOperation::unprepare, NULL, true);
}

void IMAPIdleOperation::interruptIdle()
{
    if (mSetupSuccess) {
        session()->session()->interruptIdle();
    }
}