aboutsummaryrefslogtreecommitdiffstats
path: root/adapter/mock/binapi_reflect/binapi_reflect.go
diff options
context:
space:
mode:
authorRastislav Szabo <raszabo@cisco.com>2017-05-22 11:24:42 +0200
committerRastislav Szabo <raszabo@cisco.com>2017-05-22 11:24:42 +0200
commitc60a4ee4e6114ff0dc3cbc9fd9a58321ca2a8abc (patch)
tree6cc9ce3408ab712e85a3d54aa3ec5827a4b63896 /adapter/mock/binapi_reflect/binapi_reflect.go
parent4b0cfc7539ec6fdbc462f60269656fee761bafaf (diff)
fixed golint issues
Change-Id: I325fa618d8db7a9f1783ec7d208fd7b6e853d9a3 Signed-off-by: Rastislav Szabo <raszabo@cisco.com>
Diffstat (limited to 'adapter/mock/binapi_reflect/binapi_reflect.go')
-rw-r--r--adapter/mock/binapi_reflect/binapi_reflect.go74
1 files changed, 0 insertions, 74 deletions
diff --git a/adapter/mock/binapi_reflect/binapi_reflect.go b/adapter/mock/binapi_reflect/binapi_reflect.go
deleted file mode 100644
index f860150..0000000
--- a/adapter/mock/binapi_reflect/binapi_reflect.go
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright (c) 2017 Cisco and/or its affiliates.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at:
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-// Package binapi_reflect is a helper package for generic handling of VPP binary API messages
-// in the mock adapter and integration tests.
-package binapi_reflect
-
-import (
- "reflect"
-)
-
-const SwIfIndex = "SwIfIndex"
-const Retval = "Retval"
-const Reply = "_reply"
-
-// TODO comment
-func FindFieldOfType(reply reflect.Type, fieldName string) (reflect.StructField, bool) {
- if reply.Kind() == reflect.Struct {
- field, found := reply.FieldByName(fieldName)
- return field, found
- } else if reply.Kind() == reflect.Ptr && reply.Elem().Kind() == reflect.Struct {
- field, found := reply.Elem().FieldByName(fieldName)
- return field, found
- }
- return reflect.StructField{}, false
-}
-
-// TODO comment
-func FindFieldOfValue(reply reflect.Value, fieldName string) (reflect.Value, bool) {
- if reply.Kind() == reflect.Struct {
- field := reply.FieldByName(fieldName)
- return field, field.IsValid()
- } else if reply.Kind() == reflect.Ptr && reply.Elem().Kind() == reflect.Struct {
- field := reply.Elem().FieldByName(fieldName)
- return field, field.IsValid()
- }
- return reflect.Value{}, false
-}
-
-// TODO comment
-func IsReplySwIfIdx(reply reflect.Type) bool {
- _, found := FindFieldOfType(reply, SwIfIndex)
- return found
-}
-
-// TODO comment
-func SetSwIfIdx(reply reflect.Value, swIfIndex uint32) {
- if field, found := FindFieldOfValue(reply, SwIfIndex); found {
- field.Set(reflect.ValueOf(swIfIndex))
- }
-}
-
-// TODO comment
-func SetRetVal(reply reflect.Value, retVal int32) {
- if field, found := FindFieldOfValue(reply, Retval); found {
- field.Set(reflect.ValueOf(retVal))
- }
-}
-
-// TODO comment
-func ReplyNameFor(request string) (string, bool) {
- return request + Reply, true
-}