org.teavm.html4j.JavaScriptObjectEnhancer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teavm-html4j Show documentation
Show all versions of teavm-html4j Show documentation
A set of interceptors and hacks for TeaVM to support html4j
/*
* Copyright 2017 Alexey Andreev.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.html4j;
import java.io.IOException;
import org.teavm.backend.javascript.codegen.SourceWriter;
import org.teavm.backend.javascript.rendering.RenderingManager;
import org.teavm.model.ClassReaderSource;
import org.teavm.model.MethodReference;
import org.teavm.model.ValueType;
import org.teavm.vm.BuildTarget;
import org.teavm.vm.spi.RendererListener;
public class JavaScriptObjectEnhancer implements RendererListener {
private ClassReaderSource classSource;
private SourceWriter writer;
private JavaScriptBodyDependency dependencyListener;
public JavaScriptObjectEnhancer(JavaScriptBodyDependency dependencyListener) {
this.dependencyListener = dependencyListener;
}
@Override
public void begin(RenderingManager context, BuildTarget buildTarget) {
classSource = context.getClassSource();
writer = context.getWriter();
}
@Override
public void complete() throws IOException {
for (String className : dependencyListener.getClassesPassedToJavaScript()) {
if (classSource.isSuperType("java.lang.Enum", className).orElse(false)) {
MethodReference toStringMethod = new MethodReference(className, "toString",
ValueType.parse(String.class));
writer.appendClass(className).append(".prototype.toString").ws().append("=").ws()
.append("function()").ws().append("{").indent().newLine();
writer.append("return $rt_ustr(").appendMethodBody(toStringMethod).append("(this));").softNewLine();
writer.outdent().append("};").softNewLine();
}
}
}
}