Merge "Refactor WorkerThread" into tizen
[platform/core/appfw/pkgmgr-info.git] / src / server / database / remove_cache_db_handler.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 "remove_cache_db_handler.hh"
18
19 #include "db_handle_provider.hh"
20
21 namespace pkgmgr_server {
22 namespace database {
23
24 RemoveCacheDBHandler::RemoveCacheDBHandler(uid_t uid, int pid)
25     : AbstractDBHandler(uid, pid) {}
26
27 int RemoveCacheDBHandler::Execute() {
28   std::unique_lock<std::shared_timed_mutex> u(lock_);
29
30   database::DBHandleProvider::GetInst(GetUID()).UnsetMemoryMode(GetPID());
31   database::DBHandleProvider::GetInst(GetUID()).TrimCache();
32
33   return PMINFO_R_OK;
34 }
35
36 }  // namespace database
37 }  // namespace pkgmgr_server