merge with master
[platform/framework/web/wrt-commons.git] / modules / auto_save_dao / dao / auto_save_dao.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    auto_save_dao.cpp
18  * @author  Jihoon Chung (jihoon.chung@samsung.com)
19  * @version 1.0
20  * @brief    This file contains the definition of auto save dao class.
21  */
22 #include <stddef.h>
23 #include <wrt-commons/auto-save-dao-rw/auto_save_dao.h>
24 #include <wrt-commons/auto-save-dao/AutoSaveDatabase.h>
25 #include <orm_generator_autosave.h>
26 #include <dpl/foreach.h>
27
28 using namespace DPL::DB::ORM;
29 using namespace DPL::DB::ORM::autosave;
30 using namespace AutoSaveDB::Interface;
31
32 namespace AutoSaveDB {
33 #define SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN          Try
34
35 #define SQL_CONNECTION_EXCEPTION_HANDLER_END(message)   \
36     Catch(DPL::DB::SqlConnection::Exception::Base) {       \
37         LogError(message);                              \
38         ReThrowMsg(AutoSaveDAO::Exception::DatabaseError, \
39                    message);                            \
40     }
41
42 AutoSaveDAO::AutoSaveDAO() :
43     AutoSaveDAOReadOnly()
44 {}
45
46 AutoSaveDAO::~AutoSaveDAO()
47 {}
48
49 void AutoSaveDAO::attachDatabaseRW(void)
50 {
51     m_autoSavedbInterface.AttachToThread(
52         DPL::DB::SqlConnection::Flag::RW);
53 }
54
55 void AutoSaveDAO::detachDatabase(void)
56 {
57     m_autoSavedbInterface.DetachFromThread();
58 }
59
60 void AutoSaveDAO::setAutoSaveSubmitFormData(
61     const DPL::String &url,
62     const SubmitFormData &
63     submitFormData)
64 {
65     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
66     {
67         ScopedTransaction transaction(&m_autoSavedbInterface);
68
69         SubmitFormData submitData = getAutoSaveSubmitFormData(url);
70         if (!submitData.empty()) {
71             AUTOSAVE_DB_DELETE(del,
72                                AutoSaveSubmitFormElement,
73                                &m_autoSavedbInterface)
74             del->Where(Equals<AutoSaveSubmitFormElement::address>(url));
75             del->Execute();
76         }
77
78         FOREACH(pSubmitFormData, submitFormData) {
79             AutoSaveSubmitFormElement::Row row;
80             row.Set_address(url);
81             row.Set_key(pSubmitFormData->key);
82             row.Set_value(pSubmitFormData->value);
83
84             AUTOSAVE_DB_INSERT(
85                 insert, AutoSaveSubmitFormElement, &m_autoSavedbInterface);
86             insert->Values(row);
87             insert->Execute();
88         }
89
90         transaction.Commit();
91     }
92     SQL_CONNECTION_EXCEPTION_HANDLER_END(
93         "Fail to register id, passwd for autosave")
94 }
95 #undef SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
96 #undef SQL_CONNECTION_EXCEPTION_HANDLER_END
97 } // namespace AutoSaveDB