blob: d0118e5c65f16ef6c265b69f8d6f0ebbb816e05e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.zeppelin.helium;
import java.io.IOException;
import java.lang.reflect.Constructor;
import com.google.gson.Gson;
import org.apache.log4j.ConsoleAppender;
import org.apache.log4j.Level;
import org.apache.log4j.PatternLayout;
import org.apache.zeppelin.interpreter.*;
import org.apache.zeppelin.interpreter.InterpreterResult.Code;
import org.apache.zeppelin.interpreter.remote.RemoteInterpreterEventClient;
import org.apache.zeppelin.resource.ResourceSet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Run this server for development mode.
*/
public class ZeppelinApplicationDevServer extends ZeppelinDevServer {
final Logger logger = LoggerFactory.getLogger(ZeppelinApplicationDevServer.class);
private final String className;
private final ResourceSet resourceSet;
private Application app;
private InterpreterOutput out;
public ZeppelinApplicationDevServer(final String className, ResourceSet resourceSet) throws
Exception {
this(Constants.ZEPPELIN_INTERPRETER_DEFAUlT_PORT, className, resourceSet);
}
public ZeppelinApplicationDevServer(int port, String className, ResourceSet resourceSet) throws
Exception {
super(port);
this.className = className;
this.resourceSet = resourceSet;
setLogger();
};
void setLogger() {
ConsoleAppender console = new ConsoleAppender(); //create appender
//configure the appender
String PATTERN = "%d [%p|%c|%C{1}] %m%n";
console.setLayout(new PatternLayout(PATTERN));
console.setThreshold(Level.DEBUG);
console.activateOptions();
//add appender to any Logger (here is root)
org.apache.log4j.Logger.getRootLogger().addAppender(console);
}
@Override
public InterpreterResult interpret(String st, InterpreterContext context) {
if (app == null) {
logger.info("Create instance " + className);
try {
Class<?> appClass = ClassLoader.getSystemClassLoader().loadClass(className);
Constructor<?> constructor = appClass.getConstructor(ApplicationContext.class);
// classPath will be ..../target/classes in dev mode most cases
String classPath = appClass.getProtectionDomain().getCodeSource().getLocation().getPath();
context.out.addResourceSearchPath(classPath + "../../src/main/resources/");
context.out.addResourceSearchPath(classPath + "../../src/test/resources/");
ApplicationContext appContext = getApplicationContext(context);
app = (Application) constructor.newInstance(appContext);
} catch (Exception e) {
logger.error(e.getMessage(), e);
return new InterpreterResult(Code.ERROR, e.getMessage());
}
}
try {
logger.info("Run " + className);
app.context().out.clear();
app.context().out.setType(InterpreterResult.Type.ANGULAR);
transferTableResultDataToFrontend();
app.run(resourceSet);
} catch (IOException | ApplicationException e) {
logger.error(e.getMessage(), e);
return new InterpreterResult(Code.ERROR, e.getMessage());
}
return new InterpreterResult(Code.SUCCESS, "");
}
private void transferTableResultDataToFrontend() throws IOException {
ResourceSet results = resourceSet.filterByClassname(InterpreterResult.class.getName());
if (results.size() == 0) {
return;
}
InterpreterResultMessage result = (InterpreterResultMessage) results.get(0).get();
Gson gson = new Gson();
String resultJson = gson.toJson(result);
StringBuffer transferResult = new StringBuffer();
transferResult.append("$z.result = " + resultJson + ";\n");
if (result.getType() == InterpreterResult.Type.TABLE) {
transferResult.append("$z.scope.loadTableData($z.result);\n");
}
transferResult.append("$z.scope._devmodeResult = $z.result;\n");
app.printStringAsJavascript(transferResult.toString());
}
ApplicationContext getApplicationContext(InterpreterContext interpreterContext) {
return new ApplicationContext(
interpreterContext.getNoteId(),
interpreterContext.getParagraphId(),
"app_" + this.hashCode(),
new HeliumAppAngularObjectRegistry(
interpreterContext.getAngularObjectRegistry(),
interpreterContext.getNoteId(),
interpreterContext.getParagraphId()),
interpreterContext.out);
}
@Override
protected InterpreterOutput createInterpreterOutput(
final String noteId, final String paragraphId) {
if (out == null) {
final RemoteInterpreterEventClient eventClient = getIntpEventClient();
try {
out = new InterpreterOutput(new InterpreterOutputListener() {
@Override
public void onUpdateAll(InterpreterOutput out) {
}
@Override
public void onAppend(int index, InterpreterResultMessageOutput out, byte[] line) {
eventClient.onInterpreterOutputAppend(noteId, paragraphId, index, new String(line));
}
@Override
public void onUpdate(int index, InterpreterResultMessageOutput out) {
try {
eventClient.onInterpreterOutputUpdate(noteId, paragraphId,
index, out.getType(), new String(out.toByteArray()));
} catch (IOException e) {
logger.error(e.getMessage(), e);
}
}
}, this);
} catch (IOException e) {
return null;
}
}
return out;
}
}