1 /*
   2  * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #undef IMPL
  27 
  28 #include "config.h"
  29 
  30 #include <WebCore/HTMLCollection.h>
  31 #include <WebCore/HTMLFormElement.h>
  32 #include <WebCore/HTMLNames.h>
  33 #include <WebCore/JSMainThreadExecState.h>
  34 
  35 #include <wtf/RefPtr.h>
  36 #include <wtf/GetPtr.h>
  37 
  38 #include "JavaDOMUtils.h"
  39 #include <wtf/java/JavaEnv.h>
  40 
  41 using namespace WebCore;
  42 
  43 extern "C" {
  44 
  45 #define IMPL (static_cast<HTMLFormElement*>(jlong_to_ptr(peer)))
  46 
  47 // Attributes
  48 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getAcceptCharsetImpl(JNIEnv* env, jclass, jlong peer)
  49 {
  50     WebCore::JSMainThreadNullState state;
  51     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::accept_charsetAttr));
  52 }
  53 
  54 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setAcceptCharsetImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  55 {
  56     WebCore::JSMainThreadNullState state;
  57     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::accept_charsetAttr, String(env, value));
  58 }
  59 
  60 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getActionImpl(JNIEnv* env, jclass, jlong peer)
  61 {
  62     WebCore::JSMainThreadNullState state;
  63     return JavaReturn<String>(env, IMPL->getURLAttribute(WebCore::HTMLNames::actionAttr));
  64 }
  65 
  66 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setActionImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  67 {
  68     WebCore::JSMainThreadNullState state;
  69     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::actionAttr, String(env, value));
  70 }
  71 
  72 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getAutocompleteImpl(JNIEnv* env, jclass, jlong peer)
  73 {
  74     WebCore::JSMainThreadNullState state;
  75     return JavaReturn<String>(env, IMPL->autocomplete());
  76 }
  77 
  78 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setAutocompleteImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  79 {
  80     WebCore::JSMainThreadNullState state;
  81     IMPL->setAutocomplete(String(env, value));
  82 }
  83 
  84 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getEnctypeImpl(JNIEnv* env, jclass, jlong peer)
  85 {
  86     WebCore::JSMainThreadNullState state;
  87     return JavaReturn<String>(env, IMPL->enctype());
  88 }
  89 
  90 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setEnctypeImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  91 {
  92     WebCore::JSMainThreadNullState state;
  93     IMPL->setEnctype(String(env, value));
  94 }
  95 
  96 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getEncodingImpl(JNIEnv* env, jclass, jlong peer)
  97 {
  98     WebCore::JSMainThreadNullState state;
  99     return JavaReturn<String>(env, IMPL->enctype());
 100 }
 101 
 102 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setEncodingImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 103 {
 104     WebCore::JSMainThreadNullState state;
 105     IMPL->setEnctype(String(env, value));
 106 }
 107 
 108 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getMethodImpl(JNIEnv* env, jclass, jlong peer)
 109 {
 110     WebCore::JSMainThreadNullState state;
 111     return JavaReturn<String>(env, IMPL->method());
 112 }
 113 
 114 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setMethodImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 115 {
 116     WebCore::JSMainThreadNullState state;
 117     IMPL->setMethod(String(env, value));
 118 }
 119 
 120 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getNameImpl(JNIEnv* env, jclass, jlong peer)
 121 {
 122     WebCore::JSMainThreadNullState state;
 123     return JavaReturn<String>(env, IMPL->getNameAttribute());
 124 }
 125 
 126 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setNameImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 127 {
 128     WebCore::JSMainThreadNullState state;
 129     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::nameAttr, String(env, value));
 130 }
 131 
 132 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getNoValidateImpl(JNIEnv*, jclass, jlong peer)
 133 {
 134     WebCore::JSMainThreadNullState state;
 135     return IMPL->hasAttribute(WebCore::HTMLNames::novalidateAttr);
 136 }
 137 
 138 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setNoValidateImpl(JNIEnv*, jclass, jlong peer, jboolean value)
 139 {
 140     WebCore::JSMainThreadNullState state;
 141     IMPL->setBooleanAttribute(WebCore::HTMLNames::novalidateAttr, value);
 142 }
 143 
 144 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getTargetImpl(JNIEnv* env, jclass, jlong peer)
 145 {
 146     WebCore::JSMainThreadNullState state;
 147     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::targetAttr));
 148 }
 149 
 150 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_setTargetImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 151 {
 152     WebCore::JSMainThreadNullState state;
 153     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::targetAttr, String(env, value));
 154 }
 155 
 156 JNIEXPORT jlong JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getElementsImpl(JNIEnv* env, jclass, jlong peer)
 157 {
 158     WebCore::JSMainThreadNullState state;
 159     return JavaReturn<HTMLCollection>(env, WTF::getPtr(IMPL->elementsForNativeBindings()));
 160 }
 161 
 162 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_getLengthImpl(JNIEnv*, jclass, jlong peer)
 163 {
 164     WebCore::JSMainThreadNullState state;
 165     return IMPL->length();
 166 }
 167 
 168 
 169 // Functions
 170 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_submitImpl(JNIEnv*, jclass, jlong peer)
 171 {
 172     WebCore::JSMainThreadNullState state;
 173     IMPL->submit();
 174 }
 175 
 176 
 177 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_resetImpl(JNIEnv*, jclass, jlong peer)
 178 {
 179     WebCore::JSMainThreadNullState state;
 180     IMPL->reset();
 181 }
 182 
 183 
 184 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_HTMLFormElementImpl_checkValidityImpl(JNIEnv*, jclass, jlong peer)
 185 {
 186     WebCore::JSMainThreadNullState state;
 187     return IMPL->checkValidity();
 188 }
 189 
 190 
 191 }