File: CWIMAPFolder.h

package info (click to toggle)
pantomime1.2 1.2.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,012 kB
  • ctags: 398
  • sloc: objc: 21,201; ansic: 510; cpp: 22; makefile: 21; sh: 4
file content (177 lines) | stat: -rw-r--r-- 6,646 bytes parent folder | download | duplicates (5)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
**  CWIMAPFolder.h
**
**  Copyright (c) 2001-2006
**
**  Author: Ludovic Marcotte <ludovic@Sophos.ca>
**          
**  This library is free software; you can redistribute it and/or
**  modify it under the terms of the GNU Lesser General Public
**  License as published by the Free Software Foundation; either
**  version 2.1 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
**  Lesser General Public License for more details.
**  
**  You should have received a copy of the GNU Lesser General Public
**  License along with this library; if not, write to the Free Software
**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#ifndef _Pantomime_H_CWIMAPFolder
#define _Pantomime_H_CWIMAPFolder

#include <Pantomime/CWFolder.h>

#import <Foundation/NSArray.h>
#import <Foundation/NSData.h>
#import <Foundation/NSString.h>
#import <Foundation/NSCalendarDate.h>

#include <Pantomime/CWConstants.h>

/*!
  @const PantomimeMessagesCopyCompleted
  @discussion This notification is posted when CWIMAPFolder: -copyMessages:
              toFolder: has successfully completed. -messagesCopyCompleted:
	      is also called on the delegate, if any.
*/
extern NSString* PantomimeMessagesCopyCompleted;

/*!
  @const PantomimeMessagesCopyFailed
  @discussion This notification is posted when CWIMAPFolder: -copyMessages:
              toFolder: has failed to complete. -messagesCopyFailed:
	      is also called on the delegate, if any.
*/
extern NSString* PantomimeMessagesCopyFailed;

/*!
  @const PantomimeMessageStoreCompleted
  @discussion This notification is posted when CWIMAPFolder: -setFlags:
              messages: has successfully completed. -messageStoreCompleted:
	      is also called on the delegate, if any.
*/
extern NSString* PantomimeMessageStoreCompleted;

/*!
  @const PantomimeMessageStoreFailed
  @discussion This notification is posted when CWIMAPFolder: -setFlags:
              messages: has failed to completed. -messageStoreFailed:
	      is also called on the delegate, if any.
*/
extern NSString* PantomimeMessageStoreFailed;


/*!
  @class CWIMAPFolder
  @discussion This class, which extends the CWFolder class, is used to
              implement IMAP-specific features such as server-side
	      operations for copying messages between mailboxes.
*/
@interface CWIMAPFolder : CWFolder
{
  @private
    unsigned int _uid_validity;
    BOOL _selected;
}

/*!
  @method initWithName: mode:
  @discussion This method is used to initialize the receiver
              with <i>theName</i> using <i>theMode</i>. Normally,
	      you should not invoke this method directly.
	      You must rather use one of CWIMAPStore's folderForName: ...
	      method.
  @param theName The name of the folder.
  @param theMode The mode to use. Accepted values are part of the
                 PantomimeFolderMode enum.
  @result An CWIMAPFolder instance, nil on error.
*/
- (id) initWithName: (NSString *) theName
               mode: (PantomimeFolderMode) theMode;

/*!
  @method appendMessageFromRawSource:flags:internalDate
  @discussion This method is used to append a message from its raw source
              representation (RFC2822 compliant) to the underlying store. It differs from
	      -appendMessageFromRawSource:flags: in that this method supplies the
	      given date to the server to use as the INTERNALDATE. Not supplying this
	      date will cause some servers and clients to report the date of the message
	      as the current date and time, rather than that specified in the Received
	      header.
  @param theData The raw representation of the message to append.
  @param theFlags The flags of the message, nil if no flags need to be kept.
  @param theDate The INTERNALDATE of the message, or nil to use the current date.
*/
- (void) appendMessageFromRawSource: (NSData *) theData
                              flags:(CWFlags *) theFlags
                       internalDate: (NSCalendarDate *) theDate;

/*!
  @method copyMessages: toFolder:
  @discussion This method copies the messages in <i>theMessages</i> array from
              the receiver to the destination folder's name, <i>theFolder</i>.
	      On success, this method posts a PantomimeMessagesCopyCompleted notification
	      (and calls -messagesCopyCompleted: on the delegate, if any). On failure,
	      it posts a PantomimeMessagesCopyFailed notification (and calls
	      -messagesCopyFailed: on the delegate, if any). This method is
	      fully asynchronous.
  @param theMessages The messages to copy.
  @param theFolder The name of the target folder. The name must include
                   hierarchy separators if the target folder is a subfolder.
*/
- (void) copyMessages: (NSArray *) theMessages
             toFolder: (NSString *) theFolder;

/*!
  @method prefetch
  @discussion This method is used to cache part of the message headers
              from the IMAP server. On completion, it posts the PantomimeFolderPrefetchCompleted
	      notification (and calls -folderPrefetchCompleted: on the delegate, if any).
	      This method is fully asynchronous.
*/
- (void) prefetch;

/*!
  @method UIDValidity
  @discussion This method is used to obtain the UID validity of an IMAP folder.
              Refer to "2.3.1.1. Unique Identifier (UID) Message Attribute" of
	      RFC 3501 for a detailed description of this parameter.
  @result The UID validity of the folder.
*/
- (unsigned int) UIDValidity;

/*!
  @method setUIDValidity:
  @discussion This method is used to set the UID validity of the receiver.
              If the receiver has a cache (instance of CWIMAPCacheManager) and
	      the UID validity of its cache differs from <i>theUIDValidity</i>,
	      all cache entries are invalidated.
  @param theUIDValidity The UID validity value.
*/
- (void) setUIDValidity: (unsigned int) theUIDValidity;

/*!
  @method selected
  @discussion This method is used to verify if the folder is in
              a selected state.
  @result YES if it is in a selected state, NO otherwise.
*/
- (BOOL) selected;

/*!
  @method setSelected:
  @discussion This method is used to specify if the folder is in
              a selected state or not. You should never call
	      this method directly. Instead, call IMAPStore:
	      -folderForName: select:.
  @param theBOOL YES if it is in a selected state, NO otherwise.
*/
- (void) setSelected: (BOOL) theBOOL;

@end

#endif // _Pantomime_H_CWIMAPFolder