Initial commit of vpp code.
[vpp.git] / vpp / stats / stats.h
1 /*
2  * Copyright (c) 2015 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 #ifndef __included_stats_h__
16 #define __included_stats_h__
17
18 #include <time.h>
19 #include <vlib/vlib.h>
20 #include <vnet/vnet.h>
21 #include <vnet/interface.h>
22 #include <pthread.h>
23 #include <vlib/threads.h>
24 #include <vlib/unix/unix.h>
25 #include <vlibmemory/api.h>
26 #include <vlibmemory/unix_shared_memory_queue.h>
27
28 typedef struct {
29     u32 client_index;           /* in memclnt registration pool */
30     u32 client_pid;             
31 } vpe_client_registration_t;
32
33 typedef struct {
34     volatile u32 lock;
35     volatile u32 release_hint;
36     u32 thread_id;
37     u32 count;
38     int tag;
39 } data_structure_lock_t;
40
41 typedef struct {
42     void *mheap;
43     pthread_t thread_self;
44     pthread_t thread_handle;
45
46     u32 stats_poll_interval_in_seconds;
47     u32 enable_poller;
48
49     uword *stats_registration_hash;
50     vpe_client_registration_t *stats_registrations;
51
52     /* control-plane data structure lock */
53     data_structure_lock_t * data_structure_lock;
54
55     /* bail out of FIB walk if set */
56     clib_longjmp_t jmp_buf;
57
58     /* convenience */
59     vlib_main_t * vlib_main;
60     vnet_main_t * vnet_main;
61     vnet_interface_main_t * interface_main;
62     api_main_t * api_main;
63 } stats_main_t;
64
65 stats_main_t stats_main;
66
67 void dslock (stats_main_t *sm, int release_hint, int tag);
68 void dsunlock (stats_main_t *sm);
69
70 #endif /* __included_stats_h__ */