Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
a1b4dd6c
Commit
a1b4dd6c
authored
Jan 19, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
4ecceb3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
25 deletions
+54
-25
t/neo/protogen.go
t/neo/protogen.go
+54
-25
No files found.
t/neo/protogen.go
View file @
a1b4dd6c
...
@@ -162,23 +162,60 @@ var basicTypes = map[types.BasicKind]basicCodec {
...
@@ -162,23 +162,60 @@ var basicTypes = map[types.BasicKind]basicCodec {
}
}
// state of decode codegen
// Buffer + bell & whistles
type
Buffer
struct
{
bytes
.
Buffer
}
func
(
b
*
Buffer
)
emit
(
format
string
,
a
...
interface
{})
{
fmt
.
Fprintf
(
b
,
format
+
"
\n
"
,
a
...
)
}
// interface of codegenerator for coder/decoder
type
CodecCodeGen
interface
{
// emit code to process basic fixed types (not string)
// userType is type actually used in source (for which typ is underlying), or nil
genBasic
(
path
string
,
typ
*
types
.
Basic
,
userType
types
.
Type
,
obj
types
.
Object
)
genSlice
(
path
string
,
typ
*
types
.
Slice
,
obj
types
.
Object
)
genMap
(
path
string
,
typ
*
types
.
Map
,
obj
types
.
Object
)
// XXX particular case of slice
genStrBytes
(
path
string
)
}
// encode/decode codegen
type
encoder
struct
{
Buffer
// XXX
n
int
}
type
decoder
struct
{
type
decoder
struct
{
buf
bytes
.
Buffer
// buffer for generated code
Buffer
// buffer for generated code
n
int
// current decode position in data
n
int
// current decode position in data
}
}
func
(
d
*
decoder
)
emit
(
format
string
,
a
...
interface
{})
{
//var _ CodecCodeGen = (*encoder)(nil)
fmt
.
Fprintf
(
&
d
.
buf
,
format
+
"
\n
"
,
a
...
)
var
_
CodecCodeGen
=
(
*
decoder
)(
nil
)
func
(
/*e*/
d
*
encoder
)
genBasic
(
path
string
,
typ
*
types
.
Basic
,
userType
types
.
Type
,
obj
types
.
Object
)
{
basic
:=
basicTypes
[
typ
.
Kind
()]
dataptr
:=
fmt
.
Sprintf
(
"data[%v:]"
,
d
.
n
)
decoded
:=
fmt
.
Sprintf
(
basic
.
decode
,
dataptr
)
d
.
n
+=
basic
.
wireSize
if
userType
!=
nil
&&
userType
!=
typ
{
// userType is a named type over some basic, like
// type ClusterState int32
// -> need to cast
decoded
=
fmt
.
Sprintf
(
"%v(%v)"
,
typeName
(
userType
),
decoded
)
}
// NOTE no space before "=" - to be able to merge with ":"
// prefix and become defining assignment
d
.
emit
(
"%s= %s"
,
path
,
decoded
)
}
}
// emit code to decode basic fixed types (not string)
// userType is type actually used in source (for which typ is underlying), or nil
func
(
d
*
decoder
)
genBasic
(
assignto
string
,
typ
*
types
.
Basic
,
userType
types
.
Type
,
obj
types
.
Object
)
{
func
(
d
*
decoder
)
genBasic
(
assignto
string
,
typ
*
types
.
Basic
,
userType
types
.
Type
,
obj
types
.
Object
)
{
basic
,
ok
:=
basicTypes
[
typ
.
Kind
()]
basic
:=
basicTypes
[
typ
.
Kind
()]
if
!
ok
{
log
.
Fatalf
(
"%v: %v: basic type %v not supported"
,
pos
(
obj
),
obj
.
Name
(),
typ
)
}
dataptr
:=
fmt
.
Sprintf
(
"data[%v:]"
,
d
.
n
)
dataptr
:=
fmt
.
Sprintf
(
"data[%v:]"
,
d
.
n
)
decoded
:=
fmt
.
Sprintf
(
basic
.
decode
,
dataptr
)
decoded
:=
fmt
.
Sprintf
(
basic
.
decode
,
dataptr
)
d
.
n
+=
basic
.
wireSize
d
.
n
+=
basic
.
wireSize
...
@@ -271,19 +308,6 @@ func (d *decoder) genMap(assignto string, typ *types.Map, obj types.Object) {
...
@@ -271,19 +308,6 @@ func (d *decoder) genMap(assignto string, typ *types.Map, obj types.Object) {
d
.
n
=
0
d
.
n
=
0
}
}
// interface of codegenerator for coder/decoder
type
CodecCodeGen
interface
{
// emit code to process basic fixed types (not string)
// userType is type actually used in source (for which typ is underlying), or nil
genBasic
(
path
string
,
typ
*
types
.
Basic
,
userType
types
.
Type
,
obj
types
.
Object
)
genSlice
(
path
string
,
typ
*
types
.
Slice
,
obj
types
.
Object
)
genMap
(
path
string
,
typ
*
types
.
Map
,
obj
types
.
Object
)
// XXX particular case of slice
genStrBytes
(
path
string
)
}
// top-level driver for emitting encode/decode code for a type
// top-level driver for emitting encode/decode code for a type
// the code emitted is of kind:
// the code emitted is of kind:
//
//
...
@@ -300,6 +324,10 @@ func codegenType(path string, typ types.Type, obj types.Object, codegen CodecCod
...
@@ -300,6 +324,10 @@ func codegenType(path string, typ types.Type, obj types.Object, codegen CodecCod
break
break
}
}
_
,
ok
:=
basicTypes
[
u
.
Kind
()]
if
!
ok
{
log
.
Fatalf
(
"%v: %v: basic type %v not supported"
,
pos
(
obj
),
obj
.
Name
(),
u
)
}
codegen
.
genBasic
(
path
,
u
,
typ
,
obj
)
codegen
.
genBasic
(
path
,
u
,
typ
,
obj
)
case
*
types
.
Array
:
case
*
types
.
Array
:
...
@@ -350,5 +378,6 @@ func gendecode(typespec *ast.TypeSpec) string {
...
@@ -350,5 +378,6 @@ func gendecode(typespec *ast.TypeSpec) string {
d
.
emit
(
"
\n
overflow:"
)
d
.
emit
(
"
\n
overflow:"
)
d
.
emit
(
"return 0, ErrDecodeOverflow"
)
d
.
emit
(
"return 0, ErrDecodeOverflow"
)
d
.
emit
(
"}"
)
d
.
emit
(
"}"
)
return
d
.
buf
.
String
()
//return d.buf.String()
return
d
.
String
()
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment