ed7a1c5ff64cac2d9afd6d2366c27054c102d66c
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Messaging / ScopedMail.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  * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #ifndef WAC_MESSAGING_SCOPEDMAIL_H_
21 #define WAC_MESSAGING_SCOPEDMAIL_H_
22
23 #include <dpl/log/log.h>
24 #include <dpl/scoped_ptr.h>
25 #include <emf-types.h>
26 #include <Emf_Mapi_Message.h>
27
28 namespace WrtDeviceApis {
29 namespace Messaging {
30 struct ScopedMailPolicy
31 {
32     typedef emf_mail_t* Type;
33
34     static Type NullValue()
35     {
36         return NULL;
37     }
38
39     static void Destroy(Type mail)
40     {
41         if (NullValue() != mail) {
42             int error = email_free_mail(&mail, 1);
43             if (EMF_ERROR_NONE != error) {
44                 LogError("Failed to destroy mail: " << error);
45             }
46         }
47     }
48 };
49
50 typedef DPL::ScopedPtr<emf_mail_t, ScopedMailPolicy> ScopedMail;
51 }
52 }
53
54 #endif