当前位置: 首页>>代码示例>>Java>>正文


Java Code.INCOMPLETE属性代码示例

本文整理汇总了Java中org.apache.zeppelin.interpreter.InterpreterResult.Code.INCOMPLETE属性的典型用法代码示例。如果您正苦于以下问题:Java Code.INCOMPLETE属性的具体用法?Java Code.INCOMPLETE怎么用?Java Code.INCOMPLETE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.apache.zeppelin.interpreter.InterpreterResult.Code的用法示例。


在下文中一共展示了Code.INCOMPLETE属性的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getResultCode

private Code getResultCode(Result res) {
  if (res instanceof scala.tools.nsc.interpreter.Results.Success$) {
    return Code.SUCCESS;
  } else if (res instanceof scala.tools.nsc.interpreter.Results.Incomplete$) {
    return Code.INCOMPLETE;
  } else {
    return Code.ERROR;
  }
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:9,代码来源:IgniteInterpreter.java

示例2: getResultCode

private Code getResultCode(scala.tools.nsc.interpreter.Results.Result r) {
  if (r instanceof scala.tools.nsc.interpreter.Results.Success$) {
    return Code.SUCCESS;
  } else if (r instanceof scala.tools.nsc.interpreter.Results.Incomplete$) {
    return Code.INCOMPLETE;
  } else {
    return Code.ERROR;
  }
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:9,代码来源:SparkInterpreter.java

示例3: interpret

@Override
public InterpreterResult interpret(String st, InterpreterContext context) {
  PrintStream printStream = new PrintStream(out);
  Console.setOut(printStream);
  out.reset();

  SparkInterpreter sparkInterpreter = getSparkInterpreter();

  if (sparkInterpreter != null && sparkInterpreter.isSparkContextInitialized()) {
    return new InterpreterResult(Code.ERROR,
        "Must be used before SparkInterpreter (%spark) initialized\n" +
        "Hint: put this paragraph before any Spark code and " +
        "restart Zeppelin/Interpreter" );
  }

  scala.tools.nsc.interpreter.Results.Result ret = intp.interpret(st);
  Code code = getResultCode(ret);

  try {
    depc.fetch();
  } catch (MalformedURLException | DependencyResolutionException
      | ArtifactResolutionException e) {
    return new InterpreterResult(Code.ERROR, e.toString());
  }

  if (code == Code.INCOMPLETE) {
    return new InterpreterResult(code, "Incomplete expression");
  } else if (code == Code.ERROR) {
    return new InterpreterResult(code, out.toString());
  } else {
    return new InterpreterResult(code, out.toString());
  }
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:33,代码来源:DepInterpreter.java

示例4: interpret

@Override
public InterpreterResult interpret(String st, InterpreterContext context) {
  PrintStream printStream = new PrintStream(out);
  Console.setOut(printStream);
  out.reset();

  SparkInterpreter sparkInterpreter = getSparkInterpreter();

  if (sparkInterpreter != null && sparkInterpreter.isSparkContextInitialized()) {
    return new InterpreterResult(Code.ERROR,
        "Must be used before SparkInterpreter (%spark) initialized\n" +
        "Hint: put this paragraph before any Spark code and " +
        "restart Zeppelin/Interpreter" );
  }

  scala.tools.nsc.interpreter.Results.Result ret = interpret(st);
  Code code = getResultCode(ret);

  try {
    depc.fetch();
  } catch (MalformedURLException | DependencyResolutionException
      | ArtifactResolutionException e) {
    LOGGER.error("Exception in DepInterpreter while interpret ", e);
    return new InterpreterResult(Code.ERROR, e.toString());
  }

  if (code == Code.INCOMPLETE) {
    return new InterpreterResult(code, "Incomplete expression");
  } else if (code == Code.ERROR) {
    return new InterpreterResult(code, out.toString());
  } else {
    return new InterpreterResult(code, out.toString());
  }
}
 
开发者ID:apache,项目名称:zeppelin,代码行数:34,代码来源:DepInterpreter.java

示例5: interpret

private InterpreterResult interpret(String[] lines) {
  String[] linesToRun = new String[lines.length + 1];
  System.arraycopy(lines, 0, linesToRun, 0, lines.length);
  linesToRun[lines.length] = "print(\"\")";

  Console.setOut(out);
  out.reset();
  Code code = null;

  String incomplete = "";
  for (int l = 0; l < linesToRun.length; l++) {
    String s = linesToRun[l];      
    // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
    if (l + 1 < linesToRun.length) {
      String nextLine = linesToRun[l + 1].trim();
      if (nextLine.startsWith(".") && !nextLine.startsWith("..") && !nextLine.startsWith("./")) {
        incomplete += s + "\n";
        continue;
      }
    }

    try {
      code = getResultCode(imain.interpret(incomplete + s));
    } catch (Exception e) {
      logger.info("Interpreter exception", e);
      return new InterpreterResult(Code.ERROR, InterpreterUtils.getMostRelevantMessage(e));
    }

    if (code == Code.ERROR) {
      return new InterpreterResult(code, out.toString());
    } else if (code == Code.INCOMPLETE) {
      incomplete += s + '\n';
    } else {
      incomplete = "";
    }
  }

  if (code == Code.INCOMPLETE) {
    return new InterpreterResult(code, "Incomplete expression");
  } else {
    return new InterpreterResult(code, out.toString());
  }
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:43,代码来源:IgniteInterpreter.java

示例6: interpretInput

public InterpreterResult interpretInput(String[] lines) {
  SparkEnv.set(env);

  // add print("") to make sure not finishing with comment
  // see https://github.com/NFLabs/zeppelin/issues/151
  String[] linesToRun = new String[lines.length + 1];
  for (int i = 0; i < lines.length; i++) {
    linesToRun[i] = lines[i];
  }
  linesToRun[lines.length] = "print(\"\")";

  Console.setOut((java.io.PrintStream) binder.get("out"));
  out.reset();
  Code r = null;
  String incomplete = "";

  for (int l = 0; l < linesToRun.length; l++) {
    String s = linesToRun[l];
    // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
    if (l + 1 < linesToRun.length) {
      String nextLine = linesToRun[l + 1].trim();
      if (nextLine.startsWith(".") && !nextLine.startsWith("..") && !nextLine.startsWith("./")) {
        incomplete += s + "\n";
        continue;
      }
    }

    scala.tools.nsc.interpreter.Results.Result res = null;
    try {
      res = intp.interpret(incomplete + s);
    } catch (Exception e) {
      sc.clearJobGroup();
      logger.info("Interpreter exception", e);
      return new InterpreterResult(Code.ERROR, InterpreterUtils.getMostRelevantMessage(e));
    }

    r = getResultCode(res);

    if (r == Code.ERROR) {
      sc.clearJobGroup();
      return new InterpreterResult(r, out.toString());
    } else if (r == Code.INCOMPLETE) {
      incomplete += s + "\n";
    } else {
      incomplete = "";
    }
  }

  if (r == Code.INCOMPLETE) {
    return new InterpreterResult(r, "Incomplete expression");
  } else {
    return new InterpreterResult(r, out.toString());
  }
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:54,代码来源:SparkInterpreter.java

示例7: interpret

public InterpreterResult interpret(String[] lines, InterpreterContext context) {
  final IMain imain = flinkIloop.intp();
  
  String[] linesToRun = new String[lines.length + 1];
  for (int i = 0; i < lines.length; i++) {
    linesToRun[i] = lines[i];
  }
  linesToRun[lines.length] = "print(\"\")";

  System.setOut(new PrintStream(out));
  out.reset();
  Code r = null;

  String incomplete = "";
  for (int l = 0; l < linesToRun.length; l++) {
    final String s = linesToRun[l];
    // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
    if (l + 1 < linesToRun.length) {
      String nextLine = linesToRun[l + 1].trim();
      if (nextLine.startsWith(".") && !nextLine.startsWith("..") && !nextLine.startsWith("./")) {
        incomplete += s + "\n";
        continue;
      }
    }

    final String currentCommand = incomplete;

    scala.tools.nsc.interpreter.Results.Result res = null;
    try {
      res = Console.withOut(
        System.out,
        new AbstractFunction0<Results.Result>() {
          @Override
          public Results.Result apply() {
            return imain.interpret(currentCommand + s);
          }
        });
    } catch (Exception e) {
      logger.info("Interpreter exception", e);
      return new InterpreterResult(Code.ERROR, InterpreterUtils.getMostRelevantMessage(e));
    }

    r = getResultCode(res);

    if (r == Code.ERROR) {
      return new InterpreterResult(r, out.toString());
    } else if (r == Code.INCOMPLETE) {
      incomplete += s + "\n";
    } else {
      incomplete = "";
    }
  }

  if (r == Code.INCOMPLETE) {
    return new InterpreterResult(r, "Incomplete expression");
  } else {
    return new InterpreterResult(r, out.toString());
  }
}
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:59,代码来源:FlinkInterpreter.java

示例8: interpretInput

public InterpreterResult interpretInput(String[] lines) {

    // add print("") to make sure not finishing with comment
    // see https://github.com/NFLabs/zeppelin/issues/151
    String[] linesToRun = new String[lines.length + 1];
    for (int i = 0; i < lines.length; i++) {
      linesToRun[i] = lines[i];
    }
    linesToRun[lines.length] = "print(\"\")";

    Console.setOut((java.io.PrintStream) binder.get("out"));
    out.reset();
    Code r = null;
    String incomplete = "";

    for (int l = 0; l < linesToRun.length; l++) {
      String s = linesToRun[l];
      // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
      if (l + 1 < linesToRun.length) {
        String nextLine = linesToRun[l + 1].trim();
        if (nextLine.startsWith(".") && !nextLine.startsWith("..") && !nextLine.startsWith("./")) {
          incomplete += s + "\n";
          continue;
        }
      }

      scala.tools.nsc.interpreter.Results.Result res = null;
      try {
        res = interpreter.intp().interpret(incomplete + s);
      } catch (Exception e) {
        logger.error("Interpreter exception: ", e);
        return new InterpreterResult(Code.ERROR, e.getMessage());
      }

      r = getResultCode(res);

      if (r == Code.ERROR) {
        Console.flush();
        return new InterpreterResult(r, out.toString());
      } else if (r == Code.INCOMPLETE) {
        incomplete += s + "\n";
      } else {
        incomplete = "";
      }
    }

    if (r == Code.INCOMPLETE) {
      return new InterpreterResult(r, "Incomplete expression");
    } else {
      Console.flush();
      return new InterpreterResult(r, out.toString());
    }
  }
 
开发者ID:lorthos,项目名称:incubator-zeppelin-druid,代码行数:53,代码来源:ScaldingInterpreter.java

示例9: interpret

private InterpreterResult interpret(String[] lines) {
  String[] linesToRun = new String[lines.length + 1];
  System.arraycopy(lines, 0, linesToRun, 0, lines.length);
  linesToRun[lines.length] = "print(\"\")";

  Console.setOut(out);
  out.reset();
  Code code = null;

  String incomplete = "";
  for (int l = 0; l < linesToRun.length; l++) {
    String s = linesToRun[l];      
    // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
    if (l + 1 < linesToRun.length) {
      String nextLine = linesToRun[l + 1].trim();
      if (nextLine.startsWith(".") && !nextLine.startsWith("..") && !nextLine.startsWith("./")) {
        incomplete += s + "\n";
        continue;
      }
    }

    ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
    try {
      code = getResultCode(imain.interpret(incomplete + s));
    } catch (Exception e) {
      logger.info("Interpreter exception", e);
      return new InterpreterResult(Code.ERROR, InterpreterUtils.getMostRelevantMessage(e));
    } finally {
      Thread.currentThread().setContextClassLoader(contextClassLoader);
    }

    if (code == Code.ERROR) {
      return new InterpreterResult(code, out.toString());
    } else if (code == Code.INCOMPLETE) {
      incomplete += s + '\n';
    } else {
      incomplete = "";
    }
  }

  if (code == Code.INCOMPLETE) {
    return new InterpreterResult(code, "Incomplete expression");
  } else {
    return new InterpreterResult(code, out.toString());
  }
}
 
开发者ID:apache,项目名称:zeppelin,代码行数:46,代码来源:IgniteInterpreter.java

示例10: interpret

public InterpreterResult interpret(String[] lines, InterpreterContext context) {
  final IMain imain = flinkIloop.intp();
  
  String[] linesToRun = new String[lines.length + 1];
  for (int i = 0; i < lines.length; i++) {
    linesToRun[i] = lines[i];
  }
  linesToRun[lines.length] = "print(\"\")";

  System.setOut(new PrintStream(out));
  out.reset();
  Code r = null;

  String incomplete = "";
  boolean inComment = false;

  for (int l = 0; l < linesToRun.length; l++) {
    final String s = linesToRun[l];
    // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
    if (l + 1 < linesToRun.length) {
      String nextLine = linesToRun[l + 1].trim();
      boolean continuation = false;
      if (nextLine.isEmpty()
              || nextLine.startsWith("//")         // skip empty line or comment
              || nextLine.startsWith("}")
              || nextLine.startsWith("object")) { // include "} object" for Scala companion object
        continuation = true;
      } else if (!inComment && nextLine.startsWith("/*")) {
        inComment = true;
        continuation = true;
      } else if (inComment && nextLine.lastIndexOf("*/") >= 0) {
        inComment = false;
        continuation = true;
      } else if (nextLine.length() > 1
              && nextLine.charAt(0) == '.'
              && nextLine.charAt(1) != '.'     // ".."
              && nextLine.charAt(1) != '/') {  // "./"
        continuation = true;
      } else if (inComment) {
        continuation = true;
      }
      if (continuation) {
        incomplete += s + "\n";
        continue;
      }
    }

    final String currentCommand = incomplete;

    scala.tools.nsc.interpreter.Results.Result res = null;
    try {
      res = Console.withOut(
        System.out,
        new AbstractFunction0<Results.Result>() {
          @Override
          public Results.Result apply() {
            return imain.interpret(currentCommand + s);
          }
        });
    } catch (Exception e) {
      logger.info("Interpreter exception", e);
      return new InterpreterResult(Code.ERROR, InterpreterUtils.getMostRelevantMessage(e));
    }

    r = getResultCode(res);

    if (r == Code.ERROR) {
      return new InterpreterResult(r, out.toString());
    } else if (r == Code.INCOMPLETE) {
      incomplete += s + "\n";
    } else {
      incomplete = "";
    }
  }

  if (r == Code.INCOMPLETE) {
    return new InterpreterResult(r, "Incomplete expression");
  } else {
    return new InterpreterResult(r, out.toString());
  }
}
 
开发者ID:apache,项目名称:zeppelin,代码行数:81,代码来源:FlinkInterpreter.java

示例11: interpretInput

public InterpreterResult interpretInput(String[] lines) {

    // add print("") to make sure not finishing with comment
    // see https://github.com/NFLabs/zeppelin/issues/151
    String[] linesToRun = new String[lines.length + 1];
    for (int i = 0; i < lines.length; i++) {
      linesToRun[i] = lines[i];
    }
    linesToRun[lines.length] = "print(\"\")";

    out.reset();

    // Moving two lines below from open() to this function.
    // If they are in open output is incomplete.
    PrintStream printStream = new PrintStream(out, true);
    Console.setOut(printStream);

    Code r = null;
    String incomplete = "";
    boolean inComment = false;

    for (int l = 0; l < linesToRun.length; l++) {
      String s = linesToRun[l];
      // check if next line starts with "." (but not ".." or "./") it is treated as an invocation
      if (l + 1 < linesToRun.length) {
        String nextLine = linesToRun[l + 1].trim();
        boolean continuation = false;
        if (nextLine.isEmpty()
                || nextLine.startsWith("//")         // skip empty line or comment
                || nextLine.startsWith("}")
                || nextLine.startsWith("object")) { // include "} object" for Scala companion object
          continuation = true;
        } else if (!inComment && nextLine.startsWith("/*")) {
          inComment = true;
          continuation = true;
        } else if (inComment && nextLine.lastIndexOf("*/") >= 0) {
          inComment = false;
          continuation = true;
        } else if (nextLine.length() > 1
                && nextLine.charAt(0) == '.'
                && nextLine.charAt(1) != '.'     // ".."
                && nextLine.charAt(1) != '/') {  // "./"
          continuation = true;
        } else if (inComment) {
          continuation = true;
        }
        if (continuation) {
          incomplete += s + "\n";
          continue;
        }
      }

      scala.tools.nsc.interpreter.Results.Result res = null;
      try {
        res = interpreter.intp().interpret(incomplete + s);
      } catch (Exception e) {
        logger.error("Interpreter exception: ", e);
        return new InterpreterResult(Code.ERROR, e.getMessage());
      }

      r = getResultCode(res);

      if (r == Code.ERROR) {
        Console.flush();
        return new InterpreterResult(r, out.toString());
      } else if (r == Code.INCOMPLETE) {
        incomplete += s + "\n";
      } else {
        incomplete = "";
      }
    }
    if (r == Code.INCOMPLETE) {
      return new InterpreterResult(r, "Incomplete expression");
    } else {
      Console.flush();
      return new InterpreterResult(r, out.toString());
    }
  }
 
开发者ID:apache,项目名称:zeppelin,代码行数:78,代码来源:ScaldingInterpreter.java


注:本文中的org.apache.zeppelin.interpreter.InterpreterResult.Code.INCOMPLETE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。