upload tizen1.0 source
[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-dao-ro/AceDAOReadOnly.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     Assert(!m_attached);
37 }
38
39 void MainThread::AttachDatabases()
40 {
41     Assert(!m_attached);
42     // Attach databases
43     AceDB::AceDAOReadOnly::attachToThreadRO();
44     WrtDB::WrtDatabase::attachToThreadRO();
45     AutoSaveDB::AutoSaveDAO::attachDatabaseRW();
46     m_attached = true;
47 }
48
49 void MainThread::DetachDatabases()
50 {
51     Assert(m_attached);
52     m_attached = false;
53     // Detach databases
54     AceDB::AceDAOReadOnly::detachFromThread();
55     WrtDB::WrtDatabase::detachFromThread();
56     AutoSaveDB::AutoSaveDAO::detachDatabase();
57 }