[Release] wrt_0.8.225
[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 <dpl/wrt-dao-ro/WrtDatabase.h>
27 #include <dpl/singleton_impl.h>
28 #include <popup-runner/popup-runner.h>
29 IMPLEMENT_SINGLETON(MainThread)
30
31 using namespace WrtDB;
32
33 MainThread::MainThread() : m_attached(false) {}
34
35 MainThread::~MainThread()
36 {
37     if (m_attached) {
38         LogError("Destroyed without detach");
39     }
40 }
41
42 void MainThread::AttachDatabases()
43 {
44     Assert(!m_attached);
45     // Attach databases
46     ace_return_t ret = ace_client_initialize(Wrt::Popup::run_popup);
47     Assert(ACE_OK == ret);
48     WrtDB::WrtDatabase::attachToThreadRO();
49     m_attached = true;
50 }
51
52 void MainThread::DetachDatabases()
53 {
54     Assert(m_attached);
55     m_attached = false;
56     // Detach databases
57     ace_return_t ret = ace_client_shutdown();
58     Assert(ACE_OK == ret);
59     WrtDB::WrtDatabase::detachFromThread();
60 }