com.sun.tools.example.debug.expr.ParseException Java Examples

The following examples show how to use com.sun.tools.example.debug.expr.ParseException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ExecutionManager.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #2
Source File: ExecutionManager.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #3
Source File: Commands.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #4
Source File: MonitorTool.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #5
Source File: ExecutionManager.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #6
Source File: Commands.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #7
Source File: MonitorTool.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #8
Source File: ExecutionManager.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #9
Source File: Commands.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #10
Source File: MonitorTool.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #11
Source File: MonitorTool.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #12
Source File: Commands.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #13
Source File: MonitorTool.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #14
Source File: ExecutionManager.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #15
Source File: Commands.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #16
Source File: MonitorTool.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #17
Source File: ExecutionManager.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #18
Source File: Commands.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #19
Source File: MonitorTool.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #20
Source File: ExecutionManager.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #21
Source File: Commands.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #22
Source File: MonitorTool.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #23
Source File: ExecutionManager.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #24
Source File: Commands.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #25
Source File: MonitorTool.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #26
Source File: ExecutionManager.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #27
Source File: Commands.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}
 
Example #28
Source File: MonitorTool.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private Value evaluate(String expr) throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter =
        new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get()
                throws IncompatibleThreadStateException
            {
                try {
                    return context.getCurrentFrame();
                } catch (VMNotInterruptedException exc) {
                    throw new IncompatibleThreadStateException();
                }
            }
        };
    return ExpressionParser.evaluate(expr, runtime.vm(), frameGetter);
}
 
Example #29
Source File: ExecutionManager.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
public Value evaluate(final StackFrame f, String expr)
    throws ParseException,
                                        InvocationException,
                                        InvalidTypeException,
                                        ClassNotLoadedException,
                                        NoSessionException,
                                        IncompatibleThreadStateException {
    ExpressionParser.GetFrame frameGetter = null;
    ensureActiveSession();
    if (f != null) {
        frameGetter = new ExpressionParser.GetFrame() {
            @Override
            public StackFrame get() /* throws IncompatibleThreadStateException */ {
                return f;
            }
        };
    }
    return ExpressionParser.evaluate(expr, vm(), frameGetter);
}
 
Example #30
Source File: Commands.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
private String getStringValue() {
     Value val = null;
     String valStr = null;
     try {
          val = ExpressionParser.getMassagedValue();
          valStr = val.toString();
     } catch (ParseException e) {
          String msg = e.getMessage();
          if (msg == null) {
              MessageOutput.printException(msg, e);
          } else {
              String s;
              try {
                  s = MessageOutput.format(msg);
              } catch (MissingResourceException mex) {
                  s = e.toString();
              }
              MessageOutput.printDirectln(s);
          }
     }
     return valStr;
}