Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | * stat_client.h - Library for access to VPP statistics segment |
| 3 | * |
| 4 | * Copyright (c) 2018 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | #ifndef included_stat_client_h |
| 18 | #define included_stat_client_h |
| 19 | |
Ole Troan | d577e1f | 2019-04-29 13:38:52 +0200 | [diff] [blame] | 20 | #define STAT_VERSION_MAJOR 1 |
Ole Troan | 233e468 | 2019-05-16 15:01:34 +0200 | [diff] [blame] | 21 | #define STAT_VERSION_MINOR 2 |
Ole Troan | d577e1f | 2019-04-29 13:38:52 +0200 | [diff] [blame] | 22 | |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 23 | #include <stdint.h> |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 24 | #include <unistd.h> |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 25 | #include <vlib/counter_types.h> |
Dave Barach | 531969e | 2019-08-14 09:35:41 -0400 | [diff] [blame^] | 26 | #include <stdbool.h> |
| 27 | #include <vpp/stats/stat_segment_shared.h> |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 28 | |
| 29 | /* Default socket to exchange segment fd */ |
YohanPipereau | 71dd9d5 | 2019-06-06 16:34:14 +0200 | [diff] [blame] | 30 | /* TODO: Get from runtime directory */ |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 31 | #define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock" |
YohanPipereau | 71dd9d5 | 2019-06-06 16:34:14 +0200 | [diff] [blame] | 32 | #define STAT_SEGMENT_SOCKET_FILENAME "stats.sock" |
Ole Troan | 2152e1c | 2018-11-23 23:07:13 +0100 | [diff] [blame] | 33 | |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 34 | typedef struct |
| 35 | { |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 36 | char *name; |
| 37 | stat_directory_type_t type; |
| 38 | union |
| 39 | { |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 40 | double scalar_value; |
Ole Troan | 233e468 | 2019-05-16 15:01:34 +0200 | [diff] [blame] | 41 | counter_t *error_vector; |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 42 | counter_t **simple_counter_vec; |
| 43 | vlib_counter_t **combined_counter_vec; |
Ole Troan | 703908a | 2019-02-26 16:37:03 +0100 | [diff] [blame] | 44 | uint8_t **name_vector; |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 45 | }; |
| 46 | } stat_segment_data_t; |
| 47 | |
Dave Barach | 531969e | 2019-08-14 09:35:41 -0400 | [diff] [blame^] | 48 | typedef struct |
| 49 | { |
| 50 | uint64_t current_epoch; |
| 51 | stat_segment_shared_header_t *shared_header; |
| 52 | stat_segment_directory_entry_t *directory_vector; |
| 53 | ssize_t memory_size; |
| 54 | } stat_client_main_t; |
| 55 | |
| 56 | extern stat_client_main_t stat_client_main; |
| 57 | |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 58 | stat_client_main_t *stat_client_get (void); |
| 59 | void stat_client_free (stat_client_main_t * sm); |
Neale Ranns | 318d794 | 2018-12-03 01:53:32 -0800 | [diff] [blame] | 60 | int stat_segment_connect_r (const char *socket_name, stat_client_main_t * sm); |
| 61 | int stat_segment_connect (const char *socket_name); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 62 | void stat_segment_disconnect_r (stat_client_main_t * sm); |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 63 | void stat_segment_disconnect (void); |
Mohsin Kazmi | 90a9fdf | 2018-12-04 14:31:15 +0000 | [diff] [blame] | 64 | uint8_t **stat_segment_string_vector (uint8_t ** string_vector, |
| 65 | const char *string); |
Ole Troan | 7320210 | 2018-08-31 00:29:48 +0200 | [diff] [blame] | 66 | int stat_segment_vec_len (void *vec); |
Ole Troan | 8254018 | 2018-10-22 09:41:29 +0200 | [diff] [blame] | 67 | void stat_segment_vec_free (void *vec); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 68 | uint32_t *stat_segment_ls_r (uint8_t ** patterns, stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 69 | uint32_t *stat_segment_ls (uint8_t ** pattern); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 70 | stat_segment_data_t *stat_segment_dump_r (uint32_t * stats, |
| 71 | stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 72 | stat_segment_data_t *stat_segment_dump (uint32_t * counter_vec); |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 73 | stat_segment_data_t *stat_segment_dump_entry_r (uint32_t index, |
| 74 | stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 75 | stat_segment_data_t *stat_segment_dump_entry (uint32_t index); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 76 | |
Paul Vinciguerra | 5642109 | 2018-11-21 16:34:09 -0800 | [diff] [blame] | 77 | void stat_segment_data_free (stat_segment_data_t * res); |
| 78 | double stat_segment_heartbeat_r (stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 79 | double stat_segment_heartbeat (void); |
| 80 | |
Ole Troan | cbb8f58 | 2019-04-15 08:53:46 +0200 | [diff] [blame] | 81 | char *stat_segment_index_to_name_r (uint32_t index, stat_client_main_t * sm); |
Ole Troan | 58492a8 | 2018-09-04 13:19:12 +0200 | [diff] [blame] | 82 | char *stat_segment_index_to_name (uint32_t index); |
Ole Troan | b63dbc5 | 2019-06-14 10:26:14 +0200 | [diff] [blame] | 83 | uint64_t stat_segment_version (void); |
| 84 | uint64_t stat_segment_version_r (stat_client_main_t * sm); |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 85 | |
Dave Barach | 531969e | 2019-08-14 09:35:41 -0400 | [diff] [blame^] | 86 | typedef struct |
| 87 | { |
| 88 | uint64_t epoch; |
| 89 | } stat_segment_access_t; |
| 90 | |
| 91 | static inline void |
| 92 | stat_segment_access_start (stat_segment_access_t * sa, |
| 93 | stat_client_main_t * sm) |
| 94 | { |
| 95 | stat_segment_shared_header_t *shared_header = sm->shared_header; |
| 96 | sa->epoch = shared_header->epoch; |
| 97 | while (shared_header->in_progress != 0) |
| 98 | ; |
| 99 | sm->directory_vector = (stat_segment_directory_entry_t *) |
| 100 | stat_segment_pointer (sm->shared_header, |
| 101 | sm->shared_header->directory_offset); |
| 102 | } |
| 103 | |
| 104 | static inline bool |
| 105 | stat_segment_access_end (stat_segment_access_t * sa, stat_client_main_t * sm) |
| 106 | { |
| 107 | stat_segment_shared_header_t *shared_header = sm->shared_header; |
| 108 | |
| 109 | if (shared_header->epoch != sa->epoch || shared_header->in_progress) |
| 110 | return false; |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | |
Ole Troan | 2fee167 | 2018-08-23 13:00:53 +0200 | [diff] [blame] | 115 | #endif /* included_stat_client_h */ |
| 116 | |
| 117 | /* |
| 118 | * fd.io coding-style-patch-verification: ON |
| 119 | * |
| 120 | * Local Variables: |
| 121 | * eval: (c-set-style "gnu") |
| 122 | * End: |
| 123 | */ |