VPP Object Model (VOM)
[vpp.git] / src / vpp-api / vom / connection.cpp
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
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
16 #include "vom/connection.hpp"
17
18 namespace VOM {
19 connection::connection()
20   : m_app_name("vpp-OM")
21 {
22 }
23
24 connection::~connection()
25 {
26   disconnect();
27 }
28
29 void
30 connection::disconnect()
31 {
32   m_vapi_conn.disconnect();
33 }
34
35 void
36 connection::connect()
37 {
38   vapi_error_e rv;
39
40   do {
41     rv = m_vapi_conn.connect(m_app_name.c_str(),
42                              NULL, // m_api_prefix.c_str(),
43                              128, 128);
44   } while (VAPI_OK != rv);
45 }
46
47 vapi::Connection&
48 connection::ctx()
49 {
50   return (m_vapi_conn);
51 }
52 }
53
54 /*
55  * fd.io coding-style-patch-verification: ON
56  *
57  * Local Variables:
58  * eval: (c-set-style "mozilla")
59  * End:
60  */