Omit message factory and line numbers from generated output
[govpp.git] / adapter / vppapiclient / vppapiclient_stub.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 package vppapiclient
18
19 import (
20         "git.fd.io/govpp.git/adapter"
21 )
22
23 // VppClient is just an stub adapter that does nothing. It builds only on Windows and OSX, where the real
24 // VPP binary API client adapter does not build. Its sole purpose is to make the compiler happy on Windows and OSX.
25 type VppClient struct{}
26
27 func NewVppAdapter(string) *VppClient {
28         return &VppClient{}
29 }
30
31 func (a *VppClient) Connect() error {
32         return adapter.ErrNotImplemented
33 }
34
35 func (a *VppClient) Disconnect() error {
36         return nil
37 }
38
39 func (a *VppClient) GetMsgID(msgName string, msgCrc string) (uint16, error) {
40         return 0, nil
41 }
42
43 func (a *VppClient) SendMsg(clientID uint32, data []byte) error {
44         return nil
45 }
46
47 func (a *VppClient) SetMsgCallback(cb adapter.MsgCallback) {
48         // no op
49 }
50
51 func (a *VppClient) WaitReady() error {
52         return adapter.ErrNotImplemented
53 }