Delay server ready timing until creating cache
[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 uid_t CreateCacheRequest::GetSenderUID() {
37   return uid_;
38 }
39
40 pkgmgr_common::ReqType CreateCacheRequest::GetRequestType() {
41   return pkgmgr_common::ReqType::CREATE_CACHE;
42 }
43
44 bool CreateCacheRequest::SendData(unsigned char* data, int size) {
45   bool ret = static_cast<bool>(data[0]);
46   if (listener_ != nullptr)
47     listener_->OnCreateCacheDone(ret);
48
49   return true;
50 }
51
52 bool CreateCacheRequest::GetPrivilegeChecked() {
53   return true;
54 }
55
56 }  // namespace pkgmgr_server