/* * Copyright (C) 2016 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include "JSDOMExceptionHandling.h" namespace WebCore { // Conversion from JSValue -> Implementation template struct Converter; struct DefaultExceptionThrower { void operator()(JSC::ExecState& state, JSC::ThrowScope& scope) { throwTypeError(&state, scope); } }; template typename Converter::ReturnType convert(JSC::ExecState&, JSC::JSValue); template typename Converter::ReturnType convert(JSC::ExecState&, JSC::JSValue, JSC::JSObject&); template typename Converter::ReturnType convert(JSC::ExecState&, JSC::JSValue, JSDOMGlobalObject&); template typename Converter::ReturnType convert(JSC::ExecState&, JSC::JSValue, ExceptionThrower&&); template typename Converter::ReturnType convert(JSC::ExecState&, JSC::JSValue, JSC::JSObject&, ExceptionThrower&&); template typename Converter::ReturnType convert(JSC::ExecState&, JSC::JSValue, JSDOMGlobalObject&, ExceptionThrower&&); template inline typename Converter::ReturnType convert(JSC::ExecState& state, JSC::JSValue value) { return Converter::convert(state, value); } template inline typename Converter::ReturnType convert(JSC::ExecState& state, JSC::JSValue value, JSC::JSObject& thisObject) { return Converter::convert(state, value, thisObject); } template inline typename Converter::ReturnType convert(JSC::ExecState& state, JSC::JSValue value, JSDOMGlobalObject& globalObject) { return Converter::convert(state, value, globalObject); } template inline typename Converter::ReturnType convert(JSC::ExecState& state, JSC::JSValue value, ExceptionThrower&& exceptionThrower) { return Converter::convert(state, value, std::forward(exceptionThrower)); } template inline typename Converter::ReturnType convert(JSC::ExecState& state, JSC::JSValue value, JSC::JSObject& thisObject, ExceptionThrower&& exceptionThrower) { return Converter::convert(state, value, thisObject, std::forward(exceptionThrower)); } template inline typename Converter::ReturnType convert(JSC::ExecState& state, JSC::JSValue value, JSDOMGlobalObject& globalObject, ExceptionThrower&& exceptionThrower) { return Converter::convert(state, value, globalObject, std::forward(exceptionThrower)); } // Conversion from Implementation -> JSValue template struct JSConverter; template inline JSC::JSValue toJS(U&&); template inline JSC::JSValue toJS(JSC::ExecState&, U&&); template inline JSC::JSValue toJS(JSC::ExecState&, JSDOMGlobalObject&, U&&); template inline JSC::JSValue toJS(JSC::ExecState&, JSC::ThrowScope&, ExceptionOr&&); template inline JSC::JSValue toJS(JSC::ExecState&, JSDOMGlobalObject&, JSC::ThrowScope&, ExceptionOr&&); template inline JSC::JSValue toJSNewlyCreated(JSC::ExecState&, JSDOMGlobalObject&, U&&); template inline JSC::JSValue toJSNewlyCreated(JSC::ExecState&, JSDOMGlobalObject&, JSC::ThrowScope&, ExceptionOr&&); template::needsState, bool needsGlobalObject = JSConverter::needsGlobalObject> struct JSConverterOverloader; template struct JSConverterOverloader { template static JSC::JSValue convert(JSC::ExecState& state, JSDOMGlobalObject& globalObject, U&& value) { return JSConverter::convert(state, globalObject, std::forward(value)); } }; template struct JSConverterOverloader { template static JSC::JSValue convert(JSC::ExecState& state, U&& value) { return JSConverter::convert(state, std::forward(value)); } template static JSC::JSValue convert(JSC::ExecState& state, JSDOMGlobalObject&, U&& value) { return JSConverter::convert(state, std::forward(value)); } }; template struct JSConverterOverloader { template static JSC::JSValue convert(JSC::ExecState&, U&& value) { return JSConverter::convert(std::forward(value)); } template static JSC::JSValue convert(JSC::ExecState&, JSDOMGlobalObject&, U&& value) { return JSConverter::convert(std::forward(value)); } }; template inline JSC::JSValue toJS(U&& value) { return JSConverter::convert(std::forward(value)); } template inline JSC::JSValue toJS(JSC::ExecState& state, U&& value) { return JSConverterOverloader::convert(state, std::forward(value)); } template inline JSC::JSValue toJS(JSC::ExecState& state, JSDOMGlobalObject& globalObject, U&& value) { return JSConverterOverloader::convert(state, globalObject, std::forward(value)); } template inline JSC::JSValue toJS(JSC::ExecState& state, JSC::ThrowScope& throwScope, ExceptionOr&& value) { if (UNLIKELY(value.hasException())) { propagateException(state, throwScope, value.releaseException()); return { }; } return toJS(state, value.releaseReturnValue()); } template inline JSC::JSValue toJS(JSC::ExecState& state, JSDOMGlobalObject& globalObject, JSC::ThrowScope& throwScope, ExceptionOr&& value) { if (UNLIKELY(value.hasException())) { propagateException(state, throwScope, value.releaseException()); return { }; } return toJS(state, globalObject, value.releaseReturnValue()); } template inline JSC::JSValue toJSNewlyCreated(JSC::ExecState& state, JSDOMGlobalObject& globalObject, U&& value) { return JSConverter::convertNewlyCreated(state, globalObject, std::forward(value)); } template inline JSC::JSValue toJSNewlyCreated(JSC::ExecState& state, JSDOMGlobalObject& globalObject, JSC::ThrowScope& throwScope, ExceptionOr&& value) { if (UNLIKELY(value.hasException())) { propagateException(state, throwScope, value.releaseException()); return { }; } return toJSNewlyCreated(state, globalObject, value.releaseReturnValue()); } template struct DefaultConverter { using ReturnType = typename T::ImplementationType; }; } // namespace WebCore