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
|
<?xml version="1.0" encoding='ISO-8859-1'?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
<!-- Include general documentation entities -->
<!ENTITY % docentities SYSTEM "../../../docbook/entities.xml">
%docentities;
]>
<!-- Module Admin Guide -->
<chapter xmlns:xi="http://www.w3.org/2001/XInclude">
<title>&adminguide;</title>
<section id="overview">
<title>Overview</title>
<para>
The mohqueue module diverts INVITE requests into a
<ulink url="http://en.wikipedia.org/wiki/Music_on_hold">Music On
Hold (MOH)</ulink> queue where the caller can listen to recorded
audio until an operator is available to take the call. When an
operator is available, a function can be used to transfer the oldest
call in a queue to an operator using an unattended transfer (REFER)
to a specified URI. If successful, the call is removed from the queue.
</para>
<para>
While in queue, recorded audio is streamed to the caller in an endless
loop using the rtpproxy module and application. Each queue can be
configured to use different audio files.
</para>
<para>
The queues are defined in the database which allows for dynamic
configuration of the queues. Each queue is assigned a specific
URI to respond to and a location for the audio files.
</para>
<para>
As each call arrives the database is updated to show the call
status which allows outside processes to inspect the queue. It
can also be inspected using a function to see how many calls are
currently in queue.
</para>
<para>
While in queue, all SIP messages for a call must pass through
the mohqueue module so that it can accurately detect the call
status.
</para>
</section>
<section id="dependencies">
<title>Dependencies</title>
<section id="mod.depends">
<title>Kamailio Modules</title>
<para>
The following modules must be loaded before this module:
<itemizedlist>
<listitem><emphasis>a database module</emphasis></listitem>
<listitem><emphasis>sl module</emphasis></listitem>
<listitem><emphasis>tm module</emphasis></listitem>
<listitem><emphasis>rtpproxy module</emphasis></listitem>
</itemizedlist>
</para>
</section>
<section id="app.depends">
<title>External Libraries or Applications</title>
<para>
The rtpproxy applications supported by the rtpproxy module (e.g.
<ulink url="http://www.b2bua.org/wiki/RTPproxy">
http://www.b2bua.org/wiki/RTPproxy</ulink>).
</para>
</section>
</section>
<section id="parameters">
<title>Parameters</title>
<section id="url.parms">
<title><varname>db_url</varname> (str)</title>
<para>
The URL to connect to the database for the mohqueue tables.
</para>
<para>
<emphasis>Default value for Kamailio.</emphasis>
</para>
<example>
<title>Set <varname>db_url</varname>:</title>
<programlisting format="linespecific">
...
modparam ("mohqueue", "db_url", "mysql://kamailio:kamailiorw@localhost/kamailio")
...
</programlisting>
</example>
</section>
<section id="table.parms">
<title><varname>db_qtable</varname> and <varname>db_ctable</varname> (str)</title>
<para>
<varname>db_qtable</varname> is the name of the table that defines
the queues and <varname>db_ctable</varname> is the table that
maintains the call status.
</para>
<para>
<emphasis>"MOHQUEUES" for <varname>db_qtable</varname> and
"MOHQCALLS" for <varname>db_ctable</varname>.</emphasis>
</para>
<example>
<title>Set table names:</title>
<programlisting format="linespecific">
...
modparam ("mohqueue", "db_qtable", "mqueues")
modparam ("mohqueue", "db_ctable", "mcalls")
...
</programlisting>
</example>
</section>
<section id="dir.parms">
<title><varname>mohdir</varname> (str)</title>
<para>
Path to the directory where the audio files are stored. Audio files
are usually relative to this directory although the value can be
overridden by a directory specified in the queues table.
</para>
<para>
<emphasis>None. If not set by the module it must be defined in the
queues table.</emphasis>
</para>
<example>
<title>Set default directory for audio files:</title>
<programlisting format="linespecific">
...
modparam ("mohqueue", "mohdir", "/var/kamailio/MOH")
...
</programlisting>
</example>
</section>
<section id="maxcalls.parms">
<title><varname>moh_maxcalls</varname> (integer)</title>
<para>
Defines the maximum number of calls that can be placed in queue.
It is the sum of all calls in all queues. It must be in the range
of 1 to 5000. <emphasis>NOTE:</emphasis> it may be limited by the
processing power of the server or the number of available rtpproxy
ports.
</para>
<para>
<emphasis>None. If not set by the module it must be defined in the
queues table.</emphasis>
</para>
<example>
<title>Set default directory for audio files:</title>
<programlisting format="linespecific">
...
modparam ("mohqueue", "mohdir", "/var/kamailio/MOH")
...
</programlisting>
</example>
</section>
</section>
<section id="functions">
<title>Functions</title>
<section id="proc.func">
<title>
<function moreinfo="none">mohq_process ()</function>
</title>
<para>
Checks to see if the current SIP message involves a queue. If it
does it will process the message and return a TRUE value.
</para>
<para>
In order for mohqueue to detect changes in the call it is necessary
that all messages involving the call be processed through this
function. The easiest way is to accomplish this is to place it at
the beginning of the main route of the script.
</para>
<para>
mohqueue calls are identified by an RURI that matches a queue URI.
Once a call is placed in queue it checks the <varname>To</varname>
header field along with the RURI to find a match, except in the case
of a CANCEL which matches only on the RURI.
</para>
<para>
This function has no parameters and must be called from a request route.
</para>
<para>
<emphasis>Return code:</emphasis>
<itemizedlist>
<listitem>
<emphasis>TRUE=successful and call in queue</emphasis>
</listitem>
<listitem>
<emphasis>FALSE=failed, unrecognized URI or unable to place in queue</emphasis>
</listitem>
</itemizedlist>
</para>
<example>
<title><function>mohq_process</function> usage:</title>
<programlisting format="linespecific">
...
request_route {
# main route with limited processing
...
# MOH queue?
if (mohq_process ()) {
xlog ("L_DBG", "Handled by mohqueue");
exit;
}
# An error or not a MOH queue message; continue processing
...
}
...
</programlisting>
</example>
</section>
<section id="send.func">
<title>
<function moreinfo="none">mohq_send (queue_name)</function>
</title>
<para>
Normally calls enter the queue with an initial INVITE message that
1) has a RURI that matches a queue URI and 2) is passed through
<function>mohq_proc ()</function>, which is the preferred method.
</para>
<para>
This function is used when you wish to send a call into a queue that
does not match the queue URI.
</para>
<para>
It has only one parameter, the name of the queue, and must be called
from the request route with an initial INVITE message. The queue name
can be passed as a literal or pseudo-variable.
</para>
<para>
<emphasis>Return code:</emphasis>
<itemizedlist>
<listitem>
<emphasis>TRUE=successful and call in queue</emphasis>
</listitem>
<listitem>
<emphasis>FALSE=failed, unable to place in queue</emphasis>
</listitem>
</itemizedlist>
</para>
<example>
<title><function>mohq_send</function> usage:</title>
<programlisting format="linespecific">
...
# call is initial INVITE and ready for queue?
if (some test) {
if (mohq_send ("main")) {
xlog ("L_DBG", "Sent call to main mohqueue");
exit;
}
# failed to enter queue!
...
}
...
</programlisting>
</example>
</section>
<section id="retrieve.func">
<title>
<function moreinfo="none">mohq_retrieve (queue_name, URI)</function>
</title>
<para>
Retrieves the oldest call in a queue and redirects it to a URI.
Although the function returns, the transfer of the call may not have
completed since the new URI (operator) must answer the call.
</para>
<para>
It has two parameters, the queue name and the URI to REFER the call
to, both which can be passed as literals or pseudo-variables. It can
be called from any route.
</para>
<para>
<emphasis>Return code:</emphasis>
<itemizedlist>
<listitem>
<emphasis>TRUE=successful, transfer started</emphasis>
</listitem>
<listitem>
<emphasis>FALSE=failed, parameters are incorrect or there are no calls in queue</emphasis>
</listitem>
</itemizedlist>
</para>
<example>
<title><function>mohq_retrieve</function> usage:</title>
<programlisting format="linespecific">
...
#!define MOHQNAME "operators"
#!define CGROUP "sip:operators@10.211.64.5"
...
# redirect oldest call to operator call group
if (mohq_retrieve (MOHQNAME, CGROUP)) {
xlog ("L_DBG", "Retrieved call from mohqueue");
exit;
}
# queue is empty or something went wrong
}
...
</programlisting>
</example>
</section>
<section id="count.func">
<title>
<function moreinfo="none">mohq_count (queue_name, pvar)</function>
</title>
<para>
Finds the number of calls that are in a queue. It will not count
calls that are in the process of entering or exiting the queue.
</para>
<para>
The function has two parameters, the name of the queue and the
pseudo-variable which receives the count. The queue name can be
passed as a literal or a pseudo-variable. It can be called from
any route.
</para>
<para>
<emphasis>Return code:</emphasis>
<itemizedlist>
<listitem>
<emphasis>TRUE=successful, pseudo-variable contains count</emphasis>
</listitem>
<listitem>
<emphasis>FALSE=failed, parameters are incorrect</emphasis>
</listitem>
</itemizedlist>
</para>
<example>
<title><function>mohq_count</function> usage:</title>
<programlisting format="linespecific">
...
$var(mohq) = "operators";
...
# more than 10 calls?
mohq_count ("$var(mohq)", "$var(mohqcnt)");
if ($var(mohqcnt) > 10) {
xlog ("L_WARN", "$var(mohq) queue has $var(mohqcnt) calls!");
}
...
</programlisting>
</example>
</section>
</section>
<section id="database">
<title>Database Schema</title>
<para>
mohqueue uses two external database tables to manage the queues and
provide status information to outside processes. Internally, it keeps
a volatile database in memory of call status. If the module is
restarted it loses the internal database and clears the external
one.
</para>
<para>
On a reqular basis it checks the external table that defines the
queues to see if the definition has changed. It makes this check
under the following conditions: the queue has not been checked in the
last 60 seconds <emphasis>AND</emphasis> no call is currently in
queue or transitioning in or out. The last condition prevents
existing calls from being adversely affected by queue redefinitions.
</para>
<section id="mohqueues.dbase">
<title>MOHQUEUES Table</title>
<para>
This table controls the definition of the queue. The name is set by
the <ulink url="#table.parms">db_qtable</ulink> parameter. There is
no internal function to modify the table so it must be configured
externally. It contains the following fields:
<itemizedlist>
<listitem>
<emphasis>id</emphasis> (integer): unique identifier that is created
automatically. <emphasis>Do not attempt to change this value.</emphasis>
</listitem>
<listitem>
<emphasis>name</emphasis> (25-character string, required): the queue name.
Duplicate names are not allowed.
</listitem>
<listitem>
<emphasis>uri</emphasis> (100-character string, required): the URI of
the queue. It should not include any parameters or headers (e.g.
"sip:user@host;maddr=239.255.255.1" or "sip:user@host?subject=project")
although it will match any RURI that contains this URI even if the
RURI has parameters or headers. Duplicates are not allowed.
</listitem>
<listitem>
<emphasis>mohdir</emphasis> (100-character string, optional): path to
the directory where the audio files for the queue are stored. This path
overrides the one provided by the <ulink url="#dir.parms">mohdir</ulink>
parameter. If the directory is not accessible by the module the queue
is not activated.
</listitem>
<listitem>
<emphasis>mohfile</emphasis> (100-character string, required): the
base name of the audio file. See the section about
<ulink url="#audiofiles">audio files</ulink> for more information
about file names. If no files matching this name are found in the
directory the queue is not activated.
</listitem>
<listitem>
<emphasis>debug</emphasis> (integer, required): enables debugging
messages for the queue. If non-zero, it will send debugging messages
to the log for conditions that involve the queue, whether or not
Kamailio has logging enabled for debugging. If zero, it depends on
Kamailio's log level.
</listitem>
</itemizedlist>
</para>
</section>
<section id="mohqcalls.dbase">
<title>MOHQCALLS Table</title>
<para>
This table contains the status of calls that are in queue, or
transitioning in or out of a queue. The name is set by the
<ulink url="#table.parms">db_ctable</ulink> parameter. This table
is read-only for external processes and its contents should
<emphasis>not be modified</emphasis>. It contains the following
fields:
<itemizedlist>
<listitem>
<emphasis>id</emphasis> (integer): unique identifier that is created
automatically.
</listitem>
<listitem>
<emphasis>mohq_id</emphasis> (integer, required): the id value of the
queue.
</listitem>
<listitem>
<emphasis>call_status</emphasis> (integer, required): the status of
the call. 1=entering; 2=in queue (listening to MOH); 3=leaving
</listitem>
<listitem>
<emphasis>call_from</emphasis> (100-character string, required): the
contents of the <varname>From</varname> header field.
</listitem>
<listitem>
<emphasis>call_id</emphasis> (100-character string, required): the
contents of the <varname>Call-ID</varname> header field.
</listitem>
<listitem>
<emphasis>call_contact</emphasis> (100-character string, optional):
the contents of the <varname>Contact</varname> header field, if it
exists.
</listitem>
<listitem>
<emphasis>call_time</emphasis> (datetime, required): time the call
entered the queue. If a <ulink url="#retrieve.func">retrieve</ulink>
fails this time is not changed.
</listitem>
</itemizedlist>
</para>
</section>
</section>
<section id="audiofiles">
<title>Audio Files</title>
<para>
When rtpproxy negotiates to determine which media to use in the audio
stream it uses the files in the MOH directory as defined by the
<ulink url="#mohqueues.dbase">MOHQUEUES</ulink> table. The table
defines the location of the files and the base name used to identify
each. The actual stream type depends on the RTP payload number that
is part of the name. The complete file name for each stream is
composed of <varname>mohdir/mohfile.type</varname>. For example,
<varname>/var/kamailio/MOH/HeWillCall.8</varname> would be the file
for payload type 8 (PCMA/8000).
</para>
<para>
The supported types and their order of preference are:
<itemizedlist>
<listitem><emphasis>9</emphasis>: G722/8000</listitem>
<listitem><emphasis>0</emphasis>: PCMU/8000</listitem>
<listitem><emphasis>8</emphasis>: PCMA/8000</listitem>
<listitem><emphasis>18</emphasis>: G729/8000</listitem>
<listitem><emphasis>3</emphasis>: GSM/8000</listitem>
<listitem><emphasis>4</emphasis>: G723/8000</listitem>
<listitem><emphasis>15</emphasis>: G728/8000</listitem>
<listitem><emphasis>5</emphasis>: DVI4/8000</listitem>
<listitem><emphasis>7</emphasis>: LPC/8000</listitem>
<listitem><emphasis>12</emphasis>: QCELP/8000</listitem>
<listitem><emphasis>13</emphasis>: CN/8000</listitem>
<listitem><emphasis>16</emphasis>: DVI4/11025</listitem>
<listitem><emphasis>6</emphasis>: DVI4/16000</listitem>
<listitem><emphasis>17</emphasis>: DVI4/22050</listitem>
<listitem><emphasis>10</emphasis>: L16/44100</listitem>
<listitem><emphasis>11</emphasis>: L16/44100</listitem>
<listitem><emphasis>14</emphasis>: MPA/90000</listitem>
</itemizedlist>
</para>
<para>
See <ulink url="http://en.wikipedia.org/wiki/RTP_audio_video_profile">
RTP Audio Video Profile</ulink> for more information about RTP
payload types.
</para>
</section>
</chapter>
|