Skip to content

Recycle works like a thrift store polishing bytes to original shape

Notifications You must be signed in to change notification settings

AngeldsWang/recycle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Recycle

Recycle works like a thrift store polishing bytes to original shape.

Install

go get -u github.com/angeldswang/recycle/cmd/recycle

Usage

→ recycle -h
Given the bytes encoded by thrift protocols and the target definition in thrift IDL,
recycle can restore the data with specific type names instead of field numbers.

Usage:
  recycle [flags]

Flags:
  -h, --help            help for recycle
  -f, --thrift string   thrift idl file path
  -t, --type string     target type name in thrift idl

For example, you have a rpc service for creating user.

$ cat ./example/user.thrift
namespace go example.recycle

struct Profile {
    1: list<string> Interests
    2: i32          Age
}

struct CreateUserRequest {
    1:  required string Name
    10: optional Profile Profile
}

struct CreateUserResponse {
    1: i64 ID
}

service UserService {
    CreateUserResponse CreateUser(1: CreateUserRequest req)
}

Assume you captured the byte stream for a specific rpc request and dumped them with base64 encoded string, you can restore the CreateUserRequest with a readable json format.

$ echo 'gAEAAQAAAApDcmVhdGVVc2VyAAAAewwAAQwACg8AAQoAAAAACAACAAAAFwALAAEAAAAGdGhyaWZ0AAA=' \
| recycle  -f ./example/user.thrift -t CreateUserRequest | jq
{
  "Name": "thrift",
  "Profile": {
    "Age": 23,
    "Interests": []
  }
}

About

Recycle works like a thrift store polishing bytes to original shape

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published