當前位置: 首頁>>代碼示例>>Java>>正文


Java Printer類代碼示例

本文整理匯總了Java中org.objectweb.asm.util.Printer的典型用法代碼示例。如果您正苦於以下問題:Java Printer類的具體用法?Java Printer怎麽用?Java Printer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Printer類屬於org.objectweb.asm.util包,在下文中一共展示了Printer類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: visitTableSwitchInsn

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
@Override
public final void visitTableSwitchInsn(final int min, final int max,
        final Label dflt, final Label... labels) {
    AttributesImpl attrs = new AttributesImpl();
    attrs.addAttribute("", "min", "min", "", Integer.toString(min));
    attrs.addAttribute("", "max", "max", "", Integer.toString(max));
    attrs.addAttribute("", "dflt", "dflt", "", getLabel(dflt));
    String o = Printer.OPCODES[Opcodes.TABLESWITCH];
    sa.addStart(o, attrs);
    for (int i = 0; i < labels.length; i++) {
        AttributesImpl att2 = new AttributesImpl();
        att2.addAttribute("", "name", "name", "", getLabel(labels[i]));
        sa.addElement("label", att2);
    }
    sa.addEnd(o);
}
 
開發者ID:ItzSomebody,項目名稱:DirectLeaks-AntiReleak-Remover,代碼行數:17,代碼來源:SAXCodeAdapter.java

示例2: compile

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
/**
 * Runs the two-pass compiler to generate a Painless script.  (Used by the debugger.)
 * @param iface Interface the compiled script should implement
 * @param source The source code for the script.
 * @param settings The CompilerSettings to be used during the compilation.
 * @return The bytes for compilation.
 */
static byte[] compile(Class<?> iface, String name, String source, CompilerSettings settings, Printer debugStream) {
    if (source.length() > MAXIMUM_SOURCE_LENGTH) {
        throw new IllegalArgumentException("Scripts may be no longer than " + MAXIMUM_SOURCE_LENGTH +
            " characters.  The passed in script is " + source.length() + " characters.  Consider using a" +
            " plugin if a script longer than this length is a requirement.");
    }
    ScriptInterface scriptInterface = new ScriptInterface(iface);

    SSource root = Walker.buildPainlessTree(scriptInterface, name, source, settings, debugStream);

    root.analyze();
    root.write();

    return root.getBytes();
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:23,代碼來源:Compiler.java

示例3: SSource

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
public SSource(ScriptInterface scriptInterface, CompilerSettings settings, String name, String source, Printer debugStream,
               MainMethodReserved reserved, Location location,
               List<SFunction> functions, Globals globals, List<AStatement> statements) {
    super(location);
    this.scriptInterface = Objects.requireNonNull(scriptInterface);
    this.settings = Objects.requireNonNull(settings);
    this.name = Objects.requireNonNull(name);
    this.source = Objects.requireNonNull(source);
    this.debugStream = debugStream;
    this.reserved = Objects.requireNonNull(reserved);
    // process any synthetic functions generated by walker (because right now, thats still easy)
    functions.addAll(globals.getSyntheticMethods().values());
    globals.getSyntheticMethods().clear();
    this.functions = Collections.unmodifiableList(functions);
    this.statements = Collections.unmodifiableList(statements);
    this.globals = globals;
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:18,代碼來源:SSource.java

示例4: viewByteCode

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
/**
 * 格式化輸出字節碼
 * @param bytecode
 */
public static void viewByteCode(byte[] bytecode) {
    ClassReader cr = new ClassReader(bytecode);
    ClassNode cn = new ClassNode();
    cr.accept(cn, 0);
    final List<MethodNode> mns = cn.methods;
    Printer printer = new Textifier();
    TraceMethodVisitor mp = new TraceMethodVisitor(printer);
    for (MethodNode mn : mns) {
        InsnList inList = mn.instructions;
        System.out.println(mn.name);
        for (int i = 0; i < inList.size(); i++) {
            inList.get(i).accept(mp);
            StringWriter sw = new StringWriter();
            printer.print(new PrintWriter(sw));
            printer.getText().clear();
            System.out.print(sw.toString());
        }
    }
}
 
開發者ID:yutian-tianpl,項目名稱:byte-cobweb,代碼行數:24,代碼來源:Helper.java

示例5: insToChars

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
private static String insToChars(String name) {
	for (int i = 0; i < Printer.OPCODES.length; i++) {
		if (name.equalsIgnoreCase(Printer.OPCODES[i])) {
			return new String(new char[] { opcodeToChar(i) });
		}
	}

	int[] group = groups.get(name.toLowerCase());
	if (group != null) {
		StringBuilder bldr = new StringBuilder("(");
		for (int i = 0; i < group.length; i++) {
			bldr.append(opcodeToChar(group[i]));
			if (i != group.length - 1)
				bldr.append("|");
		}
		bldr.append(")");
		return bldr.toString();
	}

	if (name.equalsIgnoreCase("AbstractInsnNode")) {
		return ".";
	}

	throw new IllegalArgumentException(name + " is not an instruction.");
}
 
開發者ID:jonathanedgecombe,項目名稱:anvil,代碼行數:26,代碼來源:InsnMatcher.java

示例6: printMethod

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
public static void printMethod(ObfMapping method, byte[] bytes, Printer printer, File toFile) {
    try {
        if (!toFile.getParentFile().exists())
            toFile.getParentFile().mkdirs();
        if (!toFile.exists())
            toFile.createNewFile();

        PrintWriter printWriter = new PrintWriter(toFile);

        ClassVisitor cv = new MethodASMifier(method, printer, printWriter);
        ClassReader cr = new ClassReader(bytes);
        cr.accept(cv, 0);

        printWriter.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
 
開發者ID:4Space,項目名稱:4Space-5,代碼行數:19,代碼來源:MethodASMifier.java

示例7: visitLdcInsn

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
@Override
public void visitLdcInsn(final Object cst) {
    buf.setLength(0);
    buf.append(tab2).append("LDC ");
    if (cst instanceof String) {
        Printer.appendString(buf, (String) cst);
    } else if(cst instanceof Float) {
    	buf.append(cst).append("F");
    } else if(cst instanceof Double) {
    	buf.append(cst).append("D");
    } else if(cst instanceof Long) {
    	buf.append(cst).append("L");
    } else if (cst instanceof Type) {
        buf.append(((Type) cst).getDescriptor()).append(".class");
    } else {
        buf.append(cst);
    }
    buf.append('\n');
    text.add(buf.toString());
}
 
開發者ID:wildex999,項目名稱:TickDynamic,代碼行數:21,代碼來源:ExtraTextifier.java

示例8: visitEnd

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
@Override
public void visitEnd() {
	super.visitEnd();

	if (!found && errorNoMatch) {
		StringWriter output = new StringWriter();
		PrintWriter writer = new PrintWriter(output);
		writer.append("Cannot find nodes");
		if (methods.size() > 0) {
			writer.append(" for methods ").append(methods.toString());
		}
		writer.println();

		Printer printer = new Textifier();
		TraceMethodVisitor visitor = new TraceMethodVisitor(printer);
		for (AbstractInsnNode node : nodes) {
			node.accept(visitor);
		}

		printer.print(writer);

		throw new IllegalStateException(output.toString());
	}
}
 
開發者ID:SquidDev,項目名稱:Patcher,代碼行數:25,代碼來源:FindingVisitor.java

示例9: viewByteCode

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
public static void viewByteCode(byte[] bytecode) {
    ClassReader cr = new ClassReader(bytecode);
    ClassNode cn = new ClassNode();
    cr.accept(cn, 0);
    final List<MethodNode> mns = cn.methods;
    Printer printer = new Textifier();
    TraceMethodVisitor mp = new TraceMethodVisitor(printer);
    for (MethodNode mn : mns) {
        InsnList inList = mn.instructions;
        System.out.println(mn.name);
        for (int i = 0; i < inList.size(); i++) {
            inList.get(i).accept(mp);
            StringWriter sw = new StringWriter();
            printer.print(new PrintWriter(sw));
            printer.getText().clear();
            System.out.print(sw.toString());
        }
    }
}
 
開發者ID:brutusin,項目名稱:instrumentation,代碼行數:20,代碼來源:Helper.java

示例10: checkIntComparisonOpcode

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
private static void checkIntComparisonOpcode(Type comparisonType, int opcode) {
  switch (opcode) {
    case Opcodes.IFEQ:
    case Opcodes.IFNE:
      return;
    case Opcodes.IFGT:
    case Opcodes.IFGE:
    case Opcodes.IFLT:
    case Opcodes.IFLE:
      if (comparisonType.getSort() == Type.ARRAY || comparisonType.getSort() == Type.OBJECT) {
        throw new IllegalArgumentException(
            "Type: " + comparisonType + " cannot be compared via " + Printer.OPCODES[opcode]);
      }
      return;
    default:
      throw new IllegalArgumentException(
          "Unsupported opcode for comparison operation: " + opcode);
  }
}
 
開發者ID:google,項目名稱:closure-templates,代碼行數:20,代碼來源:BytecodeUtils.java

示例11: getMethodInstructionList

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
public static String getMethodInstructionList(final MethodNode methodNode) {
    Preconditions.checkNotNull(methodNode, "methodNode");
    final Printer printer = new NonMaxTextifier();
    final TraceMethodVisitor traceMethodVisitor = new TraceMethodVisitor(printer);
    methodNode.accept(traceMethodVisitor);
    final StringWriter stringWriter = new StringWriter();
    final PrintWriter printWriter = new PrintWriter(stringWriter);
    printer.print(printWriter);
    printWriter.flush();
    final String[] lines = PATTERN.split(stringWriter.toString());
    int lineNr = 0;
    for (int i = 0; i < lines.length; i++) {
        if (!lines[i].startsWith("  @")) {
            lines[i] = String.format("%2d %s", lineNr++, lines[i]);
        }
    }
    return "Method '" + methodNode.name + "':\n"
        + NEWLINE.join(lines) + '\n';
}
 
開發者ID:fge,項目名稱:grappa,代碼行數:20,代碼來源:AsmTestUtils.java

示例12: print

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
protected void print(final Object cst) {
    if (cst instanceof String) {
        StringBuffer buf = new StringBuffer();
        Printer.appendString(buf, (String) cst);
        pw.print(buf.toString());
    } else if (cst instanceof Float) {
        Float f = (Float) cst;
        if (f.isNaN() || f.isInfinite()) {
            pw.print("0.0"); // TODO Jasmin bug workaround
        } else {
            pw.print(f);
        }
    } else if (cst instanceof Double) {
        Double d = (Double) cst;
        if (d.isNaN() || d.isInfinite()) {
            pw.print("0.0"); // TODO Jasmin bug workaround
        } else {
            pw.print(d);
        }
    } else {
        pw.print(cst);
    }
}
 
開發者ID:lrytz,項目名稱:asm-legacy-svn-clone,代碼行數:24,代碼來源:JasminifierClassAdapter.java

示例13: insToChars

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
/**
 * Converts an instruction to character(s) used to build the regular
 * expression.
 * @param name The name of the instruction.
 * @return The character(s) which represents this instruction.
 * @throws IllegalArgumentException if the name was not found.
 */
private static String insToChars(String name) {
	for (int i = 0; i < Printer.OPCODES.length; i++) {
		if (name.equalsIgnoreCase(Printer.OPCODES[i])) {
			return new String(new char[] { opcodeToChar(i) });
		}
	}

	int[] group = groups.get(name.toLowerCase());
	if (group != null) {
		StringBuilder bldr = new StringBuilder("(");
		for (int i = 0; i < group.length; i++) {
			bldr.append(opcodeToChar(group[i]));
			if (i != group.length - 1)
				bldr.append("|");
		}
		bldr.append(")");
		return bldr.toString();
	}

	if (name.equalsIgnoreCase("AbstractInsnNode")) {
		return ".";
	}

	throw new IllegalArgumentException(name + " is not an instruction.");
}
 
開發者ID:davidi2,項目名稱:mopar,代碼行數:33,代碼來源:InsnMatcher.java

示例14: visitTableSwitchInsn

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
@Override
public final void visitTableSwitchInsn(
    final int min,
    final int max,
    final Label dflt,
    final Label... labels)
{
    AttributesImpl attrs = new AttributesImpl();
    attrs.addAttribute("", "min", "min", "", Integer.toString(min));
    attrs.addAttribute("", "max", "max", "", Integer.toString(max));
    attrs.addAttribute("", "dflt", "dflt", "", getLabel(dflt));
    String o = Printer.OPCODES[Opcodes.TABLESWITCH];
    sa.addStart(o, attrs);
    for (int i = 0; i < labels.length; i++) {
        AttributesImpl att2 = new AttributesImpl();
        att2.addAttribute("", "name", "name", "", getLabel(labels[i]));
        sa.addElement("label", att2);
    }
    sa.addEnd(o);
}
 
開發者ID:nxmatic,項目名稱:objectweb-asm-4.0,代碼行數:21,代碼來源:SAXCodeAdapter.java

示例15: visitLookupSwitchInsn

import org.objectweb.asm.util.Printer; //導入依賴的package包/類
@Override
public final void visitLookupSwitchInsn(
    final Label dflt,
    final int[] keys,
    final Label[] labels)
{
    AttributesImpl att = new AttributesImpl();
    att.addAttribute("", "dflt", "dflt", "", getLabel(dflt));
    String o = Printer.OPCODES[Opcodes.LOOKUPSWITCH];
    sa.addStart(o, att);
    for (int i = 0; i < labels.length; i++) {
        AttributesImpl att2 = new AttributesImpl();
        att2.addAttribute("", "name", "name", "", getLabel(labels[i]));
        att2.addAttribute("", "key", "key", "", Integer.toString(keys[i]));
        sa.addElement("label", att2);
    }
    sa.addEnd(o);
}
 
開發者ID:nxmatic,項目名稱:objectweb-asm-4.0,代碼行數:19,代碼來源:SAXCodeAdapter.java


注:本文中的org.objectweb.asm.util.Printer類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。