Class/Object

org.apache.daffodil.io

DirectOrBufferedDataOutputStream

Related Docs: object DirectOrBufferedDataOutputStream | package io

Permalink

final class DirectOrBufferedDataOutputStream extends DataOutputStreamImplMixin

To support dfdl:outputValueCalc, we must suspend output. This is done by taking the current "direct" output, and splitting it into a still direct part, and a following buffered output.

The direct part waits for the OVC calculation to complete, when that is written, it is finished and collapses into the following, which was buffered, but becomes direct as a result of this collapsing.

Hence, most output will be to direct data output streams, with some, while an OVC is pending, will be buffered, but this is eliminated as soon as possible.

A Buffered DOS can be finished or not. Not finished means that it might still be appended to. Not concurrently, but by other code invoked from this thread of control (which might traverse different co-routine "stack" threads, but it's still one thread of control).

Finished means that the Buffered DOS can never be appended to again.

Has two modes of operation, buffering or direct. When buffering, all output goes into a buffer. When direct, all output goes into a "real" DataOutputStream.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DirectOrBufferedDataOutputStream
  2. DataOutputStreamImplMixin
  3. LocalBufferMixin
  4. DataStreamCommonImplMixin
  5. DataOutputStream
  6. Logging
  7. Identity
  8. DataStreamCommon
  9. DataStreamCommonState
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class LocalByteBuffer extends LocalBuffer[ByteBuffer]

    Permalink
    Definition Classes
    LocalBufferMixin
  2. final class LocalCharBuffer extends LocalBuffer[CharBuffer]

    Permalink

    Use with OnStack idiom for temporary char buffers

    Use with OnStack idiom for temporary char buffers

    Definition Classes
    LocalBufferMixin
  3. type ThisType = DirectOrBufferedDataOutputStream

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addBuffered: DirectOrBufferedDataOutputStream

    Permalink

    Provides a new buffered data output stream.

    Provides a new buffered data output stream. Note that this must be completely configured (byteOrder, encoding, bitOrder, etc.)

  5. final def align(bitAlignment1b: Int, finfo: FormatInfo): Boolean

    Permalink

    advances the bit position to the specified alignment.

    advances the bit position to the specified alignment.

    Note that the bitAlignment1b argument is 1-based.

    Passing 0 as the argument is a usage error.

    Passing 1 as the argument performs no alignment, as any bit position is 1-bit aligned.

    For any other value, the bit position (1-based) is advanced to the next multiple of that argument value.

    False is returned if there are insufficient available bits to achieve the alignment.

    Definition Classes
    DataOutputStreamImplMixinDataStreamCommon
  6. final def areDebugging: Boolean

    Permalink

    Debugging flag.

    Debugging flag. If set then performance may be reduced, but historic and upcoming data may be viewed using the pastData and futureData methods.

    This should be set at the beginning of execution. If it is set after data has been accessed then IllegalStateException is thrown.

    Definition Classes
    DataStreamCommonImplMixinDataStreamCommon
  7. final def areLogging(lvl: Type): Boolean

    Permalink
    Definition Classes
    Logging
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def assignFrom(other: DataOutputStreamImplMixin): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  10. def assignFrom(other: DataStreamCommonState): Unit

    Permalink
    Definition Classes
    DataStreamCommonState
  11. var bitStartOffset0b: Int

    Permalink

    Offset within the first byte to the first bit.

    Offset within the first byte to the first bit. This is the number of bits to skip. Value is from 0 to 7.

    Definition Classes
    DataOutputStreamImplMixin
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. final def cst: DataOutputStreamImplMixin

    Permalink
    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixinDataStreamCommonImplMixin
  14. var debugOutputStream: Maybe[ByteArrayOutputStream]

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  15. var debugging: Boolean

    Permalink
    Definition Classes
    DataStreamCommonState
  16. def doLogging(lvl: Type, msg: String, args: Seq[Any]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  17. final def dosState: DOSState

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
    Annotations
    @inline()
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(other: Any): Boolean

    Permalink

    Two of these are equal if they are eq.

    Two of these are equal if they are eq. This matters because we compare them to see if we are making forward progress

    Definition Classes
    DirectOrBufferedDataOutputStream → AnyRef → Any
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def findFirstBlocking: DirectOrBufferedDataOutputStream

    Permalink

    This is for debugging.

    This is for debugging. It works backward through the chain of DOS' until it finds one that is holding things up (preventing collapsing) by not having any absolute position information, or being still active.

  22. def fragmentLastByte: Int

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  23. def fragmentLastByteLimit: Int

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  24. final def futureData(nBytesRequested: Int): ByteBuffer

    Permalink
  25. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  26. def getJavaOutputStream(): OutputStream

    Permalink
  27. def getLogWriter(): LogWriter

    Permalink
    Definition Classes
    Logging
  28. final def getLoggingLevel(): Type

    Permalink
    Definition Classes
    Logging
  29. def hashCode(): Int

    Permalink
    Definition Classes
    DirectOrBufferedDataOutputStream → AnyRef → Any
  30. val id: Int

    Permalink

    Must be val, as split-from will get reset to null as streams are morphed into direct streams.

    Must be val, as split-from will get reset to null as streams are morphed into direct streams.

    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStream
  31. final def isAligned(bitAlignment1b: Int): Boolean

    Permalink

    For assertion checking really.

    For assertion checking really. Optimizations should remove the need for most alignment operations. This can be used in assertions that check that this is working properly.

    Note that the bitAlignment1b argument is 1-based.

    Passing 0 as the argument is a usage error.

    Passing 1 as the argument performs no alignment, as any bit position is 1-bit aligned.

    Definition Classes
    DataOutputStreamImplMixinDataStreamCommon
  32. final def isBuffering: Boolean

    Permalink
  33. def isEndOnByteBoundary: Boolean

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  34. final def isFinished: Boolean

    Permalink
    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
    Annotations
    @inline()
  35. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  36. final def limits: DataStreamLimits

    Permalink
  37. var limits_: DataStreamLimits

    Permalink
    Definition Classes
    DataStreamCommonState
  38. final macro def log(lvl: Type, msg: String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  39. lazy val logID: String

    Permalink
    Definition Classes
    Logging → Identity
  40. var logLevel: Maybe[Type]

    Permalink
    Definition Classes
    Logging
  41. var logWriter: Maybe[LogWriter]

    Permalink
    Definition Classes
    Logging
  42. var maybeAbsBitLimit0b: MaybeULong

    Permalink

    Absolute bit limit zero based

    Absolute bit limit zero based

    If defined it is the position 1 bit past the last bit location that can be written. So if we at starting at bitPos0b of 0, and we allow only 100 bits, then the bit positions are 0 to 99, and the bit limit is 100.

    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  43. def maybeAbsBitPos0b: MaybeULong

    Permalink

    This override implements a critical behavior, which is that when we ask for an absolute bit position, if we have it great.

    This override implements a critical behavior, which is that when we ask for an absolute bit position, if we have it great. if we don't, we look at the prior DOS to see if it is finished and has an absolute bit position. If so that bit position becomes this DOS abs starting bit position, and then our absolute bit position is known.

    Without this behavior, it's possible for the unparse to hang, with every DOS chained together, but they all get finished in just the wrong order, and so the content or value length of something late in the data can't be determined that is needed to determine something early in the schema. Unless this absolute position information is propagated forward, everything can hang.

    Recursively this reaches backward until it finds a non-finished DOS or one that doesn't have absolute positioning information.

    I guess worst case this is a bad algorithm in that this could recurse deeply, going all the way back to the very start, over and over again. A better algorithm would depend on forward push of the absolute positioning information when setFinished occurs, which is, after all, the time when we can push such info forward.

    However, see setFinished comment. Where we setFinished and there is a following DOS we reach forward and ask that for its maybeAbsBitPos0b, which pulls the information forward by one DOS in the chain. So this chain should never be very long.

    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStreamImplMixinDataOutputStream
  44. final def maybeAbsStartingBitPos0b: MaybeULong

    Permalink

    the starting bit pos is undefined to start.

    the starting bit pos is undefined to start. then it is in many cases set to some value n, because we know in advance how long the prior data is. Then when absorbed into the direct stream, the stream technically starts at 0, but we need to keep track of the former starting bit pos so as to be able to convert relative positions to absolute positions correctly.

    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  45. def maybeRelBitLimit0b: MaybeULong

    Permalink

    Relative bit limit zero based

    Relative bit limit zero based

    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  46. var maybeTrailingSurrogateForUTF8: MaybeChar

    Permalink
    Definition Classes
    DataStreamCommonState
  47. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  48. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  49. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  50. final def pastData(nBytesRequested: Int): ByteBuffer

    Permalink

    Access to historic (past data) and upcoming data for purposes of display in a trace or debugger.

    Access to historic (past data) and upcoming data for purposes of display in a trace or debugger.

    If areDebugging is false, these throw IllegalStateException

    Definition Classes
    DataOutputStreamImplMixinDataStreamCommon
  51. def priorBitOrder: BitOrder

    Permalink
    Definition Classes
    DataStreamCommonState
  52. var priorBitPos: Long

    Permalink
    Definition Classes
    DataStreamCommonState
  53. final def putBigInt(bigInt: BigInt, bitLengthFrom1: Int, signed: Boolean, finfo: FormatInfo): Boolean

    Permalink

    If bitLengthFrom1 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1 least significant bits of the bigInt using the current bit order and byte order, and returns true.

    If bitLengthFrom1 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1 least significant bits of the bigInt using the current bit order and byte order, and returns true. The signed flag determines whether or not the output should be output as a signed or unsigned type.

    If not enough bits are available or the big integer cannot fit into bitLengthFrom1 bits, this writes nothing and returns false.

    It is a usage error if signed is false and bigInt is a negative BigInteger.

    It is a usage error if bitLengthFrom1 is not greater than or equal to 1.

    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  54. final def putBinaryDouble(v: Double, finfo: FormatInfo): Boolean

    Permalink
  55. final def putBinaryFloat(v: Float, finfo: FormatInfo): Boolean

    Permalink

    Float and Double

    Float and Double

    These are unparsed per the currently set BinaryFloatRep, byteOrder, and bitOrder

    Returns false if there are not 32 bits or 64 bits (respectively) available.

    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  56. final def putByteArray(array: Array[Byte], bitLengthFrom1: Int, finfo: FormatInfo): Boolean

    Permalink

    If bitLengthFrom1 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1 bits of the ba using the current bit order and byte order, and returns true.

    If bitLengthFrom1 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1 bits of the ba using the current bit order and byte order, and returns true. The array is assumed to be have bigEndian byte order and most significant bit first bit order.

    If not enough bits are available, this writes nothing and returns false.

    It is a usage error if bitLengthFrom1 is not greater than or equal to 1.

    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  57. final def putBytes(ba: Array[Byte], byteStartOffset0b: Int, lengthInBytes: Int, finfo: FormatInfo): Long

    Permalink

    Returns number of bytes transferred.

    Returns number of bytes transferred. Stops when the bitLimit is encountered if one is defined.

    Definition Classes
    DataOutputStreamImplMixin
  58. final def putCharBuffer(cb: CharBuffer, finfo: FormatInfo): Long

    Permalink
  59. def putLong(signedLong: Long, bitLengthFrom1To64: Int, finfo: FormatInfo): Boolean

    Permalink

    If bitLengthFrom1To64 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1To64 least significant bits of the long using the current bit order and byte order, and returns true.

    If bitLengthFrom1To64 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1To64 least significant bits of the long using the current bit order and byte order, and returns true.

    If not enough bits are available, this writes nothing and returns false.

    It is a usage error if bitLengthFrom1To64 is not in the range 1 to 64 inclusive.

    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStream
  60. final def putLongChecked(signedLong: Long, bitLengthFrom1To64: Int, finfo: FormatInfo): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  61. final def putLongUnchecked(signedLong: Long, bitLengthFrom1To64: Int, finfo: FormatInfo): Boolean

    Permalink

    Use when calling from a put/write operation that has already checked the length limit.

    Use when calling from a put/write operation that has already checked the length limit.

    Assumed to be called from inner loops, so should be fast as possible.

    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  62. final def putLong_BE_MSBFirst(signedLong: Long, bitLengthFrom1To64: Int): Boolean

    Permalink

    Always writes out at least 1 bit.

    Always writes out at least 1 bit.

    Attributes
    protected
    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStreamImplMixin
  63. final def putLong_LE_LSBFirst(signedLong: Long, bitLengthFrom1To64: Int): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStreamImplMixin
  64. final def putLong_LE_MSBFirst(signedLong: Long, bitLengthFrom1To64: Int): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStreamImplMixin
  65. final def putString(str: String, finfo: FormatInfo): Long

    Permalink

    Returns number of characters transferred.

    Returns number of characters transferred. Stops when the bitLimit is encountered if one is defined.

    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  66. def putULong(unsignedLong: ULong, bitLengthFrom1To64: Int, finfo: FormatInfo): Boolean

    Permalink

    If bitLengthFrom1To64 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1To64 least significant bits of the long using the current bit order and byte order, and returns true.

    If bitLengthFrom1To64 bits are available to be written before bitLimit0b (if defined) is encountered, then this writes the bitLengthFrom1To64 least significant bits of the long using the current bit order and byte order, and returns true.

    If not enough bits are available, this writes nothing and returns false.

    It is a usage error if bitLengthFrom1To64 is not in the range 1 to 64 inclusive.

    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStream
  67. final def realStream: OutputStream

    Permalink

    just a synonym

    just a synonym

    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  68. def relBitPos0b: ULong

    Permalink
  69. final def relBitPos1b: ULong

    Permalink
    Definition Classes
    DataOutputStream
  70. final def remainingBits: MaybeULong

    Permalink

    Returns number of bits remaining (if a limit is defined).

    Returns number of bits remaining (if a limit is defined). Nope if not defined.

    Definition Classes
    DataOutputStreamImplMixinDataStreamCommon
  71. def resetAllBitPos(): Unit

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  72. final def resetMaybeRelBitLimit0b(savedBitLimit0b: MaybeULong): Unit

    Permalink
  73. def resetUTF8SurrogatePairCapture: Unit

    Permalink
    Definition Classes
    DataStreamCommonState
  74. def setAbsStartingBitPos0b(newStartingBitPos0b: ULong): Unit

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  75. final def setDOSState(newState: DOSState): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
    Annotations
    @inline()
  76. final def setDebugging(setting: Boolean): Unit

    Permalink
  77. def setFinished(finfo: FormatInfo): Unit

    Permalink

    close-out this output stream.

    close-out this output stream. No more writing to this after.

    Definition Classes
    DirectOrBufferedDataOutputStreamDataOutputStream
  78. def setFragmentLastByte(newFragmentByte: Int, nBitsInUse: Int): Unit

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  79. def setJavaOutputStream(newOutputStream: OutputStream): Unit

    Permalink
  80. final def setLimits(newLimits: DataStreamLimits): Unit

    Permalink

    Allow tuning of these thresholds and starting values.

    Allow tuning of these thresholds and starting values. These could, in principle, be tuned differently for different elements, thereby keeping limits small when the schema component can be determined to only require small space, but enabling larger limits/starting values when a component has larger needs.

    These could be cached on, say, the ElementRuntimeData object for each element, or some other kind of dynamic cache.

    Definition Classes
    DataStreamCommonImplMixinDataStreamCommon
  81. def setLogWriter(lw: LogWriter): Unit

    Permalink
    Definition Classes
    Logging
  82. def setLoggingLevel(level: Type): Unit

    Permalink
    Definition Classes
    Logging
  83. def setMaybeRelBitLimit0b(newMaybeRelBitLimit0b: MaybeULong, reset: Boolean = false): Boolean

    Permalink

    sets, but also maintains the absolute bit limit, if that is defined.

    sets, but also maintains the absolute bit limit, if that is defined.

    Returns false if the set was unsuccessful, meaning one is setting a limit that extends past a pre-existing limit.

    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  84. def setPriorBitOrder(pbo: BitOrder): Unit

    Permalink
    Definition Classes
    DataStreamCommonState
  85. final def setRelBitPos0b(newRelBitPos0b: ULong): Unit

    Permalink

    Besides setting the relBitPos, it also maintains the value of the absolute bit pos, if it is known.

    Besides setting the relBitPos, it also maintains the value of the absolute bit pos, if it is known.

    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixinDataOutputStream
  86. final def skip(nBits: Long, finfo: FormatInfo): Boolean

    Permalink

    Advances the bit position by nBits.

    Advances the bit position by nBits. If nBits aren't available this returns false. Otherwise it returns true.

    Definition Classes
    DataOutputStreamImplMixinDataStreamCommon
  87. var splitFrom: DirectOrBufferedDataOutputStream

    Permalink
  88. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  89. final def toAbsolute(relBitPos0b: ULong): ULong

    Permalink
    Definition Classes
    DataOutputStreamImplMixin
  90. def toString(): String

    Permalink
    Definition Classes
    DirectOrBufferedDataOutputStream → AnyRef → Any
  91. val unionByteBuffer: ByteBuffer

    Permalink
    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  92. val unionLongBuffer: LongBuffer

    Permalink
    Attributes
    protected
    Definition Classes
    DataOutputStreamImplMixin
  93. final def validateFinalStreamState: Unit

    Permalink

    Called once after each parse operation to verify final invariants for the implementation.

    Called once after each parse operation to verify final invariants for the implementation.

    Use to perform checks such as that data structures held in pools are all returned before end of parse.

    Definition Classes
    DataOutputStreamImplMixinDataStreamCommon
  94. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  95. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  96. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  97. final lazy val withLocalByteBuffer: LocalStack[LocalByteBuffer]

    Permalink
    Definition Classes
    LocalBufferMixin
  98. final lazy val withLocalCharBuffer: LocalStack[LocalCharBuffer]

    Permalink
    Definition Classes
    LocalBufferMixin
  99. macro def withLoggingLevel[S](newLevel: Type)(body: ⇒ S): Unit

    Permalink
    Definition Classes
    Logging

Inherited from DataOutputStreamImplMixin

Inherited from LocalBufferMixin

Inherited from DataStreamCommonImplMixin

Inherited from DataOutputStream

Inherited from Logging

Inherited from Identity

Inherited from DataStreamCommon

Inherited from DataStreamCommonState

Inherited from AnyRef

Inherited from Any

Ungrouped