Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / Tizen / Messaging / EmailService.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16
17 /**
18  * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
19  */
20
21 #ifndef TIZEN_MESSAGING_EMAILSERVICE_H_
22 #define TIZEN_MESSAGING_EMAILSERVICE_H_
23
24 #include <cstring>
25 #include <cstdlib>
26 #include <new>
27
28 #include <emf-types.h>
29
30 #include <API/Messaging/EmailAccountInfo.h>
31
32 namespace TizenApis {
33 namespace Platform {
34 namespace Messaging {
35
36 namespace EmailService {
37 template<typename T>
38 T* alloc()
39 {
40     T* result = static_cast<T*>(::malloc(sizeof(T)));
41     if (NULL == result) {
42         throw std::bad_alloc();
43     }
44     ::memset(result, 0, sizeof(*result));
45     return result;
46 }
47
48 emf_mail_t* createMail(const Api::Messaging::EmailAccountInfo& account);
49
50 emf_mail_t* readMail(int accountId,
51         int mailId);
52
53 emf_mailbox_t* getMailboxByType(int accountId,
54         emf_mailbox_type_e type);
55
56 int addMailToMailbox(emf_mail_t* mail,
57         emf_mailbox_t* mailbox);
58
59 void deleteMail(int accountId,
60         int mailId);
61
62 void freeAttachment(emf_attachment_info_t* attachment);
63
64 emf_mailbox_t* createMailbox(int accountId,
65         const char* name);
66
67 emf_mail_t* cloneMail(const emf_mail_t* mail);
68
69 emf_mailbox_t* getMailboxByMailId(int accountId,
70         int mailId);
71
72 void updateSeenFlag(int accountId, int mailId, bool isReadChangeStatus);
73
74 }
75 }
76 }
77 }
78 #endif