[content] Add impl classes for ContentInfo
[platform/framework/native/content.git] / src / FCntImageContentInfo.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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  * @file                FCntImageContentInfo.cpp
18  * @brief               This is the implementation file for the %ImageContentInfo class.
19  *
20  * This file contains implementation of the %ImageContentInfo class.
21  */
22
23 #include <FBaseSysLog.h>
24 #include <FCntImageContentInfo.h>
25 #include "FCnt_ImageContentInfoImpl.h"
26 #include "FCnt_ContentInfoHelper.h"
27
28 using namespace Tizen::Base;
29
30 namespace Tizen { namespace Content
31 {
32
33 ImageContentInfo::ImageContentInfo(void)
34         : __pImageContentData(null)
35         , __pImageContentInfoImpl(null)
36 {
37
38 }
39
40 ImageContentInfo::~ImageContentInfo(void)
41 {
42         delete __pImageContentInfoImpl;
43 }
44
45 result
46 ImageContentInfo::Construct(const String& contentPath, const String& thumbnailPath, bool setGps)
47 {
48         result r = E_SUCCESS;
49
50         SysAssertf(__pImageContentInfoImpl == null,
51                         "Already constructed. Calling Construct() twice or more on a same instance is not allowed for this class.");
52
53         _ImageContentInfoImpl* pImageContentInfoImpl = new (std::nothrow) _ImageContentInfoImpl();
54         SysTryReturnResult(NID_CNT, pImageContentInfoImpl != null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Construct failed.");
55
56         r = pImageContentInfoImpl->Construct(contentPath, thumbnailPath, setGps);
57         SysTryCatch(NID_CNT, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
58
59         _ContentInfoHelper::SetContentInfoImpl(this, pImageContentInfoImpl);
60
61         __pImageContentInfoImpl = pImageContentInfoImpl;
62
63         return r;
64
65 CATCH:
66         delete pImageContentInfoImpl;
67
68         return r;
69 }
70
71 result
72 ImageContentInfo::Construct(const String* pContentPath)
73 {
74         result r = E_SUCCESS;
75
76         SysAssertf(__pImageContentInfoImpl == null,
77                         "Already constructed. Calling Construct() twice or more on a same instance is not allowed for this class.");
78
79         _ImageContentInfoImpl* pImageContentInfoImpl = new (std::nothrow) _ImageContentInfoImpl();
80         SysTryReturnResult(NID_CNT, pImageContentInfoImpl != null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Construct failed.");
81
82         r = pImageContentInfoImpl->Construct(pContentPath);
83         SysTryCatch(NID_CNT, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
84
85         _ContentInfoHelper::SetContentInfoImpl(this, pImageContentInfoImpl);
86
87         __pImageContentInfoImpl = pImageContentInfoImpl;
88
89         return r;
90
91 CATCH:
92         delete pImageContentInfoImpl;
93
94         return r;
95 }
96
97 int
98 ImageContentInfo::GetWidth(void) const
99 {
100         SysAssertf(__pImageContentInfoImpl != null, "Not yet constructed. Construct() should be called before use.");
101
102         return __pImageContentInfoImpl->GetWidth();
103 }
104
105 int
106 ImageContentInfo::GetHeight(void) const
107 {
108         SysAssertf(__pImageContentInfoImpl != null, "Not yet constructed. Construct() should be called before use.");
109
110         return __pImageContentInfoImpl->GetHeight();
111 }
112
113 ImageOrientationType
114 ImageContentInfo::GetOrientation(void) const
115 {
116         SysAssertf(__pImageContentInfoImpl != null, "Not yet constructed. Construct() should be called before use.");
117
118         return __pImageContentInfoImpl->GetOrientation();
119 }
120
121 String
122 ImageContentInfo::GetTitle(void) const
123 {
124         SysAssertf(__pImageContentInfoImpl != null, "Not yet constructed. Construct() should be called before use.");
125
126         return __pImageContentInfoImpl->GetTitle();
127 }
128
129 }}