Skip to content
forked from jupyter/jvm-repr

API for converting JVM objects to representations by MIME type, for the Jupyter ecosystem.

License

Notifications You must be signed in to change notification settings

guoyu07/jvm-repr

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JVM Repr

Build Status JVM repr on jitpack

Configuration | Usage for Library Authors | Usage for Kernel Authors

Standardizing object representation and inspection across JVM kernels (Scala, Clojure, Groovy, ...).

Purpose

JVM languages use various conventions to convert REPL outputs to forms that can be displayed. This project is an attempt to standardize by providing an API that libraries can use to register display methods for any jupyter frontend, whether console, notebook, or dashboard.

This API has two main uses:

  • For library authors to provide a way to convert from a library's JVM objects to useful representations by MIME type
  • For kernel authors to convert any JVM object to useful representations by MIME type

As it is with IPython, this is a contract between the libraries within the ecosystem, the kernel that inspects the objects, and the frontends that display them.

Configuration

See instructions on JitPack for gradle, maven, sbt, or leiningen.

Usage

Usage - Library authors

Library authors can register conversion code by implementing a Displayer and registering it with Displayers.

For example, the following will register a displayer for Vegas graphs:

import java.util.Map
import jupyter.Displayer
import jupyter.Displayers
import scala.collection.JavaConverters._
import vegas.DSL.ExtendedUnitSpecBuilder

...

  Displayers.register(classOf[ExtendedUnitSpecBuilder],
    new Displayer[ExtendedUnitSpecBuilder] {
      override def display(plot: ExtendedUnitSpecBuilder): Map[String, String] = {
        val plotAsJson = plot.toJson
        Map(
          "text/plain" -> plotAsJson,
          "application/json" -> plotAsJson,
          "text/html" -> new StaticHTMLRenderer(plotAsJson).frameHTML()
        ).asJava
      }
    })

Any kernel implementation can use the method to display Vegas graphs for the DSL objects.

Library authors can optionally implement setMimeTypes(String...) to receive hints for the MIME types that the kernel or front-end supports. It is recommended that library authors use these hints to avoid expensive conversions.

Usage - Kernel authors

Kernel authors can use this API to display registered objects:

import java.util.Map

// ...

  Object result = interpreter.eval(code);
  Map<String, String> resultByMIME = Displayers.display(result);
  Kernel.this.display(resultByMIME);

Kernel authors can optionally call Displayers.setMimeTypes(String...) to send hints to display implementations with the set of MIME types that can be used by the kernel or front-end.

About

API for converting JVM objects to representations by MIME type, for the Jupyter ecosystem.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%