Ugorji Nwoke 23ab95ef5d updating go.mod releases to v1.1.7 5 роки тому
..
README.md ee524d388a Add -nr flag to exclude types from code-generation 8 роки тому
gen.go c44ddad323 codecgen: deleteTempFiles iff codecgen was successful. 5 роки тому
go.mod 23ab95ef5d updating go.mod releases to v1.1.7 5 роки тому
goversion_pkgpath_gte_go111.go ed9a3b5f07 codecgen: add support for go1.11 modules (#266) 5 роки тому
goversion_pkgpath_lt_go111.go ed9a3b5f07 codecgen: add support for go1.11 modules (#266) 5 роки тому
z.go fd33a05832 codec/codecgen: added copyright info 5 роки тому

README.md

codecgen tool

Generate is given a list of *.go files to parse, and an output file (fout), codecgen will create an output file file.go which contains codec.Selfer implementations for the named types found in the files parsed.

Using codecgen is very straightforward.

Download and install the tool

go get -u github.com/ugorji/go/codec/codecgen

Run the tool on your files

The command line format is:

codecgen [options] (-o outfile) (infile ...)

% codecgen -?
Usage of codecgen:
  -c="github.com/ugorji/go/codec": codec path
  -o="": out file
  -r=".*": regex for type name to match
  -nr="": regex for type name to exclude
  -rt="": tags for go run
  -t="": build tag to put in file
  -u=false: Use unsafe, e.g. to avoid unnecessary allocation on []byte->string
  -x=false: keep temp file

% codecgen -o values_codecgen.go values.go values2.go moretypedefs.go

Please see the blog article for more information on how to use the tool.