Remove the cache when language change event occurs
[platform/core/appfw/pkgmgr-info.git] / src / server / remove_all_cache_request.cc
1 /*
2  * Copyright (c) 2023 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 "remove_all_cache_request.hh"
18
19 #include <sys/types.h>
20 #include <unistd.h>
21
22 namespace pkgmgr_server {
23
24 const unsigned char* RemoveAllCacheRequest::GetData() {
25   return nullptr;
26 }
27
28 size_t RemoveAllCacheRequest::GetSize() {
29   return 0;
30 }
31
32 pid_t RemoveAllCacheRequest::GetSenderPID() {
33   return getpid();
34 }
35
36 pid_t RemoveAllCacheRequest::GetSenderTID() {
37   return gettid();
38 }
39
40 uid_t RemoveAllCacheRequest::GetSenderUID() {
41   return uid_;
42 }
43
44 pkgmgr_common::ReqType RemoveAllCacheRequest::GetRequestType() {
45   return pkgmgr_common::ReqType::REMOVE_ALL_CACHE;
46 }
47
48 bool RemoveAllCacheRequest::SendData(const tizen_base::Parcel& parcel) {
49   return true;
50 }
51
52 bool RemoveAllCacheRequest::GetPrivilegeChecked() {
53   return true;
54 }
55
56 }  // namespace pkgmgr_server