org.apache.zeppelin.interpreter.LazyOpenInterpreter Maven / Gradle / Ivy
The newest version!
/*
* 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.interpreter;
import java.net.URL;
import java.util.List;
import java.util.Properties;
import org.apache.zeppelin.interpreter.thrift.InterpreterCompletion;
import org.apache.zeppelin.scheduler.Scheduler;
/**
* Interpreter wrapper for lazy initialization
*/
public class LazyOpenInterpreter
extends Interpreter
implements WrappedInterpreter {
private Interpreter intp;
volatile boolean opened = false;
public LazyOpenInterpreter(Interpreter intp) {
super(new Properties());
this.intp = intp;
}
@Override
public Interpreter getInnerInterpreter() {
return intp;
}
@Override
public void setProperties(Properties properties) {
intp.setProperties(properties);
}
@Override
public Properties getProperties() {
return intp.getProperties();
}
@Override
public String getProperty(String key) {
return intp.getProperty(key);
}
@Override
public void open() throws InterpreterException {
if (opened) {
return;
}
synchronized (intp) {
if (!opened) {
try {
intp.open();
opened = true;
} catch (Throwable e) {
// close interpreter to release resource,
// otherwise these resources may leak when open it again.
intp.close();
throw new InterpreterException(e);
}
}
}
}
@Override
public InterpreterResult executePrecode(InterpreterContext interpreterContext)
throws InterpreterException {
return intp.executePrecode(interpreterContext);
}
@Override
public void close() throws InterpreterException {
synchronized (intp) {
if (opened) {
intp.close();
opened = false;
}
}
}
public boolean isOpen() {
return opened;
}
@Override
public InterpreterResult interpret(String st, InterpreterContext context)
throws InterpreterException {
open();
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
try {
return intp.interpret(st, context);
} finally {
Thread.currentThread().setContextClassLoader(classLoader);
}
}
@Override
public void cancel(InterpreterContext context) throws InterpreterException {
if (opened) {
intp.cancel(context);
}
}
@Override
public FormType getFormType() throws InterpreterException {
return intp.getFormType();
}
@Override
public int getProgress(InterpreterContext context) throws InterpreterException {
if (opened) {
return intp.getProgress(context);
} else {
return 0;
}
}
@Override
public Scheduler getScheduler() {
return intp.getScheduler();
}
@Override
public List completion(String buf, int cursor,
InterpreterContext interpreterContext) throws InterpreterException {
open();
return intp.completion(buf, cursor, interpreterContext);
}
@Override
public String getClassName() {
return intp.getClassName();
}
@Override
public InterpreterGroup getInterpreterGroup() {
return intp.getInterpreterGroup();
}
@Override
public void setInterpreterGroup(InterpreterGroup interpreterGroup) {
intp.setInterpreterGroup(interpreterGroup);
}
@Override
public URL [] getClassloaderUrls() {
return intp.getClassloaderUrls();
}
@Override
public void setClassloaderUrls(URL [] urls) {
intp.setClassloaderUrls(urls);
}
@Override
public void registerHook(String noteId, String event, String cmd) throws InvalidHookException {
intp.registerHook(noteId, event, cmd);
}
@Override
public void registerHook(String event, String cmd) throws InvalidHookException {
intp.registerHook(event, cmd);
}
@Override
public String getHook(String noteId, String event) {
return intp.getHook(noteId, event);
}
@Override
public String getHook(String event) {
return intp.getHook(event);
}
@Override
public void unregisterHook(String noteId, String event) {
intp.unregisterHook(noteId, event);
}
@Override
public void unregisterHook(String event) {
intp.unregisterHook(event);
}
@Override
public void setUserName(String userName) {
this.intp.setUserName(userName);
}
@Override
public String getUserName() {
return this.intp.getUserName();
}
}