a860339e107e2c837940876ee1fe798d9acf3f9b
[platform/core/appfw/aul-1.git] / aul / socket / parcel.cc
1 /*
2  * Copyright (c) 2020 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 #include "aul/socket/parcel.hh"
18
19 namespace aul {
20
21 Parcel::Parcel(const unsigned char* buf, unsigned int size)
22   : data_(buf, buf + size) {
23 }
24
25 void Parcel::Write(const unsigned char* buf, unsigned int size) {
26   std::copy(buf, buf + size, std::back_inserter(data_));
27 }
28
29 void Parcel::Read(unsigned char* buf, unsigned int size) {
30   if (reader_ + size > data_.size())
31     return;
32
33   std::copy(&data_[reader_], &data_[reader_] + size, buf);
34   reader_ += size;
35 }
36
37 void Parcel::WriteInt32(int i) {
38   Write<int>(i);
39 }
40
41 int Parcel::ReadInt32() {
42   return Read<int>();
43 }
44
45 const std::vector<unsigned char>& Parcel::GetRaw() {
46   return data_;
47 }
48
49 }  // namespace aul