23884793f95c9ab18ac20c9929e23de46919d6c8
[modest] / src / modest-mail-operation.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_MAIL_OPERATION_H__
31 #define __MODEST_MAIL_OPERATION_H__
32
33 #include <tny-transport-account.h>
34 #include <tny-folder-store.h>
35 #include <modest-tny-send-queue.h>
36 #include <modest-tny-account-store.h>
37
38 G_BEGIN_DECLS
39
40 /* convenience macros */
41 #define MODEST_TYPE_MAIL_OPERATION             (modest_mail_operation_get_type())
42 #define MODEST_MAIL_OPERATION(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_MAIL_OPERATION,ModestMailOperation))
43 #define MODEST_MAIL_OPERATION_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_MAIL_OPERATION,GObject))
44 #define MODEST_IS_MAIL_OPERATION(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_MAIL_OPERATION))
45 #define MODEST_IS_MAIL_OPERATION_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_MAIL_OPERATION))
46 #define MODEST_MAIL_OPERATION_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_MAIL_OPERATION,ModestMailOperationClass))
47
48 typedef struct _ModestMailOperation      ModestMailOperation;
49 typedef struct _ModestMailOperationClass ModestMailOperationClass;
50
51 /**
52  * ModestMailOperationStatus:
53  *
54  * The state of a mail operation
55  */
56 typedef enum _ModestMailOperationStatus {
57         MODEST_MAIL_OPERATION_STATUS_INVALID,
58         MODEST_MAIL_OPERATION_STATUS_SUCCESS,
59         MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS,
60         MODEST_MAIL_OPERATION_STATUS_FAILED,
61         MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS,
62         MODEST_MAIL_OPERATION_STATUS_CANCELED
63 } ModestMailOperationStatus;
64
65 /**
66  * ModestMailOperationId:
67  *
68  * The id for identifying the type of mail operation
69  */
70 typedef enum {
71         MODEST_MAIL_OPERATION_TYPE_SEND,
72         MODEST_MAIL_OPERATION_TYPE_RECEIVE,
73         MODEST_MAIL_OPERATION_TYPE_SEND_AND_RECEIVE,
74         MODEST_MAIL_OPERATION_TYPE_OPEN,
75         MODEST_MAIL_OPERATION_TYPE_DELETE,
76         MODEST_MAIL_OPERATION_TYPE_INFO,
77         MODEST_MAIL_OPERATION_TYPE_RUN_QUEUE,
78         MODEST_MAIL_OPERATION_TYPE_SYNC_FOLDER,
79         MODEST_MAIL_OPERATION_TYPE_SHUTDOWN,
80         MODEST_MAIL_OPERATION_TYPE_QUEUE_WAKEUP,
81         MODEST_MAIL_OPERATION_TYPE_UPDATE_FOLDER_COUNTS,
82         MODEST_MAIL_OPERATION_TYPE_UNKNOWN,
83 } ModestMailOperationTypeOperation;
84
85 /**
86  * ErrorCheckingUserCallback:
87  *
88  * @mail_op: the current mail operation.
89  * @user_data: generic data passed to user defined function.
90  *
91  * This function implements required actions to performs under error
92  * states.  
93  */
94 typedef void (*ErrorCheckingUserCallback) (ModestMailOperation *mail_op, gpointer user_data);
95
96 /**
97  * ErrorCheckingUserDataDestroyer:
98  *
99  * @user_data: generic data passed to user defined function.
100  *
101  * This function is used to destroy the user_data passed to the error
102  * checking user callback function
103  */
104 typedef void (*ErrorCheckingUserDataDestroyer) (gpointer user_data);
105
106
107 /**
108  * GetMsgAsyncUserCallback:
109  *
110  * @mail_op: the current #ModestMailOperation.
111  * @header: a #TnyHeader summary item.
112  * @msg: a #TnyMsg message retrieved by async operation.
113  * @user_data: generic data passed to user defined function.
114  *
115  * This function will be called after get_msg_cb private function, which is
116  * used as tinymail operation callback. The private function fills private 
117  * fields of mail operation and calls user defined callback if it exists.
118  */
119 typedef void (*GetMsgAsyncUserCallback) (ModestMailOperation *mail_op, 
120                                          TnyHeader *header, 
121                                          gboolean canceled, 
122                                          TnyMsg *msg, 
123                                          GError *err,
124                                          gpointer user_data);
125
126 /**
127  * GetMimePartSizeCallback:
128  *
129  * @mail_op: the current #ModestMailOperation.
130  * @size: size of the attachment
131  * @user_data: generic data passed to user defined function.
132  *
133  */
134 typedef void (*GetMimePartSizeCallback) (ModestMailOperation *mail_op, 
135                                          gssize size,
136                                          gpointer user_data);
137
138 /**
139  * XferMsgsAsyncUserCallback:
140  *
141  * @obj: a #GObject generic object which has created current mail operation.
142  * @new_folder: the new instance of the #TnyFolder that has been transferred
143  * @user_data: generic data passed to user defined function.
144  *
145  * This function will be called after transfer_msgs_cb private function, which is
146  * used as tinymail operation callback. The private function fills private 
147  * fields of mail operation and calls user defined callback if it exists.
148  */
149 typedef void (*XferMsgsAsyncUserCallback) (ModestMailOperation *mail_op, 
150                                            gpointer user_data);
151
152
153 /**
154  * XferFolderAsyncUserCallback:
155  *
156  * @obj: a #GObject generic object which has created current mail operation.
157  * @new_folder: the new instance of the #TnyFolder that has been transferred
158  * @user_data: generic data passed to user defined function.
159  *
160  * This function will be called after transfer_msgs_cb private function, which is
161  * used as tinymail operation callback. The private function fills private 
162  * fields of mail operation and calls user defined callback if it exists.
163  */
164 typedef void (*XferFolderAsyncUserCallback) (ModestMailOperation *mail_op, 
165                                              TnyFolder *new_folder,
166                                              gpointer user_data);
167
168
169 /**
170  * RefreshAsyncUserCallback:
171  *
172  * @mail_op: the current #ModestMailOperation.
173  * @folder: a #TnyFolder which has been refreshed .
174  * @user_data: generic data passed to user defined function.
175  *
176  * This function will be called after refresh_folder_async_cb private function, which is
177  * used as tinymail operation callback. The private function fills private 
178  * fields of mail operation and calls user defined callback if it exists.
179  */
180 typedef void (*RefreshAsyncUserCallback) (ModestMailOperation *mail_op, 
181                                           TnyFolder *folder, 
182                                           gpointer user_data);
183
184 /**
185  * UpdateAccountCallback:
186  *
187  * @self: a #ModestMailOperation
188  * @new_headers: the list of new headers received
189  * @user_data: generic data passed to user defined function.
190  *
191  * This is the callback of the update_account operation. It informs
192  * the caller about the amount of new messages that have been
193  * downloaded
194  */
195 typedef void (*UpdateAccountCallback) (ModestMailOperation *self, 
196                                        TnyList *new_headers,
197                                        gpointer user_data);
198
199 /**
200  * SaveToDraftsCallback:
201  *
202  * @self: a #ModestMailOperation
203  * @saved_draft: the new draft message that has been saved
204  * @user_data: generic data passed to user defined function.
205  *
206  * This is the callback of the save_to_drafts operation. It returns
207  * the newly created msg stored in the Drafts folder
208  */
209 typedef void (*SaveToDraftstCallback) (ModestMailOperation *self, 
210                                        TnyMsg *saved_draft,
211                                        gpointer user_data);
212
213
214 typedef gboolean (*RetrieveAllCallback) (GObject *source,
215                                          guint num_msgs,
216                                          guint limit);
217
218 /**
219  * CreateFolderUserCallback:
220  *
221  * @mail_op: the current #ModestMailOperation.
222  * @folder: a #TnyFolder summary item.
223  * @user_data: generic data passed to user defined function.
224  *
225  * This function will be called after get_msg_cb private function, which is
226  * used as tinymail operation callback. The private function fills private 
227  * fields of mail operation and calls user defined callback if it exists.
228  */
229 typedef void (*CreateFolderUserCallback) (ModestMailOperation *mail_op, 
230                                           TnyFolderStore *parent_folder,
231                                           TnyFolder *new_folder, 
232                                           gpointer user_data);
233
234 /**
235  * SyncFolderCallback:
236  *
237  * @self: a #ModestMailOperation
238  * @folder: the #TnyFolder to sync
239  * @user_data: generic data passed to user defined function.
240  *
241  * This is the callback of the sync_folder operation.
242  */
243 typedef void (*SyncFolderCallback) (ModestMailOperation *self,
244                                     TnyFolder *folder,
245                                     gpointer user_data);
246
247
248 /* This struct represents the internal state of a mail operation in a
249    given time */
250 typedef struct {
251         guint      done;
252         guint      total;
253         gdouble    bytes_done;
254         gdouble    bytes_total;
255         gboolean   finished;
256         ModestMailOperationStatus        status;
257         ModestMailOperationTypeOperation op_type;
258 } ModestMailOperationState;
259
260
261 struct _ModestMailOperation {
262          GObject parent;
263         /* insert public members, if any */
264 };
265
266 struct _ModestMailOperationClass {
267         GObjectClass parent_class;
268
269         /* Signals */
270         void (*progress_changed) (ModestMailOperation *self, ModestMailOperationState *state, gpointer user_data);
271         void (*operation_started) (ModestMailOperation *self, gpointer user_data);
272         void (*operation_finished) (ModestMailOperation *self, gpointer user_data);
273 };
274
275 /* member functions */
276 GType        modest_mail_operation_get_type    (void) G_GNUC_CONST;
277
278 /**
279  * modest_mail_operation_new:
280  * @source: a #GObject which creates this new operation.
281  * 
282  * Creates a new instance of class #ModestMailOperation, using parameters
283  * to initialize its private structure. @source parameter may be NULL.
284  **/
285 ModestMailOperation*    modest_mail_operation_new     (GObject *source);
286
287 /**
288  * modest_mail_operation_new_with_error_handling:
289  * @id: a #ModestMailOperationId identification of operation type.
290  * @source: a #GObject which creates this new operation.
291  * @error_handler: a #ErrorCheckingUserCallback function to performs operations when 
292  * an error occurs.
293  * 
294  * Creates a new instance of class #ModestMailOperation, using parameters
295  * to initialize its private structure. @source parameter may be NULL. 
296  * @error_handler can not be NULL, but it will be returned an mail operation
297  * object without error handling capability.
298  **/
299 ModestMailOperation*    modest_mail_operation_new_with_error_handling     (GObject *source,
300                                                                            ErrorCheckingUserCallback error_handler,
301                                                                            gpointer user_data,
302                                                                            ErrorCheckingUserDataDestroyer error_handler_destroyer);
303 /**
304  * modest_mail_operation_execute_error_handler
305  * @self: a #ModestMailOperation
306  * 
307  * Executes error handler if exists. The error handler is the one that
308  * MUST free the user data passed to the
309  * modest_mail_operation_new_with_error_handling constructor
310  **/
311 void
312 modest_mail_operation_execute_error_handler (ModestMailOperation *self);
313
314 /**
315  * modest_mail_operation_get_type_operation
316  * @self: a #ModestMailOperation
317  * 
318  * Gets the private op_type field of mail operation. This op_type
319  * identifies the class/type of mail operation.
320  **/
321 ModestMailOperationTypeOperation
322 modest_mail_operation_get_type_operation (ModestMailOperation *self);
323
324 /**
325  * modest_mail_operation_is_mine
326  * @self: a #ModestMailOperation
327  * @source: a #GObject to check if it have created @self operation.
328  * 
329  * Check if @source object its owner of @self mail operation.
330  *
331  * returns: TRUE if source its owner, FALSE otherwise.
332  **/
333 gboolean 
334 modest_mail_operation_is_mine (ModestMailOperation *self, 
335                                GObject *me);
336
337 /**
338  * modest_mail_operation_get_source
339  * @self: a #ModestMailOperation
340  *
341  * returns a new reference to the object that created the mail
342  * operation passed to the constructor, or NULL if none. The caller
343  * must free the new reference
344  **/
345 GObject *
346 modest_mail_operation_get_source (ModestMailOperation *self);
347
348 /* fill in other public functions, eg.: */
349
350 /**
351  * modest_mail_operation_send_mail:
352  * @self: a #ModestMailOperation
353  * @transport_account: a non-NULL #TnyTransportAccount
354  * @msg: a non-NULL #TnyMsg
355  * 
356  * Sends and already existing message using the provided
357  * #TnyTransportAccount. This operation is synchronous, so the
358  * #ModestMailOperation should not be added to any
359  * #ModestMailOperationQueue
360   **/
361 void    modest_mail_operation_send_mail       (ModestMailOperation *self,
362                                                TnyTransportAccount *transport_account,
363                                                TnyMsg* msg);
364
365 /**
366  * modest_mail_operation_send_new_mail:
367  * @self: a #ModestMailOperation
368  * @transport_account: a non-NULL #TnyTransportAccount
369  * @draft_msg: a #TnyMsg of the origin draft message, if any
370  * @from: the email address of the mail sender
371  * @to: a non-NULL email address of the mail receiver
372  * @cc: a comma-separated list of email addresses where to send a carbon copy
373  * @bcc: a comma-separated list of email addresses where to send a blind carbon copy
374  * @subject: the subject of the new mail
375  * @plain_body: the plain text body of the new mail.
376  * @html_body: the html version of the body of the new mail. If NULL, the mail will
377  *             be sent with the plain body only.
378  * @attachments_list: a #GList of attachments, each attachment must be a #TnyMimePart
379  * @images_list: a #GList of image attachments, each attachment must be a #TnyMimePart
380  * 
381  * Sends a new mail message using the provided
382  * #TnyTransportAccount. This operation is synchronous, so the
383  * #ModestMailOperation should not be added to any
384  * #ModestMailOperationQueue
385   **/
386 void    modest_mail_operation_send_new_mail   (ModestMailOperation *self,
387                                                TnyTransportAccount *transport_account,
388                                                TnyMsg *draft_msg,
389                                                const gchar *from,
390                                                const gchar *to,
391                                                const gchar *cc,
392                                                const gchar *bcc,
393                                                const gchar *subject,
394                                                const gchar *plain_body,
395                                                const gchar *html_body,
396                                                const GList *attachments_list,
397                                                const GList *images_list,
398                                                const gchar *references,
399                                                const gchar *in_reply_to,
400                                                TnyHeaderFlags priority_flags);
401
402
403 /**
404  * modest_mail_operation_save_to_drafts:
405  * @self: a #ModestMailOperation
406  * @transport_account: a non-NULL #TnyTransportAccount
407  * @draft_msg: the previous draft message, in case it's an update
408  * to an existing draft.
409  * @from: the email address of the mail sender
410  * @to: a non-NULL email address of the mail receiver
411  * @cc: a comma-separated list of email addresses where to send a carbon copy
412  * @bcc: a comma-separated list of email addresses where to send a blind carbon copy
413  * @subject: the subject of the new mail
414  * @plain_body: the plain text body of the new mail.
415  * @html_body: the html version of the body of the new mail. If NULL, the mail will
416  *             be sent with the plain body only.
417  * @attachments_list: a #GList of attachments, each attachment must be a #TnyMimePart
418  * @images_list: a #GList of image attachments, each attachment must be a #TnyMimePart
419  * @callback: the user callback, will be called when the operation finishes
420  * @user_data: data that will be passed to the user callback
421  *
422  * Save a mail message to drafts using the provided
423  * #TnyTransportAccount. This operation is asynchronous.
424  *
425   **/
426 void modest_mail_operation_save_to_drafts   (ModestMailOperation *self,
427                                              TnyTransportAccount *transport_account,
428                                              TnyMsg *draft_msg,
429                                              const gchar *from,
430                                              const gchar *to,
431                                              const gchar *cc,
432                                              const gchar *bcc,
433                                              const gchar *subject,
434                                              const gchar *plain_body,
435                                              const gchar *html_body,
436                                              const GList *attachments_list,
437                                              const GList *images_list,
438                                              TnyHeaderFlags priority_flags,
439                                              const gchar *references,
440                                              const gchar *in_reply_to,
441                                              SaveToDraftstCallback callback,
442                                              gpointer user_data);
443 /**
444  * modest_mail_operation_update_account:
445  * @self: a #ModestMailOperation
446  * @account_name: the id of a Modest account
447  * @poke_all: if TRUE it will also do a poke_status over all folders of the account
448  * @interactive: if TRUE the update account was scheduled by an interactive send receive
449  * 
450  * Asynchronously refreshes the root folders of the given store
451  * account. The caller should add the #ModestMailOperation to a
452  * #ModestMailOperationQueue and then free it. The caller will be
453  * notified by the "progress_changed" signal each time the progress of
454  * the operation changes.
455  *
456  * Example
457  * <informalexample><programlisting>
458  * queue = modest_tny_platform_factory_get_modest_mail_operation_queue_instance (fact)
459  * mail_op = modest_mail_operation_new ();
460  * g_signal_connect (G_OBJECT (mail_op), "progress_changed", G_CALLBACK(on_progress_changed), NULL);
461  * modest_mail_operation_queue_add (queue, mail_op);
462  * modest_mail_operation_update_account (mail_op, account_name)
463  * g_object_unref (G_OBJECT (mail_op));
464  * </programlisting></informalexample>
465  *
466  * Note that the account_name *MUST* be a modest account name, not a
467  * tinymail store account name
468  * 
469  **/
470 void          modest_mail_operation_update_account (ModestMailOperation *self,
471                                                     const gchar *account_name,
472                                                     gboolean poke_all,
473                                                     gboolean interactive,
474                                                     UpdateAccountCallback callback,
475                                                     gpointer user_data);
476
477 /**
478  * modest_mail_operation_update_folder_counts:
479  * @self: a #ModestMailOperation
480  * @account_name: the id of a Modest account
481  * 
482  * Asynchronously refreshes the folder counts of the given store
483  * account.
484  */
485 void          modest_mail_operation_update_folder_counts (ModestMailOperation *self,
486                                                           const gchar *account_name);
487
488 /* Functions that perform store operations */
489
490 /**
491  * modest_mail_operation_create_folder:
492  * @self: a #ModestMailOperation
493  * @parent: the #TnyFolderStore which is the parent of the new folder
494  * @name: the non-NULL new name for the new folder
495  * 
496  * Creates a new folder as a children of a existing one. If the store
497  * account supports subscriptions this method also sets the new folder
498  * as subscribed. This operation is synchronous, so the
499  * #ModestMailOperation should not be added to any
500  * #ModestMailOperationQueue
501  * 
502  * Returns: a newly created #TnyFolder or NULL in case of error.
503  **/
504 void    modest_mail_operation_create_folder  (ModestMailOperation *self,
505                                               TnyFolderStore *parent,
506                                               const gchar *name,
507                                               CreateFolderUserCallback callback,
508                                               gpointer user_data);
509
510 /**
511  * modest_mail_operation_remove_folder:
512  * @self: a #ModestMailOperation
513  * @folder: a #TnyFolder
514  * @remove_to_trash: TRUE to move it to trash or FALSE to delete
515  * permanently
516  * 
517  * Removes a folder. This operation is synchronous, so the
518  * #ModestMailOperation should not be added to any
519  * #ModestMailOperationQueue
520  **/
521 void          modest_mail_operation_remove_folder  (ModestMailOperation *self,
522                                                     TnyFolder *folder,
523                                                     gboolean remove_to_trash);
524
525 /**
526  * modest_mail_operation_rename_folder:
527  * @self: a #ModestMailOperation
528  * @folder: a #TnyFolder
529  * @name: a non-NULL name without "/"
530  * 
531  * Renames a given folder with the provided new name. This operation
532  * is synchronous, so the #ModestMailOperation should not be added to
533  * any #ModestMailOperationQueue
534  **/
535 void          modest_mail_operation_rename_folder  (ModestMailOperation *self,
536                                                     TnyFolder *folder, 
537                                                     const gchar *name,
538                                                     XferFolderAsyncUserCallback user_callback,
539                                                     gpointer user_data);
540
541 /**
542  * modest_mail_operation_xfer_folder:
543  * @self: a #ModestMailOperation
544  * @folder: a #TnyFolder
545  * @parent: the new parent of the folder as #TnyFolderStore
546  * @delete_original: wheter or not delete the original folder
547  * @user_callback: a #XferFolderAsyncUserCallback function to call after tinymail callback execution.
548  * @user_data: generic user data which will be passed to @user_callback function.
549  * 
550  * Sets the given @folder as child of a provided #TnyFolderStore. This
551  * operation also transfers all the messages contained in the folder
552  * and all of his children folders with their messages as well. This
553  * operation is synchronous, so the #ModestMailOperation should not be
554  * added to any #ModestMailOperationQueue.
555  *
556  * If @delete_original is TRUE this function moves the original
557  * folder, if it is FALSE the it just copies it
558  *
559  **/
560 void          modest_mail_operation_xfer_folder    (ModestMailOperation *self,
561                                                     TnyFolder *folder,
562                                                     TnyFolderStore *parent,
563                                                     gboolean delete_original,
564                                                     XferFolderAsyncUserCallback user_callback,
565                                                     gpointer user_data);
566                                                     
567
568 /* Functions that performs msg operations */
569
570 /**
571  * modest_mail_operation_xfer_msgs:
572  * @self: a #ModestMailOperation
573  * @header_list: a #TnyList of #TnyHeader to transfer
574  * @folder: the #TnyFolder where the messages will be transferred
575  * @delete_original: whether or not delete the source messages
576  * @user_callback: a #XferFolderAsyncUserCallback function to call after tinymail callback execution.
577  * @user_data: generic user data which will be passed to @user_callback function.
578  * 
579  * Asynchronously transfers messages from their current folder to
580  * another one. The caller should add the #ModestMailOperation to a
581  * #ModestMailOperationQueue and then free it. The caller will be
582  * notified by the "progress_changed" when the operation is completed.
583  *
584  * If the @delete_original paramter is TRUE then this function moves
585  * the messages between folders, otherwise it copies them.
586  * 
587  * Example
588  * <informalexample><programlisting>
589  * queue = modest_tny_platform_factory_get_modest_mail_operation_queue_instance (fact);
590  * mail_op = modest_mail_operation_new ();
591  * modest_mail_operation_queue_add (queue, mail_op);
592  * g_signal_connect (G_OBJECT (mail_op), "progress_changed", G_CALLBACK(on_progress_changed), queue);
593  *
594  * modest_mail_operation_xfer_msg (mail_op, headers, folder, TRUE);
595  * 
596  * g_object_unref (G_OBJECT (mail_op));
597  * </programlisting></informalexample>
598  *
599  **/
600 void          modest_mail_operation_xfer_msgs      (ModestMailOperation *self,
601                                                     TnyList *header_list, 
602                                                     TnyFolder *folder,
603                                                     gboolean delete_original,
604                                                     XferMsgsAsyncUserCallback user_callback,
605                                                     gpointer user_data);
606
607 /**
608  * modest_mail_operation_remove_msgs:
609  * @self: a #ModestMailOperation
610  * @headers: the #TnyList of the messages to delete
611  * @remove_to_trash: TRUE to move it to trash or FALSE to delete it
612  * permanently
613  * 
614  * Deletes a list of messages.
615  **/
616 void          modest_mail_operation_remove_msgs     (ModestMailOperation *self,
617                                                      TnyList *headers,
618                                                      gboolean remove_to_trash);
619
620 /**
621  * modest_mail_operation_get_msg_and_parts:
622  * @self: a #ModestMailOperation
623  * @header_list: the #TnyHeader of the message to get
624  * @progress_feedback: a #gboolean. If %TRUE, we'll get progress bar feedback.
625  * @user_callback: a #GetMsgAsyncUserCallback function to call after tinymail callback execution.
626  * @user_data: generic user data which will be passed to @user_callback function.
627  * 
628  * Gets a message from header using an user defined @callback function
629  * pased as argument. This operation is asynchronous, so the
630  * #ModestMailOperation should be added to #ModestMailOperationQueue
631  *
632  * This operation also retrieves to cache all parts of the message. This is needed for
633  * forward operation.
634  **/
635 void          modest_mail_operation_get_msg_and_parts     (ModestMailOperation *self,
636                                                            TnyHeader *header,
637                                                            TnyList *parts,
638                                                            gboolean progress_feedback,
639                                                            GetMsgAsyncUserCallback user_callback,
640                                                            gpointer user_data);
641 /**
642  * modest_mail_operation_get_msg:
643  * @self: a #ModestMailOperation
644  * @header_list: the #TnyHeader of the message to get
645  * @progress_feedback: a #gboolean. If %TRUE, we'll get progress bar feedback.
646  * @user_callback: a #GetMsgAsyncUserCallback function to call after tinymail callback execution.
647  * @user_data: generic user data which will be passed to @user_callback function.
648  * 
649  * Gets a message from header using an user defined @callback function
650  * pased as argument. This operation is asynchronous, so the
651  * #ModestMailOperation should be added to #ModestMailOperationQueue
652  **/
653 void          modest_mail_operation_get_msg     (ModestMailOperation *self,
654                                                  TnyHeader *header,
655                                                  gboolean progress_feedback,
656                                                  GetMsgAsyncUserCallback user_callback,
657                                                  gpointer user_data);
658 /**
659  * modest_mail_operation_find_msg:
660  * @self: a #ModestMailOperation
661  * @msg_uid: a string
662  * @progress_feedback: a #gboolean. If %TRUE, we'll get progress bar feedback.
663  * @user_callback: a #GetMsgAsyncUserCallback function to call after tinymail callback execution.
664  * @user_data: generic user data which will be passed to @user_callback function.
665  * 
666  * Gets a message from a uid using an user defined @callback function
667  * pased as argument. This operation is asynchronous, so the
668  * #ModestMailOperation should be added to #ModestMailOperationQueue
669  **/
670 void          modest_mail_operation_find_msg     (ModestMailOperation *self,
671                                                   TnyFolder *folder,
672                                                   const gchar *msg_uid,
673                                                   gboolean progress_feedback,
674                                                   GetMsgAsyncUserCallback user_callback,
675                                                   gpointer user_data);
676
677 /**
678  * modest_mail_operation_get_msgs_full:
679  * @self: a #ModestMailOperation
680  * @header_list: a #TnyList of #TnyHeader objects to get and process
681  * @user_callback: a #TnyGetMsgCallback function to call after tinymail operation execution.
682  * @user_data: user data passed to both, user_callback and update_status_callback.
683  * 
684  * Gets messages from headers list and process hem using @callback function
685  * pased as argument. This operation is asynchronous, so the
686  * #ModestMailOperation should be added to #ModestMailOperationQueue
687  **/
688 void          modest_mail_operation_get_msgs_full   (ModestMailOperation *self,
689                                                      TnyList *headers_list,
690                                                      GetMsgAsyncUserCallback user_callback,
691                                                      gpointer user_data,
692                                                      GDestroyNotify notify);
693
694 /**
695  * modest_mail_operation_run_queue:
696  * @self: a #ModestMailOperation
697  * @queue: a #ModestTnySendQueue
698  *
699  * This mail operation is special. It should be running every time the send queue
700  * is running (after queue-start), and we should notify end of the operation
701  * after queue-end. Then, we should only set this queue on queue-start signal, and
702  * it will clean up the operation (notify end) on queue-end.
703  */
704 void          modest_mail_operation_run_queue       (ModestMailOperation *self,
705                                                      ModestTnySendQueue *queue);
706
707 /**
708  * modest_mail_operation_queue_wakeup:
709  * @self: a #ModestMailOperation
710  * @queue: a #ModestTnySendQueue
711  *
712  * This mail operation is special. It should be running every time the send queue
713  * wakeup is running and we should notify end of the operation
714  * after wakeup has done msg-sent notification.
715  */
716 void          modest_mail_operation_queue_wakeup       (ModestMailOperation *self,
717                                                         ModestTnySendQueue *queue);
718
719 /**
720  * modest_mail_operation_sync_folder:
721  * @self: a #ModestMailOperation
722  * @folder: a #TnyFolder
723  * @expunge: a #gboolean
724  *
725  * mail operation wrapper around tny_folder_sync () method, to keep modest
726  * running while we do that sync operation.
727  */
728 void          modest_mail_operation_sync_folder     (ModestMailOperation *self,
729                                                      TnyFolder *folder,
730                                                      gboolean expunge,
731                                                      SyncFolderCallback callback,
732                                                      gpointer user_data);
733
734 /**
735  * modest_mail_operation_shutdown:
736  * @self: a #ModestMailOperation
737  * @account_store: a #ModestTnyAccountStore
738  *
739  * disconnects all accounts in the account store (doing the proper syncs).
740  */
741 void          modest_mail_operation_shutdown        (ModestMailOperation *self,
742                                                      ModestTnyAccountStore *account_store);
743
744 /* Functions to control mail operations */
745 /**
746  * modest_mail_operation_get_task_done:
747  * @self: a #ModestMailOperation
748  * 
749  * Gets the amount of work done for a given mail operation. This
750  * amount of work is an absolute value.
751  * 
752  * Returns: the amount of work completed
753  **/
754 guint     modest_mail_operation_get_task_done      (ModestMailOperation *self);
755
756 /**
757  * modest_mail_operation_get_task_total:
758  * @self: a #ModestMailOperation
759  * 
760  * Gets the total amount of work that must be done to complete a given
761  * mail operation. This amount of work is an absolute value.
762  * 
763  * Returns: the total required amount of work
764  **/
765 guint     modest_mail_operation_get_task_total     (ModestMailOperation *self);
766
767
768 /**
769  * modest_mail_operation_is_finished:
770  * @self: a #ModestMailOperation
771  * 
772  * Checks if the operation is finished. A #ModestMailOperation is
773  * finished if it's in any of the following states:
774  * MODEST_MAIL_OPERATION_STATUS_SUCCESS,
775  * MODEST_MAIL_OPERATION_STATUS_FAILED,
776  * MODEST_MAIL_OPERATION_STATUS_CANCELED or
777  * MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS
778  * 
779  * Returns: TRUE if the operation is finished, FALSE otherwise
780  **/
781 gboolean  modest_mail_operation_is_finished        (ModestMailOperation *self);
782
783 /**
784  * modest_mail_operation_is_finished:
785  * @self: a #ModestMailOperation
786  * 
787  * Gets the current status of the given mail operation
788  *
789  * Returns: the current status or MODEST_MAIL_OPERATION_STATUS_INVALID in case of error
790  **/
791 ModestMailOperationStatus modest_mail_operation_get_status  (ModestMailOperation *self);
792
793 /**
794  * modest_mail_operation_get_error:
795  * @self: a #ModestMailOperation
796  * 
797  * Gets the error associated to the mail operation if exists
798  * 
799  * Returns: the #GError associated to the #ModestMailOperation if it
800  * exists or NULL otherwise
801  **/
802 const GError*             modest_mail_operation_get_error   (ModestMailOperation *self);
803
804 /**
805  * modest_mail_operation_cancel:
806  * @self: a #ModestMailOperation
807  *
808  * Cancels an active mail operation
809  * 
810  * Returns: TRUE if the operation was succesfully canceled, FALSE otherwise
811  **/
812 gboolean  modest_mail_operation_cancel          (ModestMailOperation *self);
813
814 /**
815  * modest_mail_operation_refresh_folder
816  * @self: a #ModestMailOperation
817  * @folder: the #TnyFolder to refresh
818  * @user_callback: the #RefreshAsyncUserCallback function to be called
819  * after internal refresh async callback was being executed.
820  * 
821  * Refreshes the contents of a folder. After internal callback was executed, 
822  * and all interna mail operation field were filled, if exists, it calls an 
823  * user callback function to make UI operations which must be done after folder
824  * was refreshed.
825  */
826 void      modest_mail_operation_refresh_folder  (ModestMailOperation *self,
827                                                  TnyFolder *folder,
828                                                  RefreshAsyncUserCallback user_callback,
829                                                  gpointer user_data);
830
831 /**
832  * modest_mail_operation_get_account:
833  * @self: a #ModestMailOperation
834  * 
835  * Gets the account associated to a mail operation
836  * 
837  * Returns: the #TnyAccount associated to the #ModestMailOperation
838  **/
839 TnyAccount *modest_mail_operation_get_account   (ModestMailOperation *self);
840
841
842 /**
843  * modest_mail_operation_noop:
844  * @self: a #ModestMailOperation
845  * 
846  * Does nothing except emitting operation-started and
847  * operation-finished
848  **/
849 void modest_mail_operation_noop (ModestMailOperation *self);
850
851
852 /**
853  * modest_mail_operation_to_string:
854  * @self: a #ModestMailOperation
855  * 
856  * get a string representation of the mail operation (for debugging)
857  *
858  * Returns: a newly allocated string
859  **/
860 gchar* modest_mail_operation_to_string (ModestMailOperation *self);
861
862
863 G_END_DECLS
864
865 #endif /* __MODEST_MAIL_OPERATION_H__ */
866