Coder Social home page Coder Social logo

gogen's Introduction

gogen

implegen

continuous generation of implementations for interfaces

Motivation

It is very hard to keep up with the implementation of a fluid and complex interface. This tool will add and update methods as the interface changes.

Get Started

By using implgen you can automatically generate a set of methods defined for a specific interface type. The following example writes the method set defined for the interface type InterfaceName in the import path path/to/a/interface to the file update_file.go

go run github.com/Mushus/gogen/implgen -dts "update_file.go" ImplTypeName "path/to/a/interface.InterfaceName"

If you use the go generate command to embed directives as comments, you do not need the dst flag.

//go:generate go run github.com/Mushus/gogen/implgen ImplTypeName "path/to/interface.InterfaceName"

When auto-generating for the io.WriteCloser interface type, the bottom half of the following code is generated.

package main

//go:generate go run github.com/Mushus/gogen/implgen TestWriter "io.WriteCloser"
type TestWriter struct{}

// Auto generated code below here.

func (t TestWriter) Close() error {
	panic("not implemented")
}
func (t TestWriter) Write(p []byte) (n int, err error) {
	panic("not implemented")
}

Install as command

go install github.com/Mushus/gogen/implgen

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.