Giter Club home page Giter Club logo

canon's Introduction

Canon

JSON API Generation Tooling

The example project can be found at https://github.com/symphonyoss/canon-example Canon is intended to work together with Fugue, see https://symphonyoss.github.io/fugue/

Change Log

Version 0.2.16 - 2020-01-23

URI Mapping

A uriMapping section in the canon maven plugin build configuration allows you to tell the maven plugin to look in your local working copy for dependent models referenced in a model being compiled, rather than reading the dependent model from the URL specified in the main model.

Each property in the uriMapping section contains a name which is a URI which might be encountered in the model being compiled and a value with which that URI should be replaced.

With effect from this release the replacement path is relative to the working directory of the build, not the location of the source model.

<plugin>
  <groupId>org.symphonyoss.s2.canon</groupId>
  <artifactId>canon-maven-plugin</artifactId>
  <executions>
    <execution>
      <phase>generate-sources</phase>
      <goals>
        <goal>generate-sources</goal>
      </goals>
      <configuration>
        <srcDirs>src/main/resources/canon</srcDirs>
        <proformaCopyDir>src/main</proformaCopyDir>
        <uriMapping>
          <property>
           <name>https://models.oss.symphony.com/fundamental.json</name>
           <value>fundamental-model/src/main/resources/canon/fundamental.json</value>
          </property>
          <property>
           <name>https://models.oss.symphony.com/core.json</name>
           <value>core-model/src/main/resources/canon/core.json</value>
          </property>
          <property>
           <name>https://models.oss.symphony.com/crypto.json</name>
           <value>crypto-model/src/main/resources/canon/crypto.json</value>
          </property>
          <property>
           <name>https://models.oss.symphony.com/chat.json</name>
           <value>chat-model/src/main/resources/canon/chat.json</value>
          </property>
        </uriMapping>

        <templateArtifacts>
          <templateArtifact>
            <groupId>${canon.template.groupid}</groupId>
            <artifactId>${canon.template.java}</artifactId>
            <version>${canon.template.version}</version>
          </templateArtifact>
        </templateArtifacts>
      </configuration>
    </execution>
  </executions>
</plugin>

Version 0.0.3 - 2018-02-23

Optional Facade Generation

Facades are now generated in the template directory along with other generated code unless the specification says that a facade is required. This has the effect that for types where you don't want or need a facade the facade class will be automatically regenerated as needed and you don't need to care about it.

"components": {
    "schemas": {
      "IntTypedef": {
        "description": "An integer typedef.",
        "type": "integer"
      },
      "DoubleTypedef": {
        "description": "A double typedef with a facade.",
        "facade": true,
        "type": "number",
        "format": "double",
        "minimum": -765546546547723.03330025,
        "maximum": 7665465456464550000.00333025
      }
    }
  }
}

In the example above the generated files for these two typedefs will be:

canon-test/
├── pom.xml
├── src
│   └── main
│       └── canon
│           └── typeCheck.json
└── target
    ├── generated-sources
    │   ├── annotations
    │   └── java
    │       └── org
    │           └── symphonyoss
    │               └── s2
    │                   └── canon
    │                       └── test
    │                           └── typeCheck
    │                               └── DoubleTypedefTypeDef.java
    │                               ├── IntTypedef.java
    │                               └── IntTypedefTypeDef.java
    └── proforma-sources
        └── java
            └── org
                └── symphonyoss
                    └── s2
                        └── canon
                            └── test
                                └── typeCheck
                                    └── facade
                                        └── DoubleTypedef.java

Note that the facade for IntTypeDef appears in the generated-sources directory whereas the facade for DoubleTypeDef appears in proforma-sources and should be checked in and maintained as a source file. The line in the specification which causes this is

"facade": true,

Note that the default for this value is false.

Inheritance

It is now possible to define (single) inheritance relationships between object types. Consider this specification:

"components": {
    "schemas": {
"FundamentalObject": {
        "type": "object",
        "facade": true,
        "required": [
          "absoluteHash"
        ],
        "properties": {
          "absoluteHash": {
            "$ref": "#/components/schemas/DirectHash"
          },
          "sequenceHashes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DirectHash"
            }
          }
        }
      },
      
      "VersionedObject": {
        "type": "object",
        "facade": true,
        "extends": "#/components/schemas/FundamentalObject",
        "required": [
          "prevHash",
          "baseHash"
        ],
        "properties": {
          "prevHash": {
            "$ref": "#/components/schemas/DirectHash"
          },
          "baseHash": {
            "$ref": "#/components/schemas/DirectHash"
          }
        }
      }
    }
  }
}

The declaration "extends": "#/components/schemas/FundamentalObject", in VersionedObject makes this a sub-class of FundamentalObject.

Note that both of these objects are declared to have a developer managed facade.

The class hierarchy generated is:

VersionedObject extends VersionedObjectEntity extends FundamentalObject extends FundamentalObjectEntity

Where VersionedObjectEntity is the generated super-class and VersionedObject is the developer maintained facade. This means that subclasses inherit the developer maintained additions to any super classes.

Contributing

  1. Fork it (https://github.com/symphonyoss/canon/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Read our contribution guidelines and Community Code of Conduct
  4. Commit your changes (git commit -am 'Add some fooBar')
  5. Push to the branch (git push origin feature/fooBar)
  6. Create a new Pull Request

License

The code in this repository is distributed under the Apache License, Version 2.0.

Copyright 2017-2019 Symphony Communication Services, LLC.

canon's People

Contributors

agitana avatar bruceskingle avatar nikoganev avatar ssf-admin avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.