%docentities; ]> &adminguide;
Overview The matrix module can be used to arbitrary lookup operations over an array. One possible usecase is to define which routing tree should be used depending on the preferred carrier of the source number and the carrier id of the destination number. The matrix cells are read from a database and can be reloaded using a FIFO command. You do not have to define all matrix cells. The matrix can be sparse. Currently, the implementation is designed for a small number of columns (they are stored in a linked list). This does not scale well and has to be replaced by more an efficient data data structure when needed.
Dependencies
&kamailio; Modules The module depends on the following modules (in the other words the listed modules must be loaded before this module): none
External Libraries or Applications The following libraries or applications must be installed before running &kamailio; with this module loaded: none
Parameters
<varname>db_url</varname> (string) The URL for the database connection. Default value is &defaultrodb;. Set <varname>db_url</varname> parameter ... modparam("matrix", "db_url", "&defaultrodb;") ...
<varname>matrix_table</varname> (string) The name of the table containing the matrix data. Default value is matrix. Set <varname>matrix_table</varname> parameter ... modparam("matrix", "matrix_table", "matrix") ...
<varname>matrix_first_col</varname> (string) The name of the column containing the first row in the matrix. Default value is first. Set <varname>matrix_first_col</varname> parameter ... modparam("matrix", "matrix_first_col", "first") ...
<varname>matrix_second_col</varname> (string) The name of the column containing the second row in the matrix. Default value is second. Set <varname>matrix_second_col</varname> parameter ... modparam("matrix", "matrix_second_col", "second") ...
<varname>matrix_res_col</varname> (string) The name of the column containing the result ID to be used. Default value is res. Set <varname>matrix_res_col</varname> parameter ... modparam("matrix", "matrix_res_col", "res") ...
Functions
<function moreinfo="none">matrix (string first, string second, string dstavp)</function> Looks up the desired result ID in the matrix for the given column and value and saves the result in dstavp. Returns false if the cell is not defined or when an error occured. Pseudo-variables or AVPs can be used for first and second. <function>matrix</function> usage ... if (!matrix("$avp(first)", "$avp(second)", "$avp(route_tree)")) $avp(route_tree) = $avp(frst); # default routing as defined for source number } cr_route("$avp(route_tree)", "$rd", "$rU", "$rU", "call_id"); ...
<acronym>MI</acronym> Commands
<function moreinfo="none">reload_matrix</function> Reloads the internal matrix representation from the database. This is necessary after entries in the database have been changed. <function>reload_matrix</function> usage ... kamctl fifo reload_matrix ...
Installation and Running
Database setup Before running &kamailio; with matrix, you have to setup the database table where the module will read the matrix data. For that, if the table was not created by the installation script or you choose to install everything by yourself you can use the matrix-create.sql SQL script in the database directories in the kamailio/scripts folder as template. Database, table, and column names can be set with module parameters so they can be changed. You can also find the complete database documentation on the project webpage, &kamailiodbdocs;. Example database content - matrix table ... +---------+--------------+---------+ | first | second | res | +---------+--------------+---------+ | 1 | 9 | 2 | | 2 | 69 | 1 | | 2 | 13 | 3 | +---------+--------------+---------+ ...