private ConsoleOutputStream(InteractiveInterpreterConsole console) { super(); this.console = console; enabled = false; this.backup = RuntimePlugin.getInstance().getConsoleStream(); }
private ImageDescriptorRegistry getRegistry() { if (fRegistry == null) { fRegistry = fUseNewRegistry ? new ImageDescriptorRegistry() : RuntimePlugin.getImageDescriptorRegistry(); } return fRegistry; }
/** * Note: This method is for internal use only. Clients should not call this method. * * @param obj the element to compute the flags for * @return the adornment flags */ protected int computeAdornmentFlags(Object obj) { try { if (obj instanceof ISourceEntity) { ISourceEntity element = (ISourceEntity) obj; IResource res = element.getResource(); int depth = IResource.DEPTH_INFINITE; if (element instanceof ICompilationUnit) { depth = IResource.DEPTH_ONE; } return getErrorTicksFromMarkers(res, depth); } else if (obj instanceof IResource) { return getErrorTicksFromMarkers((IResource) obj, IResource.DEPTH_INFINITE); } } catch (CoreException e) { if (e.getStatus().getCode() == IResourceStatus.MARKER_NOT_FOUND) { return 0; } RuntimePlugin.getInstance().logException("", e); } return 0; }
public class ReportView extends ViewPart implements IAmbiDexterMonitor { public static final String ID = ID_AMBIDEXTER_REPORT_VIEW_PART; private static final IValueFactory VF = ValueFactoryFactory.getValueFactory(); private final PrintStream out = RuntimePlugin.getInstance().getConsoleStream(); private TableColumn nonterminals; private TableColumn sentences; private Table table; private final StandardTextReader reader = new StandardTextReader(); private volatile boolean canceling; private AmbiDexterJob job; public ReportView() { super(); job = new AmbiDexterJob("AmbiDexter"); } public void run(final Grammar grammar, final AmbiDexterConfig cfg) { table.removeAll(); println("Running AmbiDexter..."); grammar.printSize(this); canceling = false; job.init(grammar, cfg); job.schedule(); } @Override public void createPartControl(Composite parent) { table = new Table(parent, SWT.BORDER); nonterminals = new TableColumn(table, SWT.CENTER); sentences = new TableColumn(table, SWT.CENTER); nonterminals.setText("Symbol"); sentences.setText("Sentence"); nonterminals.setWidth(70); sentences.setWidth(70); table.setHeaderVisible(true); IToolBarManager toolbar = getViewSite().getActionBars().getToolBarManager(); installAction(toolbar, new EditSentenceAction()); installAction(toolbar, new EditTreeAction()); installAction(toolbar, new BrowseTreeAction()); installAction(toolbar, new DiagnoseAction()); } private void installAction(IToolBarManager toolbar, AbstractAmbidexterAction edit) { table.addSelectionListener(edit); toolbar.add(edit); } @Override public void setFocus() { // TODO Auto-generated method stub } @Override public void println() { out.println(); } @Override public void println(Object o) { out.println(o); } @Override public void errPrintln() { out.println("error:"); } @Override public void errPrintln(Object o) { out.println("error:" + o); } @Override public void ambiguousString( final AmbiDexterConfig cfg, final SymbolString s, final NonTerminal n, String messagePrefix) { try { final IConstructor sym = (IConstructor) reader.read( VF, RascalValueFactory.uptr, RascalValueFactory.Symbol, new StringReader(n.prettyPrint())); final String ascii = toascci(s); final String module = getModuleName(cfg.filename); final String project = getProjectName(cfg.filename); addItem(sym, ascii, module, project, null); } catch (FactTypeUseException e) { Activator.getInstance().logException("failed to register ambiguity", e); } catch (IOException e) { Activator.getInstance().logException("failed to register ambiguity", e); } } private void addItem( final IConstructor sym, final String ascii, final String module, final String project, final IConstructor tree) { PlatformUI.getWorkbench() .getDisplay() .asyncExec( new Runnable() { @Override public void run() { TableItem item = new TableItem(table, SWT.NONE); item.setText(new String[] {SymbolAdapter.toString(sym, false), ascii}); item.setData("nonterminal", sym); item.setData("sentence", ascii); item.setData("module", module); item.setData("project", project); item.setData("tree", tree); } }); } private String getProjectName(String filename) { int i = filename.indexOf('/'); if (i != -1) { return filename.substring(0, i); } return null; } private String getModuleName(String filename) { int i = filename.indexOf('/'); if (i != -1) { return filename.substring(i + 1); } return null; } private String toascci(SymbolString s) { StringBuilder b = new StringBuilder(); for (int i = 0; i < s.size(); i++) { Character ch = (Character) s.get(i); b.append(ch.toAscii()); } return b.toString(); } public static void listAmbiguities( final String project, final String module, final IConstructor parseTree, final IProgressMonitor monitor) { PlatformUI.getWorkbench() .getDisplay() .asyncExec( new Runnable() { @Override public void run() { try { ReportView part = (ReportView) PlatformUI.getWorkbench() .getActiveWorkbenchWindow() .getActivePage() .showView(ID); part.list(project, module, parseTree, monitor); } catch (PartInitException e) { RuntimePlugin.getInstance().logException("could not parse module", e); } } }); } public void list( final String project, final String module, IConstructor parseTree, final IProgressMonitor monitor) { table.removeAll(); try { parseTree.accept( new IdentityTreeVisitor<Exception>() { int ambTreesSeen = 0; @Override public ITree visitTreeAppl(ITree arg) throws Exception { if (monitor.isCanceled()) { throw new Exception("interrupted"); } monitor.worked(1); for (IValue child : TreeAdapter.getArgs(arg)) { child.accept(this); } return arg; } @Override public ITree visitTreeAmb(ITree arg) throws Exception { ambTreesSeen++; if (ambTreesSeen > 100) { throw new RuntimeException( "Lets stop collecting, the user get's the point, it is VERY ambigious"); } IConstructor sym = null; String sentence = TreeAdapter.yield(arg); for (IValue child : TreeAdapter.getAlternatives(arg)) { sym = TreeAdapter.getType((ITree) child); child.accept(this); } addItem(sym, sentence, module, project, arg); return arg; } }); } catch (Exception e) { // do nothing } } @Override public void setTaskName(String name, int work) { IProgressMonitor m = job.monitor; if (m != null) { m.beginTask(name, work); } } @Override public void worked(int work) { IProgressMonitor m = job.monitor; if (m != null) { m.worked(work); } } @Override public boolean canceling() { return canceling; } private class AmbiDexterJob extends Job { private Main main; volatile IProgressMonitor monitor; public AmbiDexterJob(String name) { super(name); } public void init(Grammar grammar, AmbiDexterConfig config) { main = new Main(ReportView.this); main.setGrammar(grammar); main.setConfig(config); } @Override protected IStatus run(IProgressMonitor monitor) { this.monitor = monitor; // main.printGrammar(); try { main.checkGrammar(); } catch (OutOfMemoryError e) { Activator.log("out of memory while checking grammar for ambiguity", e); main = null; // help the GC in this case System.gc(); } monitor.done(); this.monitor = null; return Status.OK_STATUS; } @Override protected void canceling() { ReportView.this.canceling = true; } } }