Change module name to go.fd.io/govpp
[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 novpp
16
17 package vppapiclient
18
19 import (
20         "go.fd.io/govpp/adapter"
21 )
22
23 // stubVppClient 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 stubVppClient struct{}
26
27 func NewVppClient(string) adapter.VppAPI {
28         return &stubVppClient{}
29 }
30
31 func NewVppClientWithInputQueueSize(string, uint16) adapter.VppAPI {
32         return &stubVppClient{}
33 }
34
35 func (a *stubVppClient) Connect() error {
36         return adapter.ErrNotImplemented
37 }
38
39 func (a *stubVppClient) Disconnect() error {
40         return nil
41 }
42
43 func (a *stubVppClient) GetMsgID(msgName string, msgCrc string) (uint16, error) {
44         return 0, nil
45 }
46
47 func (a *stubVppClient) SendMsg(clientID uint32, data []byte) error {
48         return nil
49 }
50
51 func (a *stubVppClient) SetMsgCallback(cb adapter.MsgCallback) {
52         // no op
53 }
54
55 func (a *stubVppClient) WaitReady() error {
56         return adapter.ErrNotImplemented
57 }