Implement PkgInfoClient (#79)
[platform/core/appfw/pkgmgr-info.git] / src / server / pkg_request.cc
1 /*
2  * Copyright (c) 2021 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 "pkg_request.hh"
18 #include "pkgmgrinfo_debug.h"
19
20 namespace pkgmgr_server {
21
22 PkgRequest::PkgRequest(int fd)
23     : fd_(fd), request_type_(pkgmgr_common::REQ_TYPE_NONE), data_size_(-1) {
24   socket_ = std::unique_ptr<pkgmgr_common::socket::DataSocket>(
25       new (std::nothrow) pkgmgr_common::socket::DataSocket(fd_));
26   if (socket_ == nullptr) LOGE("Out of memory");
27 }
28
29 PkgRequest::~PkgRequest() {
30   if (data_ != nullptr) delete[] data_;
31 }
32
33 unsigned char* PkgRequest::GetData() { return data_; }
34
35 int PkgRequest::GetSize() { return data_size_; }
36
37 pkgmgr_common::ReqType PkgRequest::GetRequestType() { return request_type_; }
38
39 bool PkgRequest::ReceiveData() {
40   int ret = socket_->ReceiveData(&request_type_, sizeof(request_type_));
41   if (ret < 0 || request_type_ == pkgmgr_common::REQ_TYPE_NONE) {
42     LOGE("Failed to ReceiveData");
43     return false;
44   }
45   ret = socket_->ReceiveData(&data_size_, sizeof(data_size_));
46   if (ret < 0) {
47     LOGE("Failed to ReceiveData");
48     request_type_ = pkgmgr_common::REQ_TYPE_NONE;
49     return false;
50   }
51   if (data_size_ < 0) {
52     LOGE("Invalid data");
53     request_type_ = pkgmgr_common::REQ_TYPE_NONE;
54     return false;
55   }
56
57   data_ = new (std::nothrow) unsigned char[data_size_];
58   if (data_ == nullptr) {
59     LOGE("Out of memory");
60     request_type_ = pkgmgr_common::REQ_TYPE_NONE;
61     return false;
62   }
63   ret = socket_->ReceiveData((void*)data_, data_size_);
64   if (ret < 0) {
65     LOGE("Failed to ReceiveData");
66     delete[] data_;
67     data_ = nullptr;
68     request_type_ = pkgmgr_common::REQ_TYPE_NONE;
69     return false;
70   }
71
72   return true;
73 }
74
75 bool PkgRequest::SendData(unsigned char* data, int size) {
76   if (socket_->SendData(&size, sizeof(size)) < 0)
77     return false;
78
79   return (socket_->SendData(data, size) < 0);
80 }
81
82 }  // namespace pkgmgr_server