forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatistics.c
1073 lines (890 loc) · 23.8 KB
/
statistics.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2006 Voice Sistem SRL
* Copyright (C) 2010-2012 OpenSIPS Solutions
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*
* History:
* ---------
* 2006-01-16 first version (bogdan)
* 2006-11-28 added get_stat_var_from_num_code() (Jeffrey Magder -
* SOMA Networks)
* 2009-04-23 function var accepts a context parameter (bogdan)
* 2012-09-21 support for dynamic statistics (created of demand at runtime)
* (bogdan)
*/
/*!
* \file
* \brief Statistics support
*/
#include <string.h>
#include "atomic.h"
#include "mem/shm_mem.h"
#include "mem/rpm_mem.h"
#include "mi/mi.h"
#include "ut.h"
#include "dprint.h"
#include "locking.h"
#include "core_stats.h"
#include "statistics.h"
#include "pt.h"
#include "globals.h"
#include "rw_locking.h"
#ifdef STATISTICS
static stats_collector *collector = NULL;
static int stats_ready;
static mi_response_t *mi_get_stats(const mi_params_t *params,
struct mi_handler *async_hdl);
static mi_response_t *w_mi_list_stats(const mi_params_t *params,
struct mi_handler *async_hdl);
static mi_response_t *w_mi_list_stats_1(const mi_params_t *params,
struct mi_handler *async_hdl);
static mi_response_t *mi_reset_stats(const mi_params_t *params,
struct mi_handler *async_hdl);
static mi_response_t *mi_reset_all_stats(const mi_params_t *params,
struct mi_handler *async_hdl);
static const mi_export_t mi_stat_cmds[] = {
{ "get_statistics",
"prints the statistics (all, group or one) realtime values.", 0, 0, {
{mi_get_stats, {"statistics", 0}},
{EMPTY_MI_RECIPE}
}
},
{ "list_statistics",
"lists all the registered statistics and their types", 0, 0, {
{w_mi_list_stats, {0}},
{w_mi_list_stats_1, {"statistics", 0}},
{EMPTY_MI_RECIPE}
}
},
{ "reset_statistics", "resets the value of a statistic variable", 0, 0, {
{mi_reset_stats, {"statistics", 0}},
{EMPTY_MI_RECIPE}
}
},
{ "reset_all_statistics", "resets the value of all resetable variables", 0, 0, {
{mi_reset_all_stats, {0}},
{EMPTY_MI_RECIPE}
}
},
{EMPTY_MI_EXPORT}
};
#ifdef NO_ATOMIC_OPS
#warning STATISTICS: Architecture with no support for atomic operations. \
Using Locks!!
gen_lock_t *stat_lock = 0;
#endif
#define stat_hash(_s) core_hash( _s, NULL, STATS_HASH_SIZE)
#define stat_is_hidden(_s) ((_s)->flags&STAT_HIDDEN)
/*! \brief
* Returns the statistic associated with 'numerical_code' and 'out_codes'.
* Specifically:
*
* - if out_codes is nonzero, then the stat_var for the number of messages
* _sent out_ with the 'numerical_code' will be returned if it exists.
* - otherwise, the stat_var for the number of messages _received_ with the
* 'numerical_code' will be returned, if the stat exists.
*/
stat_var *get_stat_var_from_num_code(unsigned int numerical_code, int out_codes)
{
static char msg_code[INT2STR_MAX_LEN+4];
str stat_name;
stat_name.s = int2bstr( (unsigned long)numerical_code, msg_code,
&stat_name.len);
stat_name.s[stat_name.len++] = '_';
if (out_codes) {
stat_name.s[stat_name.len++] = 'o';
stat_name.s[stat_name.len++] = 'u';
stat_name.s[stat_name.len++] = 't';
} else {
stat_name.s[stat_name.len++] = 'i';
stat_name.s[stat_name.len++] = 'n';
}
return get_stat(&stat_name);
}
char *build_stat_name( str* prefix, char *var_name)
{
int n;
char *s;
char *p;
n = prefix->len + 1 + strlen(var_name) + 1;
s = (char*)shm_malloc( n );
if (s==0) {
LM_ERR("no more shm mem\n");
return 0;
}
memcpy( s, prefix->s, prefix->len);
p = s + prefix->len;
*(p++) = '-';
memcpy( p , var_name, strlen(var_name));
p += strlen(var_name);
*(p++) = 0;
return s;
}
/************* Functions for handling MODULEs(groups) of stats ***************/
module_stats* get_stat_module( str *module)
{
int i;
if ( (module==0) || module->s==0 || module->len==0 )
return 0;
for( i=0 ; i<collector->mod_no ; i++ ) {
if ( (collector->amodules[i].name.len == module->len) &&
(strncasecmp(collector->amodules[i].name.s,module->s,module->len)==0) )
return &collector->amodules[i];
}
return 0;
}
module_stats *module_stats_iterate(module_stats *mod)
{
int m;
if (!mod) {
/* first iteration - return head */
return ((collector->mod_no > 0)?
&collector->amodules[0]:NULL);
}
for (m = 0; m < collector->mod_no - 1; m++)
if (&collector->amodules[m] == mod)
return &collector->amodules[m + 1];
return NULL;
}
static inline module_stats* __add_stat_module(str *module, int unsafe)
{
module_stats *amods;
module_stats *mods;
if ( (module==0) || module->len==0 )
return NULL;
amods = unsafe ?
(module_stats*)shm_realloc_unsafe( collector->amodules,
(collector->mod_no+1)*sizeof(module_stats))
:
(module_stats*)shm_realloc( collector->amodules,
(collector->mod_no+1)*sizeof(module_stats));
if (amods==0) {
LM_ERR("no more shm memory\n");
return NULL;
}
collector->amodules = amods;
collector->mod_no++;
mods = &amods[collector->mod_no-1];
memset( mods, 0, sizeof(module_stats) );
mods->name.s = unsafe ? shm_malloc_unsafe(module->len) : shm_malloc(module->len);
if (!mods->name.s) {
LM_ERR("oom\n");
return NULL;
}
memcpy(mods->name.s, module->s, module->len);
mods->name.len = module->len;
mods->idx = collector->mod_no-1;
return mods;
}
module_stats *add_stat_module(char *module)
{
str smodule;
init_str(&smodule, module);
return __add_stat_module(&smodule, 0);
}
/***************** Init / Destroy STATS support functions *******************/
int clone_pv_stat_name(const str *name, str *clone)
{
clone->s = (char*)shm_malloc(name->len);
if (clone->s==NULL) {
LM_ERR("failed to allocated more shm mem (%d)\n",name->len);
return -1;
}
clone->len = name->len;
memcpy(clone->s,name->s,name->len);
return 0;
}
int init_stats_collector(void)
{
module_stats *dy_mod;
/* init the collector */
collector = (stats_collector*)shm_malloc_unsafe(sizeof(stats_collector));
if (collector==0) {
LM_ERR("no more shm mem\n");
goto error;
}
memset( collector, 0 , sizeof(stats_collector));
/*
* register shm statistics in an unsafe manner, as some allocators
* would actually attempt to update these statistics
* during their "safe" allocations -- Liviu
*/
if (__register_module_stats( "shmem", shm_stats, 1) != 0) {
LM_ERR("failed to register sh_mem statistics\n");
goto error;
}
if (__register_module_stats( "rpmem", rpm_stats, 1) != 0) {
LM_ERR("failed to register rp_mem statistics\n");
goto error;
}
stats_ready = 1;
#ifdef NO_ATOMIC_OPS
/* init BIG (really BIG) lock */
stat_lock = lock_alloc();
if (stat_lock==0 || lock_init( stat_lock )==0 ) {
LM_ERR("failed to init the really BIG lock\n");
goto error;
}
#endif
collector->rwl = (void*)lock_init_rw();
if (collector->rwl==NULL) {
LM_ERR("failed to create RW lock dynamic stats\n");
goto error;
}
/* register MI commands */
if (register_mi_mod( "statistics", mi_stat_cmds)<0) {
LM_ERR("unable to register MI cmds\n");
goto error;
}
/* register core statistics */
if (register_module_stats( "core", core_stats)!=0 ) {
LM_ERR("failed to register core statistics\n");
goto error;
}
/* register network-level statistics */
if (register_module_stats( "net", net_stats)!=0 ) {
LM_ERR("failed to register network statistics\n");
goto error;
}
/* create the module for "dynamic" statistics */
dy_mod = add_stat_module( DYNAMIC_MODULE_NAME );
if (dy_mod==NULL) {
LM_ERR("failed to create <%s> module\n",DYNAMIC_MODULE_NAME);
goto error;
}
/* mark it as dynamic, so it will require locking */
dy_mod->is_dyn = 1 ;
LM_DBG("statistics manager successfully initialized\n");
return 0;
error:
return -1;
}
void destroy_stats_collector(void)
{
stat_var *stat;
stat_var *tmp_stat;
group_stats *grp, *grp_next;
int i, idx;
#ifdef NO_ATOMIC_OPS
/* destroy big lock */
if (stat_lock)
lock_destroy( stat_lock );
#endif
if (collector) {
/* destroy hash tables */
for( i=0 ; i<STATS_HASH_SIZE ; i++ ) {
/* static stats */
for( stat=collector->hstats[i] ; stat ; ) {
tmp_stat = stat;
stat = stat->hnext;
if ((tmp_stat->flags&STAT_IS_FUNC)==0 && tmp_stat->u.val && !(tmp_stat->flags&STAT_NOT_ALLOCATED))
shm_free(tmp_stat->u.val);
if ( (tmp_stat->flags&STAT_SHM_NAME) && tmp_stat->name.s)
shm_free(tmp_stat->name.s);
if (!(tmp_stat->flags&STAT_NOT_ALLOCATED))
shm_free(tmp_stat);
}
/* dynamic stats*/
for( stat=collector->dy_hstats[i] ; stat ; ) {
tmp_stat = stat;
stat = stat->hnext;
if ((tmp_stat->flags&STAT_IS_FUNC)==0 && tmp_stat->u.val && !(tmp_stat->flags&STAT_NOT_ALLOCATED))
shm_free(tmp_stat->u.val);
if ( (tmp_stat->flags&STAT_SHM_NAME) && tmp_stat->name.s)
shm_free(tmp_stat->name.s);
if (!(tmp_stat->flags&STAT_NOT_ALLOCATED))
shm_free(tmp_stat);
}
}
for (idx = 0; idx < collector->mod_no; idx++) {
shm_free(collector->amodules[idx].name.s);
}
/* destroy sts_module array */
if (collector->amodules)
shm_free(collector->amodules);
/* destroy the stat's groups */
for (grp = collector->groups; grp; grp = grp_next) {
grp_next = grp->next;
shm_free(grp->vars);
shm_free(grp);
}
/* destroy the RW lock */
if (collector->rwl)
lock_destroy_rw( (rw_lock_t *)collector->rwl);
/* destroy the collector */
shm_free(collector);
}
return;
}
int stats_are_ready(void)
{
return stats_ready;
}
/********************* Create/Register STATS functions ***********************/
/**
* Note: certain statistics (e.g. shm statistics) require different handling,
* hence the <unsafe> parameter
*/
static int __register_stat(str *module, str *name, stat_var **pvar,
unsigned short flags, void *ctx, int unsafe)
{
module_stats* mods;
stat_var **shash;
stat_var *stat;
stat_var *it;
int hash;
if (module==0 || name==0 || pvar==0) {
LM_ERR("invalid parameters module=%p, name=%p, pvar=%p \n",
module, name, pvar);
goto error;
}
if(flags&STAT_NOT_ALLOCATED){
stat = *pvar;
goto do_register;
}
stat = unsafe ?
(stat_var*)shm_malloc_unsafe(sizeof(stat_var) +
(((flags&STAT_SHM_NAME)==0)?name->len:0))
:
(stat_var*)shm_malloc(sizeof(stat_var) +
(((flags&STAT_SHM_NAME)==0)?name->len:0));
if (stat==0) {
LM_ERR("no more shm memory\n");
goto error;
}
memset( stat, 0, sizeof(stat_var) );
if ( (flags&STAT_IS_FUNC)==0 ) {
stat->u.val = unsafe ?
(stat_val*)shm_malloc_unsafe(sizeof(stat_val)) :
(stat_val*)shm_malloc(sizeof(stat_val));
if (stat->u.val==0) {
LM_ERR("no more shm memory\n");
goto error1;
}
#ifdef NO_ATOMIC_OPS
*(stat->u.val) = 0;
#else
atomic_init(stat->u.val, 0);
#endif
*pvar = stat;
} else {
stat->u.f = (stat_function)(pvar);
}
/* is the module already recorded? */
do_register:
mods = get_stat_module(module);
if (mods==0) {
mods = __add_stat_module(module, unsafe);
if (mods==0) {
LM_ERR("failed to add new module\n");
goto error2;
}
}
/* fill the stat record */
stat->mod_idx = mods->idx;
stat->name.len = name->len;
if ( (flags&STAT_SHM_NAME)==0 ) {
if(flags&STAT_NOT_ALLOCATED)
stat->name.s = shm_malloc_unsafe(name->len);
else
stat->name.s = (char*)(stat+1);
memcpy(stat->name.s, name->s, name->len);
} else {
stat->name.s = name->s;
}
stat->flags = flags;
stat->context = ctx;
/* compute the hash by name */
hash = stat_hash( &stat->name );
/* link it into appropriate hash table , with or without locking */
if (mods->is_dyn) {
lock_start_write((rw_lock_t *)collector->rwl);
shash = collector->dy_hstats;
/* double check for duplicates (due race conditions) */
for( it=shash[hash] ; it ; it=stat->hnext ) {
if ( (it->name.len==stat->name.len) &&
(strncasecmp( it->name.s, stat->name.s, stat->name.len)==0) ) {
/* duplicate found -> drop current stat and return the
* found one */
lock_stop_write((rw_lock_t *)collector->rwl);
if (unsafe) {
if (flags&STAT_SHM_NAME)
shm_free_unsafe(stat->name.s);
if ((flags&STAT_IS_FUNC)==0)
shm_free_unsafe(stat->u.val);
shm_free_unsafe(stat);
} else {
if (flags&STAT_SHM_NAME)
shm_free(stat->name.s);
if ((flags&STAT_IS_FUNC)==0)
shm_free(stat->u.val);
shm_free(stat);
}
if ((flags&STAT_IS_FUNC)==0)
*pvar = it;
return 0;
}
}
/* new genuin stat-> continue */
} else {
shash = collector->hstats;
}
if (shash[hash]==0) {
shash[hash] = stat;
} else {
it = shash[hash];
while(it->hnext)
it = it->hnext;
it->hnext = stat;
}
collector->stats_no++;
/* add the statistic also to the module statistic list */
if (mods->tail) {
mods->tail->lnext = stat;
} else {
mods->head = stat;
}
mods->tail = stat;
mods->no++;
if (mods->is_dyn)
lock_stop_write((rw_lock_t *)collector->rwl);
return 0;
error2:
if ( (flags&STAT_IS_FUNC)==0 ) {
if (unsafe)
shm_free_unsafe(*pvar);
else
shm_free(*pvar);
*pvar = 0;
}
error1:
if (unsafe)
shm_free_unsafe(stat);
else
shm_free(stat);
error:
if ( (flags&STAT_IS_FUNC)==0 && pvar!=NULL)
*pvar = 0;
return -1;
}
int register_stat2(const char *module, char *name, stat_var **pvar,
unsigned short flags, void *ctx, int unsafe)
{
str smodule, sname;
init_str(&smodule, module);
init_str(&sname, name);
return __register_stat(&smodule, &sname, pvar, flags, ctx, unsafe);
}
int __register_dynamic_stat(str *group, str *name, stat_var **pvar)
{
str dynamic_grp = str_init(DYNAMIC_MODULE_NAME);
if (!group)
group = &dynamic_grp;
return __register_stat(group, name, pvar, 0/*flags*/, NULL, 0);
}
int register_dynamic_stat( str *name, stat_var **pvar)
{
return __register_dynamic_stat (NULL, name, pvar);
}
int __register_module_stats(const char *module, const stat_export_t *stats, int unsafe)
{
int ret;
if (module==0 || module[0]==0 || !stats || !stats[0].name)
return 0;
for( ; stats->name ; stats++) {
ret = register_stat2( module, stats->name, stats->stat_pointer,
stats->flags, NULL, unsafe);
if (ret!=0) {
LM_CRIT("failed to add statistic\n");
return -1;
}
}
return 0;
}
stat_var* __get_stat( const str *name, int mod_idx )
{
stat_var *stat;
int hash;
if (collector==NULL || name==0 || name->s==0 || name->len==0)
return 0;
/* compute the hash by name */
hash = stat_hash( name );
/* and look for it , first in the hash for static stats */
for( stat=collector->hstats[hash] ; stat ; stat=stat->hnext ) {
if ( !stat_is_hidden(stat) && (stat->name.len==name->len) &&
(strncasecmp( stat->name.s, name->s, name->len)==0) &&
(mod_idx < 0 || stat->mod_idx == mod_idx))
return stat;
}
/* and then in the hash for dynamic stats */
lock_start_read((rw_lock_t *)collector->rwl);
for( stat=collector->dy_hstats[hash] ; stat ; stat=stat->hnext ) {
if ( !stat_is_hidden(stat) && (stat->name.len==name->len) &&
(strncasecmp( stat->name.s, name->s, name->len)==0) &&
(mod_idx < 0 || stat->mod_idx == mod_idx)) {
lock_stop_read((rw_lock_t *)collector->rwl);
return stat;
}
}
lock_stop_read((rw_lock_t *)collector->rwl);
return 0;
}
stat_var* get_stat( const str *name )
{
return __get_stat(name, -1);
}
int mi_stat_name(str *mod, str *stat, str *out)
{
static str tmp_buf = {0, 0};
char *tmp;
if (mod) {
tmp = pkg_realloc(tmp_buf.s, mod->len + stat->len + 1);
if (!tmp) {
LM_ERR("no more pkg memory\n");
return -1;
}
tmp_buf.s = tmp;
memcpy(tmp_buf.s, mod->s, mod->len);
tmp_buf.len = mod->len;
tmp_buf.s[tmp_buf.len++] = ':';
memcpy(tmp_buf.s + tmp_buf.len, stat->s, stat->len);
tmp_buf.len += stat->len;
out->len = tmp_buf.len;
out->s = tmp_buf.s;
} else {
out->len = stat->len;
out->s = stat->s;
}
return 0;
}
int mi_print_stat(mi_item_t *resp_obj, str *mod, str *stat, unsigned long val)
{
str tmp_buf;
if (mi_stat_name(mod, stat, &tmp_buf) < 0) {
LM_ERR("cannot get stat name\n");
return -1;
}
if (add_mi_number(resp_obj, tmp_buf.s, tmp_buf.len, val) < 0) {
LM_ERR("cannot add stat\n");
return -1;
}
return 0;
}
str *get_stat_module_name(stat_var *stat)
{
return &collector->amodules[stat->mod_idx].name;
}
/***************************** MI STUFF ********************************/
inline static int mi_add_stat(mi_item_t *resp_obj, stat_var *stat)
{
return mi_print_stat(resp_obj, &collector->amodules[stat->mod_idx].name,
&stat->name, get_stat_val(stat));
}
inline static int mi_list_stat(mi_item_t *resp_obj, str *mod, stat_var *stat)
{
str tmp_buf;
char *buf;
if (mi_stat_name(mod, &stat->name, &tmp_buf) < 0) {
LM_ERR("cannot get stat name\n");
return -1;
}
if (stat->flags & (STAT_IS_FUNC|STAT_NO_RESET))
buf = "non-incremental";
else
buf = "incremental";
if (add_mi_string_fmt(resp_obj, tmp_buf.s, tmp_buf.len, "%s", buf)<0) {
LM_ERR("cannot add stat\n");
return -1;
}
return 0;
}
inline static int mi_add_module_stats(mi_item_t *resp_obj, module_stats *mods)
{
stat_var *stat;
int ret = 0;
if (mods->is_dyn)
lock_start_read((rw_lock_t *)collector->rwl);
for( stat=mods->head ; stat ; stat=stat->lnext) {
if (stat_is_hidden(stat))
continue;
ret = mi_print_stat(resp_obj, &mods->name, &stat->name,
get_stat_val(stat));
if (ret < 0)
break;
}
if (mods->is_dyn)
lock_stop_read((rw_lock_t *)collector->rwl);
return ret;
}
inline static int mi_list_module_stats(mi_item_t *resp_obj, module_stats *mods)
{
stat_var *stat;
int ret = 0;
if (mods->is_dyn)
lock_start_read((rw_lock_t *)collector->rwl);
for( stat=mods->head ; stat ; stat=stat->lnext) {
if (stat_is_hidden(stat))
continue;
ret = mi_list_stat(resp_obj, &mods->name, stat);
if (ret < 0)
break;
}
if (mods->is_dyn)
lock_stop_read((rw_lock_t *)collector->rwl);
return ret;
}
static mi_response_t *mi_get_stats(const mi_params_t *params,
struct mi_handler *async_hdl)
{
mi_response_t *resp;
mi_item_t *resp_obj;
mi_item_t *params_arr;
int i, j, no_params;
int found;
module_stats *mods;
stat_var *stat;
str val;
resp = init_mi_result_object(&resp_obj);
if (!resp)
return 0;
if (get_mi_array_param(params, "statistics", ¶ms_arr, &no_params) < 0) {
free_mi_response(resp);
return init_mi_param_error();
}
for (i = 0; i < no_params; i++) {
if (get_mi_arr_param_string(params_arr, i, &val.s, &val.len) < 0) {
free_mi_response(resp);
return init_mi_param_error();
}
if ( val.len==3 && memcmp(val.s,"all",3)==0) {
/* add all statistic variables */
for( j=0 ; j<collector->mod_no ;j++ ) {
if (mi_add_module_stats(resp_obj, &collector->amodules[j] )!=0)
goto error;
}
found = 1;
} else if ( val.len>1 && val.s[val.len-1]==':') {
/* add module statistics */
val.len--;
mods = get_stat_module( &val );
if (mods==0)
continue;
if (mi_add_module_stats(resp_obj, mods)!=0)
goto error;
found = 1;
} else {
/* add only one statistic */
stat = get_stat( &val );
if (stat==0)
continue;
if (mi_add_stat(resp_obj, stat)!=0)
goto error;
found = 1;
}
}
if (!found) {
free_mi_response(resp);
return init_mi_error(404, MI_SSTR("Statistics Not Found"));
}
return resp;
error:
free_mi_response(resp);
return 0;
}
static mi_response_t *w_mi_list_stats(const mi_params_t *params,
struct mi_handler *async_hdl)
{
mi_response_t *resp;
mi_item_t *resp_obj;
int i;
resp = init_mi_result_object(&resp_obj);
if (!resp)
return 0;
for( i=0 ; i<collector->mod_no ;i++ ) {
if (mi_list_module_stats(resp_obj, &collector->amodules[i] )!=0) {
free_mi_response(resp);
return 0;
}
}
return resp;
}
static mi_response_t *w_mi_list_stats_1(const mi_params_t *params,
struct mi_handler *async_hdl)
{
mi_response_t *resp;
mi_item_t *resp_obj;
mi_item_t *params_arr;
int i, no_params;
int found;
module_stats *mods;
stat_var *stat;
str val;
resp = init_mi_result_object(&resp_obj);
if (!resp)
return 0;
if (get_mi_array_param(params, "statistics", ¶ms_arr, &no_params) < 0) {
free_mi_response(resp);
return init_mi_param_error();
}
for (i = 0; i < no_params; i++) {
if (get_mi_arr_param_string(params_arr, i, &val.s, &val.len) < 0) {
free_mi_response(resp);
return init_mi_param_error();
}
if ( val.len>1 && val.s[val.len-1]==':') {
/* add module statistics */
val.len--;
mods = get_stat_module( &val );
if (mods==0)
continue;
if (mi_list_module_stats(resp_obj, mods)!=0)
goto error;
found = 1;
} else {
/* add only one statistic */
stat = get_stat( &val );
if (stat==0)
continue;
if (mi_list_stat(resp_obj,NULL, stat)!=0)
goto error;
found = 1;
}
}
if (!found) {
free_mi_response(resp);
return init_mi_error(404, MI_SSTR("Statistics Not Found"));
}
return resp;
error:
free_mi_response(resp);
return 0;
}
static mi_response_t *mi_reset_stats(const mi_params_t *params,
struct mi_handler *async_hdl)
{
mi_item_t *params_arr;
int i, no_params;
str val;
stat_var *stat;
int found = 0;
if (get_mi_array_param(params, "statistics", ¶ms_arr, &no_params) < 0)
return init_mi_param_error();
for (i = 0; i < no_params; i++) {
if (get_mi_arr_param_string(params_arr, i, &val.s, &val.len) < 0)
return init_mi_param_error();
stat = get_stat(&val);
if (stat==0)
continue;
reset_stat( stat );
found = 1;
}
if (!found)
return init_mi_error(404, MI_SSTR("Statistics Not Found"));
return init_mi_result_ok();
}
static mi_response_t *mi_reset_all_stats(const mi_params_t *params,
struct mi_handler *async_hdl)
{
int i;
stat_var *stat;
if (collector==NULL)
return 0;
/* static stats */
for (i=0;i<STATS_HASH_SIZE;i++) {
for( stat=collector->hstats[i] ; stat ; stat=stat->hnext ) {
if ( !stat_is_hidden(stat)) {
reset_stat( stat );
}
}
}
/* dynamic stats */
lock_start_read((rw_lock_t *)collector->rwl);
for (i=0;i<STATS_HASH_SIZE;i++) {
for( stat=collector->dy_hstats[i] ; stat ; stat=stat->hnext ) {
if ( !stat_is_hidden(stat)) {
reset_stat( stat );
}
}
}
lock_stop_read((rw_lock_t *)collector->rwl);
/* module stats */
for( i=0 ; i<collector->mod_no ; i++ ) {
for( stat=collector->amodules[i].head ; stat ; stat=stat->hnext ) {