Update wrt_0.8.85
[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/singleton_impl.h>
28 IMPLEMENT_SINGLETON(MainThread)
29
30 using namespace WrtDB;
31
32 MainThread::MainThread() : m_attached(false) {
33 }
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(NULL);
47     // Assert(ACE_OK == ret); // this is commented because right
48     // now UI handlers are not implemented
49     AutoSaveDB::AutoSaveDAO::attachDatabaseRW();
50     m_attached = true;
51 }
52
53 void MainThread::DetachDatabases()
54 {
55     Assert(m_attached);
56     m_attached = false;
57     // Detach databases
58     ace_return_t ret = ace_client_shutdown();
59     Assert(ACE_OK == ret);
60     WrtDB::WrtDatabase::detachFromThread();
61     AutoSaveDB::AutoSaveDAO::detachDatabase();
62 }