Omit message factory and line numbers from generated output
[govpp.git] / adapter / vppapiclient / empty_adapter.go
1 // Copyright (c) 2017 Cisco and/or its affiliates.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at:
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 // +build windows darwin
16
17 /*
18         This is just an empty adapter that does nothing. It builds only on Windows and OSX, where the real
19         VPP API client adapter does not build. Its sole purpose is to make the compiler happy on Windows and OSX.
20 */
21
22 package vppapiclient
23
24 import (
25         "git.fd.io/govpp.git/adapter"
26 )
27
28 type vppAPIClientAdapter struct{}
29
30 func NewVppAdapter(string) adapter.VppAdapter {
31         return &vppAPIClientAdapter{}
32 }
33
34 func (a *vppAPIClientAdapter) Connect() error {
35         return adapter.ErrNotImplemented
36 }
37
38 func (a *vppAPIClientAdapter) Disconnect() {
39         // no op
40 }
41
42 func (a *vppAPIClientAdapter) GetMsgID(msgName string, msgCrc string) (uint16, error) {
43         return 0, nil
44 }
45
46 func (a *vppAPIClientAdapter) SendMsg(clientID uint32, data []byte) error {
47         return nil
48 }
49
50 func (a *vppAPIClientAdapter) SetMsgCallback(cb adapter.MsgCallback) {
51         // no op
52 }
53
54 func (a *vppAPIClientAdapter) WaitReady() error {
55         return nil
56 }