2 * Copyright (c) 2021 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include <glib-unix.h>
25 #include "cache_flag.hh"
26 #include "create_cache_request.hh"
27 #include "cynara_checker.hh"
28 #include "pkg_request.hh"
30 #include "utils/logging.hh"
32 #include "pkgmgrinfo_debug.h"
33 #include "pkgmgrinfo_private.h"
38 #define LOG_TAG "PKGMGR_INFO"
40 namespace pkgmgr_server {
43 static const std::string SOCK_PATH = "/run/pkgmgr-info-server";
44 const char PRIVILEGE_PACKAGE_MANAGER_ADMIN[] =
45 "http://tizen.org/privilege/packagemanager.admin";
49 Runner::Runner(unsigned int thread_num) {
50 /* thread_num_ <= hardware_concurrency */
51 thread_num_ = std::min(thread_num, std::thread::hardware_concurrency());
52 CynaraChecker::GetInst().Init();
53 server_ = std::make_unique<pkgmgr_common::socket::ServerSocket>(SOCK_PATH);
54 thread_pool_ = std::make_unique<WorkerThread>(thread_num_);
55 auto condition = static_cast<GIOCondition>(G_IO_IN);
56 sid_ = g_unix_fd_add(server_->GetFd(), condition, OnReceiveRequest, this);
57 pkgmgr_common::SystemLocale::GetInst().RegisterEvent(this);
58 thread_pool_->SetLocale(pkgmgr_common::SystemLocale::GetInst().Get());
60 if (CacheFlag::SetPreparing()) {
62 std::make_shared<CreateCacheRequest>(
63 tzplatform_getuid(TZ_SYS_DEFAULT_USER)));
69 g_source_remove(sid_);
70 CynaraChecker::GetInst().Fini();
71 pkgmgr_common::SystemLocale::GetInst().UnRegisterEvent();
74 int Runner::OnReceiveRequest(int fd, GIOCondition cond, void* user_data) {
75 auto runner = static_cast<Runner*>(user_data);
76 int client_fd = runner->server_->Accept();
78 LOG(ERROR) << "Failed to Accept. errno:" << errno;
79 return G_SOURCE_CONTINUE;
82 auto req = std::make_shared<PkgRequest>(client_fd);
84 if (CacheFlag::SetPreparing()) {
86 std::make_shared<CreateCacheRequest>(req->GetSenderUID()));
88 runner->QueueRequest(std::move(req));
90 return G_SOURCE_CONTINUE;
93 void Runner::OnChanged(const std::string& locale) {
94 thread_pool_->SetLocale(locale);
97 bool Runner::QueueRequest(std::shared_ptr<PkgRequest> req) {
98 thread_pool_->PushQueue(std::move(req));
102 } // namespace pkgmgr_server