Giter Site home page Giter Site logo

kommand's Introduction

Kommand

Kommand is a lightweight, declarative command framework written in Kotlin. You can declare command models via annotations. The commands will be executed through reflections.

Example

Here is an example of a command model.

package de.tammo.kommand.test

import de.tammo.kommand.annotation.Model
import de.tammo.kommand.annotation.Parameter
import de.tammo.kommand.annotation.Parameters
import de.tammo.kommand.annotation.Route

@Model("test", ["alias"], [SubTestCommand::class])
class TestCommand {

    @Route(description = "Default route of the test command")
    fun default() = true

    @Route("parameter", "Route with parameters")
    @Parameters([
        Parameter("test", String::class),
        Parameter("optional", String::class, optional = true)
    ])
    fun parameter(test: String, optional: String?) = true

}

And this is how you register and execute them:

package de.tammo.kommand.test.executor

import de.tammo.kommand.executor.CommandExecutor

class CommandExecutorTest {

    fun composeCommand() = CommandExecutor.INSTANCE.register(listOf(TestCommand::class.java))

    fun execute() = CommandExecutor.INSTANCE.execute("test")

}

Look in the unit tests to see more examples.

Gradle Dependency

You have to add the jitpack repository:

repository {
    maven {
        url 'https://jitpack.io' 
    }
}

Add the dependency:

dependencies {
    implementation("com.github.Tammo0987:Kommand:Version")
}

kommand's People

Contributors

tammo0987 avatar

Watchers

James Cloos 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.