2 * Copyright (c) 2011 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.
17 * @file installer_main_thread.cpp
18 * @author Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
22 #include "installer_main_thread.h"
23 #include <dpl/assert.h>
24 #include <dpl/wrt-dao-ro/WrtDatabase.h>
25 #include <ace-dao-rw/AceDAO.h>
26 #include <vcore/VCore.h>
27 #include <dpl/singleton_impl.h>
28 #include <dpl/assert.h>
29 #include <installer_controller.h>
30 #include <security_controller.h>
31 #include <dpl/popup/popup_controller.h>
32 #include <dpl/popup/popup_manager.h>
33 IMPLEMENT_SINGLETON(InstallerMainThread)
35 using namespace WrtDB;
36 using namespace DPL::Popup;
38 InstallerMainThread::InstallerMainThread() : m_attached(false) {
41 InstallerMainThread::~InstallerMainThread() {
45 void InstallerMainThread::AttachDatabases()
49 ValidationCore::AttachToThreadRW();
50 AceDB::AceDAO::attachToThreadRW();
51 WrtDB::WrtDatabase::attachToThreadRW();
55 void InstallerMainThread::DetachDatabases()
60 ValidationCore::DetachFromThread();
61 AceDB::AceDAO::detachFromThread();
62 WrtDB::WrtDatabase::detachFromThread();
65 void InstallerMainThread::TouchArchitecture()
68 InstallerControllerSingleton::Instance().Touch();
69 SecurityControllerSingleton::Instance().Touch();
70 DPL::Popup::PopupControllerSingleton::Instance().Touch();
73 void InstallerMainThread::TouchArchitectureOnlyInstaller()
76 InstallerControllerSingleton::Instance().Touch();