-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAxMailChecker.h
154 lines (128 loc) · 5.5 KB
/
AxMailChecker.h
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#ifndef __AxMailChecker_H__
#define __AxMailChecker_H__
//=============================================================================
/*
* See the file README in the main directory for a description of
* this software, copyright information, and how to reach the author.
*
* Author: alex
* Date: 26.12.2003
*
* Last modfied:
* $Author: alex $
* $Date: 2013-03-20 20:33:18 +0100 (Mi, 20 Mär 2013) $
*/
//=============================================================================
//=============================================================================
// includes
//=============================================================================
//----- qt --------------------------------------------------------------------
//----- CORBA -----------------------------------------------------------------
//----- C++ -------------------------------------------------------------------
#include <map>
//----- C ---------------------------------------------------------------------
//----- AxLib -----------------------------------------------------------------
#include <Ax/Mail/Globals.h>
#include <Ax/Vdr/Thread.h>
//----- local -----------------------------------------------------------------
//----- vdr -------------------------------------------------------------------
//----- local -----------------------------------------------------------------
//=============================================================================
// forward declarations
//=============================================================================
class AxPluginSettings;
namespace Ax {
namespace Mail {
class MailBox;
}
}
//=============================================================================
// forward declarations
//=============================================================================
class AxPluginMailBox;
//=============================================================================
// class AxMailChecker
//=============================================================================
class AxMailChecker : public Ax::Vdr::Thread
{
//-------------------------------------------------------------------------
// typedefs
//-------------------------------------------------------------------------
typedef Ax::Vdr::Thread PARENT;
public:
//-------------------------------------------------------------------------
// enum
//-------------------------------------------------------------------------
enum MCState
{
MC_STOP ///< thread not active
, MC_SLEEP ///< sleeping between query-cycles
, MC_QUERY ///< requesting status of Mailbox
, MC_ASK ///< asking/showing status-message
};
//-------------------------------------------------------------------------
// AxMailChecker()
//-------------------------------------------------------------------------
AxMailChecker(AxPluginMailBox *thePlugin);
//-------------------------------------------------------------------------
// ~AxMailChecker()
//-------------------------------------------------------------------------
~AxMailChecker();
//-------------------------------------------------------------------------
// startChecking()
//-------------------------------------------------------------------------
bool startChecking();
//-------------------------------------------------------------------------
// stopChecking()
//-------------------------------------------------------------------------
void stopChecking();
//-------------------------------------------------------------------------
// getState()
//-------------------------------------------------------------------------
MCState getState();
protected:
//-------------------------------------------------------------------------
// setState()
//-------------------------------------------------------------------------
void setState(MCState theState);
//-------------------------------------------------------------------------
// Action()
//-------------------------------------------------------------------------
virtual void Action();
//-------------------------------------------------------------------------
// checkMailBox()
//-------------------------------------------------------------------------
/** request the mutex and check one mailbox.
*
* @returns true of checked ok
*/
bool checkMailBox(Ax::Mail::MailFolder *theFolder, bool fForceStartExternal, bool &fAbortThread);
public:
//-------------------------------------------------------------------------
// attributes
//-------------------------------------------------------------------------
/** Plugin
*/
AxPluginMailBox *myPlugin;
/** time to display the osd-message "new mail in..."
*/
int myOSDMessageTime;
/** Plugin settings
*/
const AxPluginSettings &myPluginSettings;
/** Mutex is locked during a mail-check.
* So if main thread want's to set fExit, it first requests the mutex
* (which gives the thread the chance to finish the current mailbox)
* and sets fExit afterwards
*/
cMutex myCheckMutex;
/** Dictionary: which pointer has new mails and the user didn't press
* kOk or kBack.
*/
std::map<Ax::Mail::MailFolder *, bool> myAskAgain;
/** state of this thread and mutex to lock the member
*/
cMutex myStateMutex;
MCState myState;
}; // class AxSettings
#endif