-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from StrongestNumber9/clean_clean
remove interpreters and configurations that are not part of the teragrep core
- Loading branch information
Showing
233 changed files
with
1,960 additions
and
20,559 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
angular/src/main/java/org/apache/zeppelin/angular/AngularInterpreter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* 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.angular; | ||
|
||
import java.util.LinkedList; | ||
import java.util.List; | ||
import java.util.Properties; | ||
|
||
import org.apache.zeppelin.interpreter.Interpreter; | ||
import org.apache.zeppelin.interpreter.InterpreterContext; | ||
import org.apache.zeppelin.interpreter.InterpreterResult; | ||
import org.apache.zeppelin.interpreter.InterpreterResult.Code; | ||
import org.apache.zeppelin.interpreter.InterpreterResult.Type; | ||
import org.apache.zeppelin.interpreter.thrift.InterpreterCompletion; | ||
import org.apache.zeppelin.scheduler.Scheduler; | ||
import org.apache.zeppelin.scheduler.SchedulerFactory; | ||
|
||
/** | ||
* | ||
*/ | ||
public class AngularInterpreter extends Interpreter { | ||
|
||
public AngularInterpreter(Properties property) { | ||
super(property); | ||
} | ||
|
||
@Override | ||
public void open() { | ||
} | ||
|
||
@Override | ||
public void close() { | ||
} | ||
|
||
@Override | ||
public InterpreterResult interpret(String st, InterpreterContext context) { | ||
return new InterpreterResult(Code.SUCCESS, Type.ANGULAR, st); | ||
} | ||
|
||
@Override | ||
public void cancel(InterpreterContext context) { | ||
} | ||
|
||
@Override | ||
public FormType getFormType() { | ||
return FormType.NATIVE; | ||
} | ||
|
||
@Override | ||
public int getProgress(InterpreterContext context) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public List<InterpreterCompletion> completion(String buf, int cursor, | ||
InterpreterContext interpreterContext) { | ||
return new LinkedList<>(); | ||
} | ||
|
||
@Override | ||
public Scheduler getScheduler() { | ||
return SchedulerFactory.singleton().createOrGetFIFOScheduler( | ||
AngularInterpreter.class.getName() + this.hashCode()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[ | ||
{ | ||
"group": "angular", | ||
"name": "angular", | ||
"className": "org.apache.zeppelin.angular.AngularInterpreter", | ||
"properties": { | ||
}, | ||
"editor": { | ||
"editOnDblClick": true, | ||
"completionSupport": false | ||
} | ||
}, | ||
{ | ||
"group": "angular", | ||
"name": "ng", | ||
"className": "org.apache.zeppelin.angular.AngularInterpreter", | ||
"properties": { | ||
}, | ||
"editor": { | ||
"editOnDblClick": true, | ||
"completionSupport": false | ||
} | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.