java.lang.Object
org.tquadrat.foundation.javacomposer.internal.CodeWriter

@ClassVersion(sourceVersion="$Id: CodeWriter.java 1105 2024-02-28 12:58:46Z tquadrat $") @API(status=INTERNAL, since="0.0.5") public final class CodeWriter extends Object
Converts a JavaFile to a string suitable to both human- and javac-consumption. This honours imports, indentation, and deferred variable names.
Author:
Square,Inc.
Modified by:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: CodeWriter.java 1105 2024-02-28 12:58:46Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.CodeWriter"

UML Diagram for "org.tquadrat.foundation.javacomposer.internal.CodeWriter"

UML Diagram for "org.tquadrat.foundation.javacomposer.internal.CodeWriter"
  • Field Details

  • Constructor Details

  • Method Details

    • emit

      public final CodeWriter emit(CharSequence input) throws UncheckedIOException

      Emits the given String to the output target.

      Delegates to emitAndIndent(CharSequence).

      Parameters:
      input - The String.
      Returns:
      This CodeWriter instance.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emit

      public final CodeWriter emit(String format, Object... args) throws UncheckedIOException
      Emits a CodeBlockImpl instance to the output target that is created on the fly from the given arguments.
      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This CodeWriter instance.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emit

      public final CodeWriter emit(CodeBlockImpl codeBlock) throws UncheckedIOException
      Emits the given CodeBlockImpl instance to the output target.
      Parameters:
      codeBlock - The code block.
      Returns:
      This CodeWriter instance.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitAndIndent

      Emits the given String to the output target with indentation as required. It's important that all code that writes to m_LineWrapper does it through here, since we emit indentation lazily in order to avoid unnecessary trailing whitespace.
      Parameters:
      input - The String.
      Returns:
      This CodeWriter instance.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitAnnotations

      public final void emitAnnotations(Iterable<AnnotationSpecImpl> annotations, boolean inline) throws UncheckedIOException
      Emits the given annotations to the output target.
      Parameters:
      annotations - The annotations.
      inline - true if the annotations should be placed on the same line as the annotated element, false otherwise.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitBlockComment

      public final void emitBlockComment(CodeBlockImpl codeBlock) throws UncheckedIOException
      Emits the given CodeBlockImpl instance as a block comment to the output target.
      Parameters:
      codeBlock - The code block with the comment.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitIndentation

      private final void emitIndentation() throws UncheckedIOException
      Writes the indentation to the output target.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitJavadoc

      public final void emitJavadoc(CodeBlockImpl codeBlock) throws UncheckedIOException
      Emits the given CodeBlockImpl instance as a JavaDoc comment to the output target.
      Parameters:
      codeBlock - The code block with the JavaDoc comment.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitLineComment

      public final void emitLineComment(CodeBlockImpl codeBlock) throws UncheckedIOException
      Emits the given CodeBlockImpl instance as a line comment to the output target.
      Parameters:
      codeBlock - The code block with the comment.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitLiteral

      private final void emitLiteral(Object o) throws UncheckedIOException
      Emits the given argument literally to the output target.
      Parameters:
      o - The object to emit.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitModifiers

      public final void emitModifiers(Collection<Modifier> modifiers, Collection<Modifier> implicitModifiers) throws UncheckedIOException
      Emits modifiers to the output target in the standard order. Modifiers in implicitModifiers will not be emitted.
      Parameters:
      modifiers - The modifiers to emit.
      implicitModifiers - The modifiers to omit.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitModifiers

      public final void emitModifiers(Collection<Modifier> modifiers) throws UncheckedIOException
      Emits modifiers to the output target in the standard order.
      Parameters:
      modifiers - The modifiers to emit.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitStaticImportMember

      private final boolean emitStaticImportMember(String canonical, String part) throws UncheckedIOException
      Emits a static import entry to the output target.
      Parameters:
      canonical - The canonical name of the class to import.
      part - The part to emit.
      Returns:
      true if something was emitted, false otherwise.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitTypeVariables

      public final void emitTypeVariables(List<TypeVariableNameImpl> typeVariables) throws UncheckedIOException
      Emits type variables with their bounds. This should only be used when declaring type variables; everywhere else bounds are omitted.
      Parameters:
      typeVariables - The type variables.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • emitWrappingSpace

      Emits wrapping space to the output target.
      Returns:
      This CodeWriter instance.
      Throws:
      UncheckedIOException - A problem occurred when writing to the output target.
    • extractMemberName

      private static final String extractMemberName(String part)
      Extracts a member name from the given part.
      Parameters:
      part - The part.
      Returns:
      The member name, or if none could be found, the given part.
    • importableType

      private final void importableType(ClassNameImpl className)
      Marks the given type as importable.
      Parameters:
      className - The type.
    • importedTypes

      Returns the imported types.
      Returns:
      The imported types.
    • indent

      public final CodeWriter indent()
      Increments the indentation level.
      Returns:
      This CodeWriter instance.
    • indent

      public final CodeWriter indent(int levels)
      Increases the indentation level by the given value.
      Parameters:
      levels - The increase value.
      Returns:
      This CodeWriter instance.
    • layout

      public final Layout layout()
      Returns the layout for the output.
      Returns:
      The layout.
    • lookupName

      public final String lookupName(ClassNameImpl className)
      Returns the best name to identify className within the current context. This uses the available imports and the current scope to find the shortest name available. It does not honour names that are visible due to inheritance.
      Parameters:
      className - The name of the class.
      Returns:
      The shortest possible name for the given class.
    • popPackage

      public final CodeWriter popPackage()
      Pops the package name.
      Returns:
      This CodeWriter instance.
    • popType

      public final CodeWriter popType()
      Pops the top most type.
      Returns:
      This CodeWriter instance.
    • pushPackage

      public final CodeWriter pushPackage(String packageName)
      Pushes the given package name.
      Parameters:
      packageName - The name of the package.
      Returns:
      This CodeWriter instance.
    • pushType

      public final CodeWriter pushType(TypeSpecImpl type)
      Pushes the give type.
      Parameters:
      type - The type.
      Returns:
      This CodeWriter instance.
    • resolve

      private final Optional<ClassNameImpl> resolve(String simpleName)
      Returns the class referenced by simpleName, using the current nesting context and imports.
      Parameters:
      simpleName - The name of the class we search for.
      Returns:
      An instance of Optional that holds the ClassName instance for the resolved class.
    • stackClassName

      private final ClassNameImpl stackClassName(int stackDepth, String simpleName)
      Returns the class named simpleName when nested in the class at stackDepth.
      Parameters:
      stackDepth - The search depth.
      simpleName - The class name.
      Returns:
      The found class.
    • statementLine

      public final int statementLine()

      Returns the current statement line.

      When a statement will be emitted, this method returns the line of the statement currently being written. The first line of a statement is indented normally and subsequent wrapped lines are double-indented. This is -1 when the currently-written line isn't part of a statement.

      Returns:
      The statement line, or -1.
    • statementLine

      public final void statementLine(int statementLine)
      Sets the current statement line.
      Parameters:
      statementLine - The new value for the current statement line.
      See Also:
    • suggestedImports

      Returns the types that should have been imported for this code. If there were any simple name collisions, that type's first use is imported.
      Returns:
      The types that should have been imported.
    • unindent

      public final CodeWriter unindent()
      Decrements the indentation level.
      Returns:
      This CodeWriter instance.
    • unindent

      public final CodeWriter unindent(int levels)
      Decreases the indentation level by the given value.
      Parameters:
      levels - The decrease value.
      Returns:
      This CodeWriter instance.