Coder Social home page Coder Social logo

protobuf2map's Introduction

protobuf2map

protobuf2map can decode a ProtocolBuffer marshaled message into a map[string]interface{} using its .proto definition.

This package was created to transform such messages directly to JSON without using the generated (Go) code to do the unmarshaling and marshaling. It can be used to inspect messages for quick view and debugging. Do not use this if performance is of importance.

package main

import (
		pd "github.com/emicklei/protobuf2map"
)

func main() {
	defs := pd.NewDefinitions()
	_ = defs.ReadFile("your.proto")
	protoBytes := []byte{} // your marshalled Protobuf message
	dec := pd.NewDecoder(defs, proto.NewBuffer(protoBytes))
	result, _ := dec.Decode("yours", "YourMessage")
	log.Printf("%#v",result)
}

how to compile the test

protoc --go_out=. *.proto

protobuf2map's People

Contributors

emicklei avatar annymsmthd avatar

Stargazers

hoopa avatar ZevFang avatar fananchong avatar  avatar ik5 avatar w4v3 avatar  avatar  avatar micnncim avatar Koichi Shiraishi avatar Lau Siaw Young avatar  avatar  avatar Jian Ma avatar Tim Voronov avatar

Watchers

 avatar James Cloos avatar  avatar  avatar

protobuf2map's Issues

Missing types (`uint64`)

I get this error when decoding a .proto that works elsewhere:

unknown type:uint64

Is it possible there are a few missing types?

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.