summaryrefslogtreecommitdiffhomepage
path: root/tools/pyang_plugins/bgpyang2golang.py
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2016-01-08 11:52:07 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-01-09 05:17:57 -0800
commitb0fbcc6b1b18d2c9fe67437fe6432914b67c5508 (patch)
treeeb453913e7612460cdea586050d616cf2b91312e /tools/pyang_plugins/bgpyang2golang.py
parent26c03bb779fbb59bb3de1c98a2c9d65e192b50bb (diff)
config: change enum value type to string for ease of configuration
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'tools/pyang_plugins/bgpyang2golang.py')
-rw-r--r--tools/pyang_plugins/bgpyang2golang.py56
1 files changed, 36 insertions, 20 deletions
diff --git a/tools/pyang_plugins/bgpyang2golang.py b/tools/pyang_plugins/bgpyang2golang.py
index 3b7702e9..ce64fce0 100644
--- a/tools/pyang_plugins/bgpyang2golang.py
+++ b/tools/pyang_plugins/bgpyang2golang.py
@@ -34,6 +34,7 @@ _COPYRIGHT_NOTICE = """
// implied.
// See the License for the specific language governing permissions and
// limitations under the License.
+
"""
emitted_type_names = {}
@@ -268,7 +269,6 @@ def visit_children(ctx, module, children):
c.uniq_name = c.parent.uniq_name + '-config'
if c.arg == 'state':
-
c.uniq_name = c.parent.uniq_name + '-state'
if c.arg == 'graceful-restart' and prefix == 'bgp-mp':
@@ -377,7 +377,6 @@ def emit_typedef(ctx, module):
prefix = module.i_prefix
t_map = ctx.golang_typedef_map[prefix]
for name, stmt in t_map.items():
-
if stmt.path in _typedef_exclude:
continue
@@ -402,31 +401,46 @@ def emit_typedef(ctx, module):
if t.arg == 'enumeration':
print >> o, '// typedef for typedef %s:%s'\
% (prefix, type_name_org)
- print >> o, 'type %s int' % (type_name)
+ print >> o, 'type %s string' % (type_name)
const_prefix = convert_const_prefix(type_name_org)
print >> o, 'const ('
-
- already_added_iota = False
- already_added_type = False
+ m = {}
for sub in t.substmts:
- if sub.search_one('value'):
- enum_value = " = "+sub.search_one('value').arg
- else:
- if already_added_iota:
- enum_value = ""
- else:
- enum_value = " = iota"
- already_added_iota = True
+ enum_name = '%s_%s' % (const_prefix, convert_const_prefix(sub.arg))
+ m[sub.arg.lower()] = enum_name
+ print >> o, ' %s %s = "%s"' % (enum_name, type_name, sub.arg.lower())
+ print >> o, ')\n'
+
+ print >> o, '\nfunc (v %s) ToInt() int {' % (type_name)
+ print >> o, 'for i, vv := range []string{%s} {' % (",".join('"%s"' % s.arg.lower() for s in t.substmts))
+ print >> o, 'if string(v) == vv {return i}'
+ print >> o, '}'
+ print >> o, 'return -1'
+ print >> o, '}\n'
+
+ print >> o, 'func (v %s) Validate() error {' % (type_name)
+ print >> o, 'if v.ToInt() < 0 {'
+ print >> o, 'return fmt.Errorf("invalid %s: %%s", v)' % (type_name)
+ print >> o, '}'
+ print >> o, 'return nil'
+ print >> o, '}\n'
+
+ if stmt.search_one('default'):
+ default = stmt.search_one('default')
+ print >> o, 'func (v %s) Default() %s {' % (type_name, type_name)
+ print >> o, 'return %s' % m[default.arg.lower()]
+ print >> o, '}\n'
+
+ print >> o, 'func (v %s) DefaultAsNeeded() %s {' % (type_name, type_name)
+ print >> o, ' if string(v) == "" {'
+ print >> o, ' return v.Default()'
+ print >> o, '}'
+ print >> o, ' return v'
+ print >> o, '}'
- enum_name = convert_const_prefix(sub.arg)
- t = type_name if not already_added_type else ""
- already_added_type = True
-
- print >> o, ' %s_%s %s%s' % (const_prefix, enum_name, t, enum_value)
- print >> o, ')'
elif t.arg == 'union':
print >> o, '// typedef for typedef %s:%s'\
% (prefix, type_name_org)
@@ -548,6 +562,8 @@ def generate_header(ctx):
print _COPYRIGHT_NOTICE
print 'package config'
print ''
+ print 'import "fmt"'
+ print ''
def translate_type(key):