1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Copyright (C) 2012 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitJavascriptResult.h"
#if !ENABLE(2022_GLIB_API)
#include "APISerializedScriptValue.h"
#include "WebKitJavascriptResultPrivate.h"
#include <jsc/JSCContextPrivate.h>
#include <jsc/JSCValuePrivate.h>
/**
* WebKitJavascriptResult: (ref-func webkit_javascript_result_ref) (unref-func webkit_javascript_result_unref)
*
* Result of JavaScript evaluation in a web view.
*/
struct _WebKitJavascriptResult {
explicit _WebKitJavascriptResult(WebCore::SerializedScriptValue& serializedScriptValue)
{
jsValue = API::SerializedScriptValue::deserialize(serializedScriptValue);
}
GRefPtr<JSCValue> jsValue;
int referenceCount { 1 };
};
G_DEFINE_BOXED_TYPE(WebKitJavascriptResult, webkit_javascript_result, webkit_javascript_result_ref, webkit_javascript_result_unref)
WebKitJavascriptResult* webkitJavascriptResultCreate(WebCore::SerializedScriptValue& serializedScriptValue)
{
WebKitJavascriptResult* result = static_cast<WebKitJavascriptResult*>(fastMalloc(sizeof(WebKitJavascriptResult)));
new (result) WebKitJavascriptResult(serializedScriptValue);
return result;
}
/**
* webkit_javascript_result_ref:
* @js_result: a #WebKitJavascriptResult
*
* Atomically increments the reference count of @js_result by one.
*
* This function is MT-safe and may be called from any thread.
*
* Returns: The passed in #WebKitJavascriptResult
*/
WebKitJavascriptResult* webkit_javascript_result_ref(WebKitJavascriptResult* javascriptResult)
{
g_atomic_int_inc(&javascriptResult->referenceCount);
return javascriptResult;
}
/**
* webkit_javascript_result_unref:
* @js_result: a #WebKitJavascriptResult
*
* Atomically decrements the reference count of @js_result by one.
*
* If the reference count drops to 0,
* all memory allocated by the #WebKitJavascriptResult is
* released. This function is MT-safe and may be called from any
* thread.
*/
void webkit_javascript_result_unref(WebKitJavascriptResult* javascriptResult)
{
if (g_atomic_int_dec_and_test(&javascriptResult->referenceCount)) {
javascriptResult->~WebKitJavascriptResult();
fastFree(javascriptResult);
}
}
#if PLATFORM(GTK)
/**
* webkit_javascript_result_get_global_context: (skip)
* @js_result: a #WebKitJavascriptResult
*
* Get the global Javascript context.
*
* Get the global Javascript context that should be used with the
* <function>JSValueRef</function> returned by webkit_javascript_result_get_value().
*
* Returns: the <function>JSGlobalContextRef</function> for the #WebKitJavascriptResult
*
* Deprecated: 2.22: Use jsc_value_get_context() instead.
*/
JSGlobalContextRef webkit_javascript_result_get_global_context(WebKitJavascriptResult* javascriptResult)
{
g_return_val_if_fail(javascriptResult, nullptr);
return jscContextGetJSContext(jsc_value_get_context(javascriptResult->jsValue.get()));
}
/**
* webkit_javascript_result_get_value: (skip)
* @js_result: a #WebKitJavascriptResult
*
* Get the value of @js_result.
*
* You should use the <function>JSGlobalContextRef</function>
* returned by webkit_javascript_result_get_global_context() to use the <function>JSValueRef</function>.
*
* Returns: the <function>JSValueRef</function> of the #WebKitJavascriptResult
*
* Deprecated: 2.22: Use webkit_javascript_result_get_js_value() instead.
*/
JSValueRef webkit_javascript_result_get_value(WebKitJavascriptResult* javascriptResult)
{
g_return_val_if_fail(javascriptResult, nullptr);
return jscValueGetJSValue(javascriptResult->jsValue.get());
}
#endif
/**
* webkit_javascript_result_get_js_value:
* @js_result: a #WebKitJavascriptResult
*
* Get the #JSCValue of @js_result.
*
* Returns: (transfer none): the #JSCValue of the #WebKitJavascriptResult
*
* Since: 2.22
*/
JSCValue* webkit_javascript_result_get_js_value(WebKitJavascriptResult* javascriptResult)
{
g_return_val_if_fail(javascriptResult, nullptr);
return javascriptResult->jsValue.get();
}
#endif
|