summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsip-perf/pjsip_perf.h
blob: 6c5372e3bcfdd0aecf2852b178237e06884f9cae (plain)
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
/* $Id$ */
/* 
 * Copyright (C) 2003-2006 Benny Prijono <benny@prijono.org>
 *
 * This program 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.
 *
 * This program 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 */
#ifndef __PJSIP_PERF_H__
#define __PJSIP_PERF_H__

#include <pjsua-lib/pjsua.h>


PJ_BEGIN_DECL


typedef struct batch batch;
typedef struct session session;

/**
 * A test batch.
 */
struct batch
{
    PJ_DECL_LIST_MEMBER(struct batch);

    unsigned	 rate;		/**< How many tasks to perform		    */

    unsigned	 started;	/**< # of tasks started.		    */
    unsigned	 success;	/**< # of tasks completed successfully.	    */
    unsigned	 failed;	/**< # of failed tasks.			    */

    pj_time_val	 start_time;	/**< Start time of the tests.		    */
    pj_time_val	 spawned_time;	/**< Time when all tasks has been started.  */
    pj_time_val	 end_time;	/**< Time when all tasks has completed.	    */
};

/**
 * Test session.
 */
struct session
{
    pj_pool_t	    *pool;
    pj_time_val	     start_time;
    pj_bool_t	     stopping;
    pjsip_method     method;
    struct batch     active_list;
    struct batch     free_list;

    unsigned	     outstanding;
    unsigned	     total_created;
};


/**
 * Request parameter.
 */
struct request_param
{
    pj_str_t	    dst;
    pj_str_t	    src;
    pjsip_cred_info cred;
};


typedef struct request_param request_param;


void app_perror(const char *sender, const char *title, pj_status_t status);

/* OPTIONS test */
pj_status_t options_handler_init(void);
pj_status_t options_spawn_test(const pj_str_t *target,
			       const pj_str_t *from,
			       const pj_str_t *to,
			       unsigned cred_cnt,
			       const pjsip_cred_info cred[],
			       const pjsip_route_hdr *route_set,
			       void *test_data,
			       void (*completion_cb)(void*,pj_bool_t));

/* CALL test */
pj_status_t call_handler_init(void);
pj_status_t call_spawn_test( const pj_str_t *target,
			     const pj_str_t *from,
			     const pj_str_t *to,
			     unsigned cred_cnt,
			     const pjsip_cred_info cred[],
			     const pjsip_route_hdr *route_set,
			     void *test_data,
			     void (*completion_cb)(void*,pj_bool_t));



/**
 * Global settings
 */
struct pjsip_perf_settings
{
    /* Global */
    pj_caching_pool  cp;
    pj_pool_t	    *pool;
    pjsip_endpoint  *endpt;
    pj_mutex_t	    *mutex;

    /* Misc: */
    int		     log_level;
    int		     app_log_level;
    char	    *log_file;

    /* Network: */
    int		     local_port;

    /* Threads. */
    pj_bool_t	     quit_flag;
    int		     thread_cnt;
    pj_thread_t	    *thread[16];

    /* Outgoing request method: */
    pjsip_method     method;

    /* Default target: */
    pj_str_t	     target;

    /* Media: */
    pjmedia_endpt   *med_endpt;
    pjmedia_conf    *mconf;

    /* Handling incoming requests: */
    pj_bool_t	     stateless;

    /* Rate control.	*/
    pj_uint32_t	     start_rate;
    pj_uint32_t	     cur_rate;
    
    /* Capacity control. */
    pj_uint32_t	     max_capacity;

    /* Duration control: */
    pj_uint32_t	     duration;

    /* Test control: */
    session	    *session;
    pj_timer_entry   timer;

    /* Counters: */
    pj_uint32_t	     tx_req;
    pj_uint32_t	     tx_res;
    pj_uint32_t	     rx_req;
    pj_uint32_t	     rx_res;
};


typedef struct pjsip_perf_settings pjsip_perf_settings;

extern pjsip_perf_settings settings;



PJ_END_DECL


#endif	/* __PJSIP_PERF_H__ */