summaryrefslogtreecommitdiffstats
path: root/libkpimexchange/core/exchangemonitor.h
blob: b43ba6881c26b4e3a89a45add356b08eaa932829 (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
/*
    This file is part of libkpimexchange
    Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/
#ifndef TDEPIM_EXCHANGE_MONITOR_H
#define TDEPIM_EXCHANGE_MONITOR_H

#include <tqstring.h>
#include <tqmap.h>
//#include <tqwidget.h>
#include <tqhostaddress.h>

#include <kurl.h>
#include <kio/job.h>

#include <libkcal/calendar.h>
#include <libkcal/event.h>

class TQSocketDevice;
class TQSocketNotifier;
class TQTextStream;

namespace KPIM {

class ExchangeAccount;

class ExchangeMonitor : public TQObject {
    Q_OBJECT
  TQ_OBJECT
  public:
    typedef long ID;
    typedef TQValueList<ID> IDList;

    enum { CallBack, Poll };
    enum { Delete,  /** Any:              0   The message or folder subscribed to was deleted. 
                        Folder            1   A message or folder was deleted from the folder.  */
           Move,    /** Any:              0   The message or folder was moved. 
                        Folder            1   A message or folder was moved from or to the folder.  */
           Newmail, /** Mailbox or Folder Any Special new mail update. 
                        Message           Any Not valid - return 400 (Bad Request). */
           Update,  /** Message           0   The message was modified (either properties or body). 
                        Folder            0   Properties of the folder were modified. 
                        Folder            1   A message or sub-folder was created in the folder, copied to 
                                              the folder, moved to or from the folder, deleted from the folder, 
                                              modified in the folder, or the folder properties were modified. */
           UpdateNewMember, /**  Any      0   Not valid - return 400 (Bad Request). 
                        Existing Folder   1   A message or sub-folder was created in the folder, copied to 
                                              the folder, or moved to the folder. */
           Any      /** Message           1   Treat as depth = 0. */
    };

    ExchangeMonitor( ExchangeAccount* account, int pollMode, const TQHostAddress& ownInterface  );
    ~ExchangeMonitor();
    void addWatch( const KURL &url, int mode, int depth );
    void removeWatch( const KURL &url );
    void removeWatch( ID id );

  signals:
    void notify( const TQValueList<long>& IDs, const TQValueList<KURL>& urls );
//    void added( ID id, const KURL& url );
//    void removed( ID id, const KURL& url );

    void error( int result, const TQString& moreInfo );

  private slots:
    void slotSubscribeResult( KIO::Job * );
    void slotUnsubscribeResult( KIO::Job * );
    void slotPollTimer();
    void poll( const IDList& IDs );
    void slotPollResult( KIO::Job * );
    void slotRenewTimer();
    void slotRenewResult( KIO::Job * );
    void slotActivated(int socket);

  private:
//    void init();

    TQMap<ID,KURL> mSubscriptionMap;
    TQSocketDevice *mSocket;
    TQSocketNotifier* mNotifier;
    TQTextStream *mStream;
    ExchangeAccount* mAccount;
    int mSubscriptionLifetime;
    // TQString mSubscriptionId;
    TQTimer* mPollTimer;
    TQTimer* mRenewTimer;
    int mPollMode;
};

}

#endif