wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Messaging / ScopedMail.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef TIZEN_MESSAGING_SCOPEDMAIL_H_
19 #define TIZEN_MESSAGING_SCOPEDMAIL_H_
20
21 #include <dpl/scoped_ptr.h>
22 #include <email-types.h>
23 #include <email-api-mail.h>
24 #include <Logger.h>
25
26 namespace DeviceAPI {
27 namespace Messaging {
28
29 struct ScopedMailPolicy
30 {
31     typedef email_mail_data_t* Type;
32
33     static Type NullValue()
34     {
35         LoggerD("NullValue");
36         return NULL;
37     }
38
39     static void Destroy(Type mail)
40     {
41            LoggerD("Destroy");
42         if (NullValue() != mail) {
43                  LoggerD("email_free_mail_data");
44             int error = email_free_mail_data(&mail, 1);
45             if (EMAIL_ERROR_NONE != error) {
46                 LoggerE("Failed to destroy mail: " << error);
47             }
48         }
49     }
50 };
51
52 typedef DPL::ScopedPtr<email_mail_data_t, ScopedMailPolicy> ScopedMail;
53 }
54 }
55 #endif