0d49d0f8ab01986974f98485d86da96a5a849a19
[platform/core/appfw/pkgmgr-info.git] / src / server / create_cache_request.cc
1 /*
2  * Copyright (c) 2021 - 2022 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 "create_cache_request.hh"
18
19 #include <sys/types.h>
20 #include <unistd.h>
21
22 namespace pkgmgr_server {
23
24 const unsigned char* CreateCacheRequest::GetData() {
25   return nullptr;
26 }
27
28 int CreateCacheRequest::GetSize() {
29   return 0;
30 }
31
32 pid_t CreateCacheRequest::GetSenderPID() {
33   return getpid();
34 }
35
36 pid_t CreateCacheRequest::GetSenderTID() {
37   return gettid();
38 }
39
40 uid_t CreateCacheRequest::GetSenderUID() {
41   return uid_;
42 }
43
44 pkgmgr_common::ReqType CreateCacheRequest::GetRequestType() {
45   return pkgmgr_common::ReqType::CREATE_CACHE;
46 }
47
48 bool CreateCacheRequest::SendData(const tizen_base::Parcel& parcel) {
49   bool ret;
50   const_cast<tizen_base::Parcel&>(parcel).ReadBool(&ret);
51   if (listener_ != nullptr)
52     listener_->OnCreateCacheDone(ret);
53
54   return true;
55 }
56
57 bool CreateCacheRequest::GetPrivilegeChecked() {
58   return true;
59 }
60
61 }  // namespace pkgmgr_server