tizen beta release
[framework/web/wrt-installer.git] / src / wrt-installer / installer_main_thread.cpp
1 /*
2  * Copyright (c) 2011 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  * @file       installer_main_thread.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include "installer_main_thread.h"
23 #include <dpl/assert.h>
24 #include <dpl/wrt-dao-ro/WrtDatabase.h>
25 #include <dpl/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)
34
35 using namespace WrtDB;
36 using namespace DPL::Popup;
37
38 InstallerMainThread::InstallerMainThread() : m_attached(false) {
39 }
40
41 InstallerMainThread::~InstallerMainThread() {
42     Assert(!m_attached);
43 }
44
45 void InstallerMainThread::AttachDatabases()
46 {
47     Assert(!m_attached);
48     // Attach databases
49     ValidationCore::AttachToThread();
50     AceDB::AceDAO::attachToThread();
51     WrtDB::WrtDatabase::attachToThread();
52     m_attached = true;
53 }
54
55 void InstallerMainThread::DetachDatabases()
56 {
57     Assert(m_attached);
58     m_attached = false;
59     // Detach databases
60     ValidationCore::DetachFromThread();
61     AceDB::AceDAO::detachFromThread();
62     WrtDB::WrtDatabase::detachFromThread();
63 }
64
65 void InstallerMainThread::TouchArchitecture()
66 {
67     // Touch controller
68     InstallerControllerSingleton::Instance().Touch();
69     SecurityControllerSingleton::Instance().Touch();
70     DPL::Popup::PopupControllerSingleton::Instance().Touch();
71 }
72
73 void InstallerMainThread::TouchArchitectureOnlyInstaller()
74 {
75     // Touch controller
76     InstallerControllerSingleton::Instance().Touch();
77 }