Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
flatbuffers
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
flatbuffers
Commits
f675f643
Commit
f675f643
authored
Jul 26, 2018
by
rw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go: give enums their own scalar types
parent
2361dfb6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
27 deletions
+41
-27
idl_gen_go.cpp
src/idl_gen_go.cpp
+16
-1
Any.go
tests/MyGame/Example/Any.go
+6
-5
Color.go
tests/MyGame/Example/Color.go
+5
-4
go_test.go
tests/go_test.go
+14
-17
No files found.
src/idl_gen_go.cpp
View file @
f675f643
...
...
@@ -86,6 +86,18 @@ static void BeginClass(const StructDef &struct_def, std::string *code_ptr) {
code
+=
"
\n
}
\n\n
"
;
}
// Construct the name of the type alias for this enum.
std
::
string
GetEnumTypeName
(
const
EnumDef
&
enum_def
)
{
return
GoIdentity
(
enum_def
.
name
);
}
// Create a type for the enum values.
static
void
GenEnumType
(
const
EnumDef
&
enum_def
,
std
::
string
*
code_ptr
)
{
std
::
string
&
code
=
*
code_ptr
;
code
+=
"type "
+
GetEnumTypeName
(
enum_def
)
+
" = "
;
code
+=
GenTypeBasic
(
enum_def
.
underlying_type
)
+
"
\n
"
;
}
// Begin enum code with a class declaration.
static
void
BeginEnum
(
std
::
string
*
code_ptr
)
{
std
::
string
&
code
=
*
code_ptr
;
...
...
@@ -99,6 +111,8 @@ static void EnumMember(const EnumDef &enum_def, const EnumVal ev,
code
+=
"
\t
"
;
code
+=
enum_def
.
name
;
code
+=
ev
.
name
;
code
+=
" "
;
code
+=
GetEnumTypeName
(
enum_def
);
code
+=
" = "
;
code
+=
NumToString
(
ev
.
value
)
+
"
\n
"
;
}
...
...
@@ -114,7 +128,7 @@ static void BeginEnumNames(const EnumDef &enum_def, std::string *code_ptr) {
std
::
string
&
code
=
*
code_ptr
;
code
+=
"var EnumNames"
;
code
+=
enum_def
.
name
;
code
+=
" = map[
int
]string{
\n
"
;
code
+=
" = map[
"
+
GetEnumTypeName
(
enum_def
)
+
"
]string{
\n
"
;
}
// A single enum name member.
...
...
@@ -636,6 +650,7 @@ static void GenEnum(const EnumDef &enum_def, std::string *code_ptr) {
if
(
enum_def
.
generated
)
return
;
GenComment
(
enum_def
.
doc_comment
,
code_ptr
,
nullptr
);
GenEnumType
(
enum_def
,
code_ptr
);
BeginEnum
(
code_ptr
);
for
(
auto
it
=
enum_def
.
vals
.
vec
.
begin
();
it
!=
enum_def
.
vals
.
vec
.
end
();
++
it
)
{
...
...
tests/MyGame/Example/Any.go
View file @
f675f643
...
...
@@ -2,14 +2,15 @@
package
Example
type
Any
=
byte
const
(
AnyNONE
=
0
AnyMonster
=
1
AnyTestSimpleTableWithEnum
=
2
AnyMyGame_Example2_Monster
=
3
AnyNONE
Any
=
0
AnyMonster
Any
=
1
AnyTestSimpleTableWithEnum
Any
=
2
AnyMyGame_Example2_Monster
Any
=
3
)
var
EnumNamesAny
=
map
[
int
]
string
{
var
EnumNamesAny
=
map
[
Any
]
string
{
AnyNONE
:
"NONE"
,
AnyMonster
:
"Monster"
,
AnyTestSimpleTableWithEnum
:
"TestSimpleTableWithEnum"
,
...
...
tests/MyGame/Example/Color.go
View file @
f675f643
...
...
@@ -2,13 +2,14 @@
package
Example
type
Color
=
int8
const
(
ColorRed
=
1
ColorGreen
=
2
ColorBlue
=
8
ColorRed
Color
=
1
ColorGreen
Color
=
2
ColorBlue
Color
=
8
)
var
EnumNamesColor
=
map
[
int
]
string
{
var
EnumNamesColor
=
map
[
Color
]
string
{
ColorRed
:
"Red"
,
ColorGreen
:
"Green"
,
ColorBlue
:
"Blue"
,
...
...
tests/go_test.go
View file @
f675f643
...
...
@@ -1356,33 +1356,30 @@ func CheckFinishedBytesError(fail func(string, ...interface{})) {
// CheckEnumNames checks that the generated enum names are correct.
func
CheckEnumNames
(
fail
func
(
string
,
...
interface
{}))
{
type
testEnumNames
struct
{
EnumNames
map
[
int
]
string
Expected
map
[
int
]
string
}
data
:=
[
...
]
testEnumNames
{
{
example
.
EnumNamesAny
,
map
[
int
]
string
{
{
want
:=
map
[
example
.
Any
]
string
{
example
.
AnyNONE
:
"NONE"
,
example
.
AnyMonster
:
"Monster"
,
example
.
AnyTestSimpleTableWithEnum
:
"TestSimpleTableWithEnum"
,
},
},
{
example
.
EnumNamesColor
,
map
[
int
]
string
{
example
.
AnyMyGame_Example2_Monster
:
"MyGame_Example2_Monster"
,
}
got
:=
example
.
EnumNamesAny
if
!
reflect
.
DeepEqual
(
got
,
want
)
{
fail
(
"enum name is not equal"
)
}
}
{
want
:=
map
[
example
.
Color
]
string
{
example
.
ColorRed
:
"Red"
,
example
.
ColorGreen
:
"Green"
,
example
.
ColorBlue
:
"Blue"
,
},
},
}
for
_
,
t
:=
range
data
{
for
val
,
name
:=
range
t
.
Expected
{
if
name
!=
t
.
EnumNames
[
val
]
{
got
:=
example
.
EnumNamesColor
if
!
reflect
.
DeepEqual
(
got
,
want
)
{
fail
(
"enum name is not equal"
)
}
}
}
}
// CheckDocExample checks that the code given in FlatBuffers documentation
...
...
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