org.asciidoctor.extension.DocinfoProcessor Java Examples

The following examples show how to use org.asciidoctor.extension.DocinfoProcessor. 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: DocinfoProcessorProxy.java    From asciidoctorj with Apache License 2.0 5 votes vote down vote up
public static RubyClass register(JRubyAsciidoctor asciidoctor, final Class<? extends DocinfoProcessor> docinfoProcessor) {
    RubyClass rubyClass = ProcessorProxyUtil.defineProcessorClass(asciidoctor.getRubyRuntime(), "DocinfoProcessor", new JRubyAsciidoctorObjectAllocator(asciidoctor) {
        @Override
        public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
            return new DocinfoProcessorProxy(asciidoctor, klazz, docinfoProcessor);
        }
    });

    applyAnnotations(docinfoProcessor, rubyClass);

    ProcessorProxyUtil.defineAnnotatedMethods(rubyClass, DocinfoProcessorProxy.class);
    return rubyClass;
}
 
Example #2
Source File: DocinfoProcessorProxy.java    From asciidoctorj with Apache License 2.0 5 votes vote down vote up
public static RubyClass register(final JRubyAsciidoctor asciidoctor, final DocinfoProcessor docinfoProcessor) {
    RubyClass rubyClass = ProcessorProxyUtil.defineProcessorClass(asciidoctor.getRubyRuntime(), "DocinfoProcessor", new JRubyAsciidoctorObjectAllocator(asciidoctor) {
        @Override
        public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
            return new DocinfoProcessorProxy(asciidoctor, klazz, docinfoProcessor);
        }
    });

    applyAnnotations(docinfoProcessor.getClass(), rubyClass);

    ProcessorProxyUtil.defineAnnotatedMethods(rubyClass, DocinfoProcessorProxy.class);
    return rubyClass;
}
 
Example #3
Source File: ExtensionGroupImpl.java    From asciidoctorj with Apache License 2.0 5 votes vote down vote up
@Override
public ExtensionGroup docinfoProcessor(final Class<? extends DocinfoProcessor> docInfoProcessor) {
  final RubyClass rubyClass = DocinfoProcessorProxy.register(asciidoctor, docInfoProcessor);
  registrators.add(new Registrator() {
    @Override
    public void register(IRubyObject registry) {
      registry.callMethod(rubyRuntime.getCurrentContext(), "docinfo_processor", rubyClass);
    }
  });
  return this;
}
 
Example #4
Source File: ExtensionGroupImpl.java    From asciidoctorj with Apache License 2.0 5 votes vote down vote up
@Override
public ExtensionGroup docinfoProcessor(final DocinfoProcessor docInfoProcessor) {
  final RubyClass rubyClass = DocinfoProcessorProxy.register(asciidoctor, docInfoProcessor);
  registrators.add(new Registrator() {
    @Override
    public void register(IRubyObject registry) {
      registry.callMethod(rubyRuntime.getCurrentContext(), "docinfo_processor", rubyClass);
    }
  });
  return this;
}
 
Example #5
Source File: ExtensionGroupImpl.java    From asciidoctorj with Apache License 2.0 5 votes vote down vote up
@Override
public ExtensionGroup docinfoProcessor(final String docInfoProcessor) {
  try {
    final Class<? extends DocinfoProcessor>  docinfoProcessorClass = (Class<? extends DocinfoProcessor>) Class.forName(docInfoProcessor);
    docinfoProcessor(docinfoProcessorClass);
  } catch (ClassNotFoundException e) {
    throw new RuntimeException(e);
  }
  return this;
}
 
Example #6
Source File: JavaExtensionRegistryImpl.java    From asciidoctorj with Apache License 2.0 5 votes vote down vote up
@Override
public JavaExtensionRegistry docinfoProcessor(String docInfoProcessor) {
    try {
        Class<? extends DocinfoProcessor> docinfoProcessorClass = (Class<? extends DocinfoProcessor>) Class.forName(docInfoProcessor);
        docinfoProcessor(docinfoProcessorClass);
        return this;
    } catch (ClassNotFoundException e) {
        throw new RuntimeException(e);
    }
}
 
Example #7
Source File: DocinfoProcessorProxy.java    From asciidoctorj with Apache License 2.0 4 votes vote down vote up
public DocinfoProcessorProxy(JRubyAsciidoctor asciidoctor, RubyClass metaClass, Class<? extends DocinfoProcessor> docinfoProcessorClass) {
    super(asciidoctor, metaClass, docinfoProcessorClass);
}
 
Example #8
Source File: DocinfoProcessorProxy.java    From asciidoctorj with Apache License 2.0 4 votes vote down vote up
public DocinfoProcessorProxy(JRubyAsciidoctor asciidoctor, RubyClass metaClass, DocinfoProcessor docinfoProcessor) {
    super(asciidoctor, metaClass, docinfoProcessor);
}
 
Example #9
Source File: JavaExtensionRegistryImpl.java    From asciidoctorj with Apache License 2.0 4 votes vote down vote up
@Override
public JavaExtensionRegistry docinfoProcessor(Class<? extends DocinfoProcessor> docInfoProcessor) {
    RubyClass rubyClass = DocinfoProcessorProxy.register(asciidoctor, docInfoProcessor);
    getAsciidoctorModule().callMethod("docinfo_processor", rubyClass);
    return this;
}
 
Example #10
Source File: JavaExtensionRegistryImpl.java    From asciidoctorj with Apache License 2.0 4 votes vote down vote up
@Override
public JavaExtensionRegistry docinfoProcessor(DocinfoProcessor docInfoProcessor) {
    RubyClass rubyClass = DocinfoProcessorProxy.register(asciidoctor, docInfoProcessor);
    getAsciidoctorModule().callMethod("docinfo_processor", rubyClass);
    return this;
}
 
Example #11
Source File: AsciidoctorJExtensionRegistry.java    From asciidoctor-maven-plugin with Apache License 2.0 4 votes vote down vote up
@Override
@SuppressWarnings("unchecked")
public void register(String extensionClassName, String blockName) throws MojoExecutionException {

    Class<? extends Processor> clazz;
    try {
        clazz = (Class<Processor>) Class.forName(extensionClassName);
    } catch (ClassCastException cce) {
        // Use RuntimeException to avoid catching, we only want the message in the Mojo
        throw new RuntimeException("'" + extensionClassName + "' is not a valid AsciidoctorJ processor class");
    } catch (ClassNotFoundException e) {
        throw new RuntimeException("'" + extensionClassName + "' not found in classpath");
    }

    // TODO: Replace with direct method calls again as soon as this project compiles against AsciidoctorJ 1.6.0
    if (DocinfoProcessor.class.isAssignableFrom(clazz)) {
        register(javaExtensionRegistry, "docinfoProcessor", clazz);
    } else if (Preprocessor.class.isAssignableFrom(clazz)) {
        register(javaExtensionRegistry, "preprocessor", clazz);
    } else if (Postprocessor.class.isAssignableFrom(clazz)) {
        register(javaExtensionRegistry, "postprocessor", clazz);
    } else if (Treeprocessor.class.isAssignableFrom(clazz)) {
        register(javaExtensionRegistry, "treeprocessor", clazz);
    } else if (BlockProcessor.class.isAssignableFrom(clazz)) {
        if (blockName == null) {
            register(javaExtensionRegistry, "block", clazz);
        } else {
            register(javaExtensionRegistry, "block", blockName, clazz);
        }
    } else if (IncludeProcessor.class.isAssignableFrom(clazz)) {
        register(javaExtensionRegistry, "includeProcessor", clazz);
    } else if (BlockMacroProcessor.class.isAssignableFrom(clazz)) {
        if (blockName == null) {
            register(javaExtensionRegistry, "blockMacro", clazz);
        } else {
            register(javaExtensionRegistry, "blockMacro", blockName, clazz);
        }
    } else if (InlineMacroProcessor.class.isAssignableFrom(clazz)) {
        if (blockName == null) {
            register(javaExtensionRegistry, "inlineMacro", clazz);
        } else {
            register(javaExtensionRegistry, "inlineMacro", blockName, clazz);
        }
    }
}