Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / common / primitiveResource / src / RCSAddress.cpp
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #include <RCSAddress.h>
22 #include <RCSAddressDetail.h>
23
24 namespace OIC
25 {
26     namespace Service
27     {
28         RCSAddress::RCSAddress(const std::shared_ptr< RCSAddressDetail >& ptr) :
29                 m_detail{ ptr }
30         {
31         }
32
33         RCSAddress RCSAddress::multicast()
34         {
35             return RCSAddress{ std::make_shared< RCSAddressDetail >("") };
36         }
37
38         RCSAddress RCSAddress::unicast(const std::string& address)
39         {
40             return RCSAddress{ std::make_shared< RCSAddressDetail >(address) };
41         }
42
43         RCSAddress RCSAddress::unicast(std::string&& address)
44         {
45             return RCSAddress{ std::make_shared< RCSAddressDetail >(std::move(address)) };
46         }
47
48
49
50         RCSAddressDetail::RCSAddressDetail(const std::string& address) :
51                 m_addr{ address }
52         {
53         }
54
55         RCSAddressDetail::RCSAddressDetail(std::string&& address) :
56                 m_addr{ std::move(address) }
57         {
58         }
59
60         const RCSAddressDetail* RCSAddressDetail::getDetail(const RCSAddress& rcsAddr)
61         {
62             return rcsAddr.m_detail.get();
63         }
64
65         const std::string& RCSAddressDetail::getAddress() const
66         {
67             return m_addr;
68         }
69
70     }
71 }