/* * 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.util.List; import java.util.Map; import org.apache.zeppelin.display.AngularObjectRegistry; import org.apache.zeppelin.user.AuthenticationInfo; import org.apache.zeppelin.display.GUI; import org.apache.zeppelin.interpreter.remote.RemoteEventClientWrapper; import org.apache.zeppelin.interpreter.remote.RemoteEventClient; import org.apache.zeppelin.interpreter.remote.RemoteInterpreterEventClient; import org.apache.zeppelin.resource.ResourcePool; /** * Interpreter context */ public class InterpreterContext { private static final ThreadLocal<InterpreterContext> threadIC = new ThreadLocal<>(); public final InterpreterOutput out; public static InterpreterContext get() { return threadIC.get(); } public static void set(InterpreterContext ic) { threadIC.set(ic); } public static void remove() { threadIC.remove(); } private final String noteId; private final String replName; private final String paragraphTitle; private final String paragraphId; private final String paragraphText; private AuthenticationInfo authenticationInfo; private final Map<String, Object> config; private GUI gui; private AngularObjectRegistry angularObjectRegistry; private ResourcePool resourcePool; private List<InterpreterContextRunner> runners; private String className; private RemoteEventClientWrapper client; private RemoteWorksController remoteWorksController; public InterpreterContext(String noteId, String paragraphId, String replName, String paragraphTitle, String paragraphText, AuthenticationInfo authenticationInfo, Map<String, Object> config, GUI gui, AngularObjectRegistry angularObjectRegistry, ResourcePool resourcePool, List<InterpreterContextRunner> runners, InterpreterOutput out ) { this(noteId, paragraphId, replName, paragraphTitle, paragraphText, authenticationInfo, config, gui, angularObjectRegistry, resourcePool, runners, out, null); } public InterpreterContext(String noteId, String paragraphId, String replName, String paragraphTitle, String paragraphText, AuthenticationInfo authenticationInfo, Map<String, Object> config, GUI gui, AngularObjectRegistry angularObjectRegistry, ResourcePool resourcePool, List<InterpreterContextRunner> runners, InterpreterOutput out, RemoteWorksController remoteWorksController ) { this.noteId = noteId; this.paragraphId = paragraphId; this.replName = replName; this.paragraphTitle = paragraphTitle; this.paragraphText = paragraphText; this.authenticationInfo = authenticationInfo; this.config = config; this.gui = gui; this.angularObjectRegistry = angularObjectRegistry; this.resourcePool = resourcePool; this.runners = runners; this.out = out; this.remoteWorksController = remoteWorksController; } public InterpreterContext(String noteId, String paragraphId, String replName, String paragraphTitle, String paragraphText, AuthenticationInfo authenticationInfo, Map<String, Object> config, GUI gui, AngularObjectRegistry angularObjectRegistry, ResourcePool resourcePool, List<InterpreterContextRunner> contextRunners, InterpreterOutput output, RemoteWorksController remoteWorksController, RemoteInterpreterEventClient eventClient) { this(noteId, paragraphId, replName, paragraphTitle, paragraphText, authenticationInfo, config, gui, angularObjectRegistry, resourcePool, contextRunners, output, remoteWorksController); this.client = new RemoteEventClient(eventClient); } public String getNoteId() { return noteId; } public String getReplName() { return replName; } public String getParagraphId() { return paragraphId; } public String getParagraphText() { return paragraphText; } public String getParagraphTitle() { return paragraphTitle; } public AuthenticationInfo getAuthenticationInfo() { return authenticationInfo; } public Map<String, Object> getConfig() { return config; } public GUI getGui() { return gui; } public AngularObjectRegistry getAngularObjectRegistry() { return angularObjectRegistry; } public ResourcePool getResourcePool() { return resourcePool; } public List<InterpreterContextRunner> getRunners() { return runners; } public String getClassName() { return className; } public void setClassName(String className) { this.className = className; } public RemoteEventClientWrapper getClient() { return client; } public RemoteWorksController getRemoteWorksController() { return remoteWorksController; } public void setRemoteWorksController(RemoteWorksController remoteWorksController) { this.remoteWorksController = remoteWorksController; } public InterpreterOutput out() { return out; } }