Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 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 | |
Neale Ranns | fd92060 | 2017-11-23 12:15:00 -0800 | [diff] [blame^] | 16 | #include <vapi/vapi.hpp> |
| 17 | |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 18 | #include "vom/connection.hpp" |
| 19 | |
| 20 | namespace VOM { |
| 21 | connection::connection() |
Neale Ranns | fd92060 | 2017-11-23 12:15:00 -0800 | [diff] [blame^] | 22 | : m_vapi_conn(new vapi::Connection()) |
| 23 | , m_app_name("VOM") |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 24 | { |
| 25 | } |
| 26 | |
| 27 | connection::~connection() |
| 28 | { |
| 29 | disconnect(); |
| 30 | } |
| 31 | |
| 32 | void |
| 33 | connection::disconnect() |
| 34 | { |
Neale Ranns | fd92060 | 2017-11-23 12:15:00 -0800 | [diff] [blame^] | 35 | m_vapi_conn->disconnect(); |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | void |
| 39 | connection::connect() |
| 40 | { |
| 41 | vapi_error_e rv; |
| 42 | |
| 43 | do { |
Neale Ranns | fd92060 | 2017-11-23 12:15:00 -0800 | [diff] [blame^] | 44 | rv = m_vapi_conn->connect(m_app_name.c_str(), |
| 45 | NULL, // m_api_prefix.c_str(), |
| 46 | 128, 128); |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 47 | } while (VAPI_OK != rv); |
| 48 | } |
| 49 | |
| 50 | vapi::Connection& |
| 51 | connection::ctx() |
| 52 | { |
Neale Ranns | fd92060 | 2017-11-23 12:15:00 -0800 | [diff] [blame^] | 53 | return (*m_vapi_conn); |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | |
| 57 | /* |
| 58 | * fd.io coding-style-patch-verification: ON |
| 59 | * |
| 60 | * Local Variables: |
| 61 | * eval: (c-set-style "mozilla") |
| 62 | * End: |
| 63 | */ |