Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules / i18n / dao / src / i18n_database.cpp
1 /*
2  * Copyright (c) 2012 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 #include <wrt-commons/i18n-dao-ro/i18n_database.h>
17
18 namespace I18n {
19 namespace DB {
20 namespace Interface {
21 namespace {
22 const char* const I18N_DB_FILE_PATH = "/opt/usr/dbspace/.wrt_i18n.db";
23
24 DPL::DB::SqlConnection::Flag::Type I18N_DB_FLAGS =
25     DPL::DB::SqlConnection::Flag::UseLucene;
26 }
27
28 std::mutex g_dbQueriesMutex;
29 DPL::DB::ThreadDatabaseSupport g_dbInterface(I18N_DB_FILE_PATH,
30                                              I18N_DB_FLAGS);
31
32 void attachDatabaseRO()
33 {
34     g_dbInterface.AttachToThread(DPL::DB::SqlConnection::Flag::RO);
35 }
36
37 void detachDatabase()
38 {
39     g_dbInterface.DetachFromThread();
40 }
41 } //namespace Interface
42 } //namespace DB
43 } //namespace I18n