9367b92a2c3737aa29bcbc6e0e3f25d016cc9b84
[platform/framework/web/wrt.git] / src / domain / 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       main_thread.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include "main_thread.h"
23 #include <dpl/assert.h>
24 #include <dpl/wrt-dao-ro/WrtDatabase.h>
25 #include <ace_api_client.h>
26 #include <wrt-commons/auto-save-dao-rw/auto_save_dao.h>
27 #include <dpl/wrt-dao-ro/WrtDatabase.h>
28 #include <dpl/singleton_impl.h>
29 #include <popup-runner/popup-runner.h>
30 IMPLEMENT_SINGLETON(MainThread)
31
32 using namespace WrtDB;
33
34 MainThread::MainThread() : m_attached(false) {
35 }
36
37 MainThread::~MainThread()
38 {
39     if (m_attached) {
40         LogError("Destroyed without detach");
41     }
42 }
43
44 void MainThread::AttachDatabases()
45 {
46     Assert(!m_attached);
47     // Attach databases
48     ace_return_t ret = ace_client_initialize(Wrt::Popup::run_popup);
49     Assert(ACE_OK == ret);
50     WrtDB::WrtDatabase::attachToThreadRO();
51     AutoSaveDB::AutoSaveDAO::attachDatabaseRW();
52     m_attached = true;
53 }
54
55 void MainThread::DetachDatabases()
56 {
57     Assert(m_attached);
58     m_attached = false;
59     // Detach databases
60     ace_return_t ret = ace_client_shutdown();
61     Assert(ACE_OK == ret);
62     WrtDB::WrtDatabase::detachFromThread();
63     AutoSaveDB::AutoSaveDAO::detachDatabase();
64 }