Fix code for TDIS-5396
[framework/osp/social.git] / src / FSclRecord.cpp
1 //
2 // Open Service Platform
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  * @file                FSclRecord.cpp
19  * @brief               This is the implementation for Record class.
20  *
21  * This file contains definitions of @e Record class.
22  */
23
24 #include <FSclRecord.h>
25 #include <FBaseSysLog.h>
26 #include "FScl_RecordImpl.h"
27
28 namespace Tizen { namespace Social
29 {
30
31 Record::Record(RecordType type)
32 {
33         __pRecordImpl = new (std::nothrow) _RecordImpl(type);
34         SysTryReturnVoidResult(NID_SCL, __pRecordImpl != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
35 }
36
37 Record::Record(const Record& rhs)
38 {
39         __pRecordImpl = new (std::nothrow) _RecordImpl(*rhs.__pRecordImpl);
40         SysTryReturnVoidResult(NID_SCL, __pRecordImpl != null, E_OUT_OF_MEMORY, "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
41 }
42
43 Record&
44 Record::operator =(const Record& rhs)
45 {
46         if (this == &rhs)
47         {
48                 return *this;
49         }
50
51         *__pRecordImpl = *rhs.__pRecordImpl;
52
53         return *this;
54 }
55
56 Record::~Record()
57 {
58         delete __pRecordImpl;
59 }
60
61 RecordType
62 Record::GetRecordType(void) const
63 {
64         return __pRecordImpl->GetRecordType();
65 }
66
67 RecordId
68 Record::GetRecordId(void) const
69 {
70         return __pRecordImpl->GetRecordId();
71 }
72
73 }}  // Tizen::Social