tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSSQLTransactionSyncCallback.cpp
1 /*
2     This file is part of the WebKit open source project.
3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #include "config.h"
22
23 #if ENABLE(SQL_DATABASE)
24
25 #include "JSSQLTransactionSyncCallback.h"
26
27 #include "JSSQLTransactionSync.h"
28 #include "ScriptExecutionContext.h"
29 #include <runtime/JSLock.h>
30
31 using namespace JSC;
32
33 namespace WebCore {
34
35 JSSQLTransactionSyncCallback::JSSQLTransactionSyncCallback(JSObject* callback, JSDOMGlobalObject* globalObject)
36     : ActiveDOMCallback(globalObject->scriptExecutionContext())
37     , m_data(new JSCallbackData(callback, globalObject))
38 {
39 }
40
41 JSSQLTransactionSyncCallback::~JSSQLTransactionSyncCallback()
42 {
43     ScriptExecutionContext* context = scriptExecutionContext();
44     // When the context is destroyed, all tasks with a reference to a callback
45     // should be deleted. So if the context is 0, we are on the context thread.
46     if (!context || context->isContextThread())
47         delete m_data;
48     else
49         context->postTask(DeleteCallbackDataTask::create(m_data));
50 #ifndef NDEBUG
51     m_data = 0;
52 #endif
53 }
54
55 // Functions
56
57 bool JSSQLTransactionSyncCallback::handleEvent(SQLTransactionSync* transaction)
58 {
59     if (!canInvokeCallback())
60         return true;
61
62     RefPtr<JSSQLTransactionSyncCallback> protect(this);
63
64     JSLock lock(SilenceAssertionsOnly);
65
66     ExecState* exec = m_data->globalObject()->globalExec();
67     MarkedArgumentBuffer args;
68     args.append(toJS(exec, m_data->globalObject(), transaction));
69
70     bool raisedException = false;
71     m_data->invokeCallback(args, &raisedException);
72     return !raisedException;
73 }
74
75 }
76
77 #endif // ENABLE(SQL_DATABASE)