com.spcapitaliq.platformexecuting

Jar

object Jar

Parsing Jar URIs and extracting them to disk.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Jar
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class ExtractError extends Error with Product with Serializable

    An ADT of errors from Jar scanning.

  2. sealed abstract class ScanError extends Error with Product with Serializable

    An ADT of errors from extraction.

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. object ExtractError extends Serializable

  5. object ScanError extends Serializable

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def extract[A](u: URI)(f: (File) ⇒ A)(implicit str: TempFileStrategy): \/[ExtractError, A]

    Extract u, if possible, and invoke f with it.

    Extract u, if possible, and invoke f with it. The extraction is only valid in f's dynamic context.

  11. def extractDirectory[A](u: URI)(f: (File) ⇒ A)(implicit str: TempDirStrategy): \/[ExtractError, A]

    Extract the directory u, if possible, and invoke f with it.

    Extract the directory u, if possible, and invoke f with it. The extraction is only valid in f's dynamic context.

  12. val extractL: @>[JarURI, URI]

    The concrete URI resource forming the start of a JarURI extraction.

    The concrete URI resource forming the start of a JarURI extraction.

    See also

    com.spcapitaliq.platformexecuting.Jar#extract

  13. def extractTemp(u: URI)(implicit str: TempFileStrategy): \/[ExtractError, (Option[TempFileStrategy.Fid], File)]

    Extract u, if possible.

    Extract u, if possible. #extract may be simpler for you.

    u

    A file, indicated by file or jar URI.

    returns

    An error message or the extracted file, and if str was used to acquire a temporary file, its #release identifier.

  14. def extractTempDir(u: URI)(implicit str: TempDirStrategy): \/[ExtractError, (Option[TempDirStrategy.Fid], File)]

    Extract u, if possible.

    Extract u, if possible. #extractDirectory may be simpler for you.

    u

    A directory, indicated by file or jar URI.

    returns

    An error message or the extracted directory, and if str was used to acquire a temporary directory, its #release identifier.

  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def jarURI(u: URI): Option[JarURI]

    Parse a URI into jar levels.

  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. val outL: @>[JarURI, NonEmptyList[@@[String, ZipEntName]]]

    The outermost-first zip entry names to find the resource underlying a JarURI.

    The outermost-first zip entry names to find the resource underlying a JarURI.

    See also

    com.spcapitaliq.platformexecuting.Jar#out

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

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped