Getting Started

Command line generator

The easiest way to begin using courier is via the standalone command line tool. The standalone tool generates type safe bindings for any courier-supported language. Assuming Java (JRE) is already installed on your system, you can download the binary from Bintray and install it by doing the following:

cd /tmp && \
curl -sSLf https://dl.bintray.com/coursera/generic/courier > courier && \
chmod a+x courier && \
sudo mv courier /usr/local/bin

To generate typescript bindings, set up the following project structure:

myProject/schemas/org/example/fortune/Fortune.courier
namespace org.example.fortune

record Fortune {
  message: string
}

Then, in the the root of the project (myProject), to generate typescript bindings, execute:

$ courier ts output /tmp schemas
myProject/output/org.example.fortune.Fortune.ts

Inside the output folder will be the generated typescript bindings.

If you would like to modularize your code into multiple sub-projects, replace /tmp with the path to your common libraries. For example, if your project structure is as follows:

myProject/              # The top of the source tree for your project
  -> common/            # Common code & libraries shared between home and admin sub-projects.
    ->  schemas/        # A folder for your schemas
      ->   Foo.courier  # Common courier models

  -> home/              # Code related to the home page of your site.
    -> schemas/
      -> Main.courier   # Schemas for data models on the home page.

  -> admin/             # Code related to an administrative interface.
    -> schemas/
      -> Admin.courier  # Schemas for the data models on the admin interface.

you can generate your home-related models, and your admin-related models by executing (respectively):

$ courier ts home/output common home/schemas
$ courier ts admin/output common admin/schemas

IntelliJ Plugin

Courier has full IntelliJ IDE support, including syntax highlighting, syntax error highlighting, code formatting, Find/follow references, auto-complete, import statement generation, find usages, New file templates: “New” > “Courier Data Schema”, …

Installation

In IntelliJ do:

  • Go to Preferences -> Plugins -> Browse Repositories…
  • Search for “Courier schema language”
  • Click Install

Scala (SBT)

For SBT, add the generator dependencies to your SBT plugins:

project/plugins.sbt
addSbtPlugin("org.coursera.courier" % "courier-sbt-plugin" % "1.2.2")

Next, add courierSettings to your SBT project to enable the generator:

build.sbt
import org.coursera.courier.sbt.CourierPlugin._

name := "example"

scalaVersion in ThisBuild := "2.11.6"

val courierVersion = "1.2.2"

lazy val schemas = Project("schemas", file("schemas"))
  .settings(courierSettings: _*)
  .settings(libraryDependencies += "org.coursera.courier" %% "courier-runtime" % courierVersion)

lazy val root = (project in file("."))
  .dependsOn(schemas)
  .aggregate(schemas)

Your project can now generate Courier data bindings.

To try it out, add a schema file:

/schemas/src/main/pegasus/org/example/fortune/Fortune.courier
namespace org.example.fortune

record Fortune {
  message: string
}

In SBT, run:

project schemas
compile

When run, the org.example.fortune.Fortune Scala class is generated. It behaves the same as a case class, but can be serialized to JSON, or any other data format a Pegasus codec is available for. For example:

/src/main/scala/Main.scala
import com.linkedin.data.template.PrettyPrinterJacksonDataTemplateCodec
import org.example.fortune.Fortune

object Example extends App {
  val fortune = Fortune(message = "Today is your lucky day!")

  val codec = new PrettyPrinterJacksonDataTemplateCodec
  println(codec.mapToString(fortune.data))
  // -> { "message": "Today is your lucky day!" }
}

In SBT, run:

project root
compile
run-main Example

And that’s it. You’ve used Courier to write some JSON!.

How it Works

The generator is run automatically before src/main/scala compilation. It also registers for triggered execution to support SBT commands like ~compile, which will cause the generator to run immediately whenever .courier (or .pdsc) file is changed.

The generator will write Scala files to the schemas/target/scala-<scalaMajorVersion>/src_managed/main/courier directory of your project and add them to the compile classpath.

Next Steps

For details on the .pdsc file format, see Pegasus Schemas and Data.

For details on the .courier file format, see .courier File Format.

The code generator is an extension of the Rest.li SBT Plugin, for more details, see the rest.li-sbt-plugin wiki.

For testing, .courier (or .pdsc) files only needed for tests may be added to src/test/pegasus.

Scala (Maven)

See Maven Plugin.

Java (Gradle)

See Gradle Plugin.

Swift (Xcode / Cocoapods)

See XCode integration.