Wed Apr 6 11:29:54 2011

Asterisk developer's documentation


cdr.h File Reference

Call Detail Record API. More...

#include <sys/time.h>
#include "asterisk/data.h"
#include "asterisk/channel.h"
#include "asterisk/utils.h"

Go to the source code of this file.

Data Structures

struct  ast_cdr
 Responsible for call detail data. More...

Defines

#define AST_MAX_ACCOUNT_CODE   20
#define AST_MAX_USER_FIELD   256

Typedefs

typedef int(*) ast_cdrbe (struct ast_cdr *cdr)
 CDR backend callback.

Enumerations

enum  {
  AST_CDR_FLAG_KEEP_VARS = (1 << 0), AST_CDR_FLAG_POSTED = (1 << 1), AST_CDR_FLAG_LOCKED = (1 << 2), AST_CDR_FLAG_CHILD = (1 << 3),
  AST_CDR_FLAG_POST_DISABLED = (1 << 4), AST_CDR_FLAG_BRIDGED = (1 << 5), AST_CDR_FLAG_MAIN = (1 << 6), AST_CDR_FLAG_ENABLE = (1 << 7),
  AST_CDR_FLAG_ANSLOCKED = (1 << 8), AST_CDR_FLAG_DONT_TOUCH = (1 << 9), AST_CDR_FLAG_POST_ENABLE = (1 << 10), AST_CDR_FLAG_DIALED = (1 << 11),
  AST_CDR_FLAG_ORIGINATED = (1 << 12)
}
 CDR Flags. More...
enum  {
  AST_CDR_NOANSWER = 0, AST_CDR_NULL = (1 << 0), AST_CDR_FAILED = (1 << 1), AST_CDR_BUSY = (1 << 2),
  AST_CDR_ANSWERED = (1 << 3)
}
 CDR Flags - Disposition. More...
enum  { AST_CDR_OMIT = 1, AST_CDR_BILLING = 2, AST_CDR_DOCUMENTATION = 3 }
 CDR AMA Flags. More...

Functions

ast_cdrast_cdr_alloc (void)
 Allocate a CDR record.
int ast_cdr_amaflags2int (const char *flag)
 Convert a string to a detail record AMA flag.
void ast_cdr_answer (struct ast_cdr *cdr)
 Answer a call.
ast_cdrast_cdr_append (struct ast_cdr *cdr, struct ast_cdr *newcdr)
int ast_cdr_appenduserfield (struct ast_channel *chan, const char *userfield)
 Append to CDR user field for channel (stored in CDR).
void ast_cdr_busy (struct ast_cdr *cdr)
 Busy a call.
int ast_cdr_copy_vars (struct ast_cdr *to_cdr, struct ast_cdr *from_cdr)
int ast_cdr_data_add_structure (struct ast_data *tree, struct ast_cdr *cdr, int recur)
void ast_cdr_detach (struct ast_cdr *cdr)
 Detaches the detail record for posting (and freeing) either now or at a later time in bulk with other records during batch mode operation.
void ast_cdr_discard (struct ast_cdr *cdr)
 Discard and free a CDR record.
char * ast_cdr_disp2str (int disposition)
 Disposition to a string.
int ast_cdr_disposition (struct ast_cdr *cdr, int cause)
 Save the result of the call based on the AST_CAUSE_*.
ast_cdrast_cdr_dup (struct ast_cdr *cdr)
 Duplicate a record.
ast_cdrast_cdr_dup_unique (struct ast_cdr *cdr)
 Duplicate a record and increment the sequence number.
ast_cdrast_cdr_dup_unique_swap (struct ast_cdr *cdr)
 Duplicate a record and increment the sequence number of the old record.
void ast_cdr_end (struct ast_cdr *cdr)
 End a call.
int ast_cdr_engine_init (void)
 Load the configuration file cdr.conf and possibly start the CDR scheduling thread.
int ast_cdr_engine_reload (void)
 Reload the configuration file cdr.conf and start/stop CDR scheduling thread.
void ast_cdr_engine_term (void)
void ast_cdr_failed (struct ast_cdr *cdr)
 Fail a call.
char * ast_cdr_flags2str (int flags)
void ast_cdr_free (struct ast_cdr *cdr)
 Free a CDR record.
void ast_cdr_free_vars (struct ast_cdr *cdr, int recur)
void ast_cdr_getvar (struct ast_cdr *cdr, const char *name, char **ret, char *workspace, int workspacelen, int recur, int raw)
int ast_cdr_init (struct ast_cdr *cdr, struct ast_channel *chan)
 Initialize based on a channel.
int ast_cdr_isset_unanswered (void)
void ast_cdr_merge (struct ast_cdr *to, struct ast_cdr *from)
 Move the non-null data from the "from" cdr to the "to" cdr.
void ast_cdr_noanswer (struct ast_cdr *cdr)
 A call wasn't answered.
int ast_cdr_register (const char *name, const char *desc, ast_cdrbe be)
 Register a CDR handling engine.
void ast_cdr_reset (struct ast_cdr *cdr, struct ast_flags *flags)
 Reset the detail record, optionally posting it first.
int ast_cdr_serialize_variables (struct ast_cdr *cdr, struct ast_str **buf, char delim, char sep, int recur)
int ast_cdr_setaccount (struct ast_channel *chan, const char *account)
 Set account code, will generate AMI event.
int ast_cdr_setamaflags (struct ast_channel *chan, const char *amaflags)
 Set AMA flags for channel.
void ast_cdr_setanswer (struct ast_cdr *cdr, struct timeval t)
 Set the answer time for a call.
void ast_cdr_setapp (struct ast_cdr *cdr, const char *app, const char *data)
 Set the last executed application.
int ast_cdr_setcid (struct ast_cdr *cdr, struct ast_channel *chan)
 Initialize based on a channel.
void ast_cdr_setdestchan (struct ast_cdr *cdr, const char *chan)
 Set the destination channel, if there was one.
void ast_cdr_setdisposition (struct ast_cdr *cdr, long int disposition)
 Set the disposition for a call.
int ast_cdr_setpeeraccount (struct ast_channel *chan, const char *account)
 Set the peer account.
int ast_cdr_setuserfield (struct ast_channel *chan, const char *userfield)
 Set CDR user field for channel (stored in CDR).
int ast_cdr_setvar (struct ast_cdr *cdr, const char *name, const char *value, int recur)
void ast_cdr_specialized_reset (struct ast_cdr *cdr, struct ast_flags *flags)
void ast_cdr_start (struct ast_cdr *cdr)
 Start a call.
void ast_cdr_submit_batch (int shutdown)
 Spawns (possibly) a new thread to submit a batch of CDRs to the backend engines.
void ast_cdr_unregister (const char *name)
 Unregister a CDR handling engine.
int ast_cdr_update (struct ast_channel *chan)
int check_cdr_enabled (void)
 Return TRUE if CDR subsystem is enabled.

Variables

char ast_default_accountcode [AST_MAX_ACCOUNT_CODE]
int ast_default_amaflags


Detailed Description

Call Detail Record API.

Author:
Mark Spencer <markster@digium.com>

Definition in file cdr.h.


Define Documentation

#define AST_MAX_ACCOUNT_CODE   20

Definition at line 73 of file cdr.h.

#define AST_MAX_USER_FIELD   256

Definition at line 72 of file cdr.h.

Referenced by ast_rtp_instance_set_stats_vars(), handle_request_bye(), sip_hangup(), and tds_log().


Typedef Documentation

typedef int(*) ast_cdrbe(struct ast_cdr *cdr)

CDR backend callback.

Warning:
CDR backends should NOT attempt to access the channel associated with a CDR record. This channel is not guaranteed to exist when the CDR backend is invoked.

Definition at line 148 of file cdr.h.


Enumeration Type Documentation

anonymous enum

CDR Flags.

Enumerator:
AST_CDR_FLAG_KEEP_VARS 
AST_CDR_FLAG_POSTED 
AST_CDR_FLAG_LOCKED 
AST_CDR_FLAG_CHILD 
AST_CDR_FLAG_POST_DISABLED 
AST_CDR_FLAG_BRIDGED 
AST_CDR_FLAG_MAIN 
AST_CDR_FLAG_ENABLE 
AST_CDR_FLAG_ANSLOCKED 
AST_CDR_FLAG_DONT_TOUCH 
AST_CDR_FLAG_POST_ENABLE 
AST_CDR_FLAG_DIALED 
AST_CDR_FLAG_ORIGINATED 

Definition at line 36 of file cdr.h.

00036      {
00037    AST_CDR_FLAG_KEEP_VARS     = (1 << 0),
00038    AST_CDR_FLAG_POSTED        = (1 << 1),
00039    AST_CDR_FLAG_LOCKED        = (1 << 2),
00040    AST_CDR_FLAG_CHILD         = (1 << 3),
00041    AST_CDR_FLAG_POST_DISABLED = (1 << 4),
00042    AST_CDR_FLAG_BRIDGED       = (1 << 5),
00043    AST_CDR_FLAG_MAIN          = (1 << 6),
00044    AST_CDR_FLAG_ENABLE        = (1 << 7),
00045    AST_CDR_FLAG_ANSLOCKED     = (1 << 8),
00046    AST_CDR_FLAG_DONT_TOUCH    = (1 << 9),
00047    AST_CDR_FLAG_POST_ENABLE   = (1 << 10),
00048    AST_CDR_FLAG_DIALED        = (1 << 11),
00049    AST_CDR_FLAG_ORIGINATED    = (1 << 12),
00050 };

anonymous enum

CDR Flags - Disposition.

Enumerator:
AST_CDR_NOANSWER 
AST_CDR_NULL 
AST_CDR_FAILED 
AST_CDR_BUSY 
AST_CDR_ANSWERED 

Definition at line 55 of file cdr.h.

00055      {
00056    AST_CDR_NOANSWER = 0,
00057    AST_CDR_NULL     = (1 << 0),
00058    AST_CDR_FAILED   = (1 << 1),
00059    AST_CDR_BUSY     = (1 << 2),
00060    AST_CDR_ANSWERED = (1 << 3),
00061 };

anonymous enum

CDR AMA Flags.

Enumerator:
AST_CDR_OMIT 
AST_CDR_BILLING 
AST_CDR_DOCUMENTATION 

Definition at line 66 of file cdr.h.

00066      {
00067    AST_CDR_OMIT          = 1,
00068    AST_CDR_BILLING       = 2,
00069    AST_CDR_DOCUMENTATION = 3,
00070 };


Function Documentation

struct ast_cdr* ast_cdr_alloc ( void   ) 

Allocate a CDR record.

Return values:
a malloc'd ast_cdr structure
NULL on error (malloc failure)

Definition at line 492 of file cdr.c.

References ast_calloc, ast_log(), and LOG_ERROR.

Referenced by __agent_start_monitoring(), __ast_channel_alloc_ap(), __ast_request_and_dial(), ast_bridge_call(), ast_cdr_dup(), ast_pbx_outgoing_cdr_failed(), builtin_blindtransfer(), clear_caller(), findmeexec(), and start_monitor_exec().

00493 {
00494    struct ast_cdr *x;
00495    x = ast_calloc(1, sizeof(*x));
00496    if (!x)
00497       ast_log(LOG_ERROR,"Allocation Failure for a CDR!\n");
00498    return x;
00499 }

int ast_cdr_amaflags2int ( const char *  flag  ) 

Convert a string to a detail record AMA flag.

Parameters:
flag string form of flag Converts the string form of the flag to the binary form.
Returns:
the binary form of the flag

Definition at line 1104 of file cdr.c.

References AST_CDR_BILLING, AST_CDR_DOCUMENTATION, and AST_CDR_OMIT.

Referenced by ast_cdr_setamaflags(), build_device(), build_peer(), build_user(), config_parse_variables(), and set_config().

01105 {
01106    if (!strcasecmp(flag, "default"))
01107       return 0;
01108    if (!strcasecmp(flag, "omit"))
01109       return AST_CDR_OMIT;
01110    if (!strcasecmp(flag, "billing"))
01111       return AST_CDR_BILLING;
01112    if (!strcasecmp(flag, "documentation"))
01113       return AST_CDR_DOCUMENTATION;
01114    return -1;
01115 }

void ast_cdr_answer ( struct ast_cdr cdr  ) 

Answer a call.

Parameters:
cdr the cdr you wish to associate with the call Starts all CDR stuff necessary for doing CDR when answering a call
Note:
NULL argument is just fine.

Definition at line 730 of file cdr.c.

References AST_CDR_ANSWERED, AST_CDR_FLAG_ANSLOCKED, AST_CDR_FLAG_DONT_TOUCH, AST_CDR_FLAG_LOCKED, ast_test_flag, ast_tvnow(), ast_tvzero(), check_post(), and ast_cdr::next.

Referenced by __ast_request_and_dial(), ast_bridge_call(), and ast_raw_answer().

00731 {
00732 
00733    for (; cdr; cdr = cdr->next) {
00734       if (ast_test_flag(cdr, AST_CDR_FLAG_ANSLOCKED))
00735          continue;
00736       if (ast_test_flag(cdr, AST_CDR_FLAG_DONT_TOUCH) && ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
00737          continue;
00738       check_post(cdr);
00739       if (cdr->disposition < AST_CDR_ANSWERED)
00740          cdr->disposition = AST_CDR_ANSWERED;
00741       if (ast_tvzero(cdr->answer))
00742          cdr->answer = ast_tvnow();
00743    }
00744 }

struct ast_cdr* ast_cdr_append ( struct ast_cdr cdr,
struct ast_cdr newcdr 
)

Definition at line 1217 of file cdr.c.

References ast_cdr::next.

Referenced by ast_cdr_fork(), ast_cdr_merge(), and attempt_transfer().

01218 {
01219    struct ast_cdr *ret;
01220 
01221    if (cdr) {
01222       ret = cdr;
01223 
01224       while (cdr->next)
01225          cdr = cdr->next;
01226       cdr->next = newcdr;
01227    } else {
01228       ret = newcdr;
01229    }
01230 
01231    return ret;
01232 }

int ast_cdr_appenduserfield ( struct ast_channel chan,
const char *  userfield 
)

Append to CDR user field for channel (stored in CDR).

Definition at line 1068 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_test_flag, ast_channel::cdr, len(), ast_cdr::next, and ast_cdr::userfield.

Referenced by ast_bridge_call().

01069 {
01070    struct ast_cdr *cdr = chan->cdr;
01071 
01072    for ( ; cdr ; cdr = cdr->next) {
01073       int len = strlen(cdr->userfield);
01074 
01075       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
01076          ast_copy_string(cdr->userfield + len, userfield, sizeof(cdr->userfield) - len);
01077    }
01078 
01079    return 0;
01080 }

void ast_cdr_busy ( struct ast_cdr cdr  ) 

Busy a call.

Parameters:
cdr the cdr you wish to associate with the call Marks the channel disposition as "BUSY" Will skip CDR's in chain with ANS_LOCK bit set. (see forkCDR() application. Returns nothing

Definition at line 746 of file cdr.c.

References AST_CDR_BUSY, AST_CDR_FLAG_LOCKED, ast_test_flag, check_post(), and ast_cdr::next.

Referenced by __ast_request_and_dial(), ast_cdr_disposition(), handle_cause(), pbx_builtin_busy(), and ring_entry().

00747 {
00748 
00749    for (; cdr; cdr = cdr->next) {
00750       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00751          check_post(cdr);
00752          cdr->disposition = AST_CDR_BUSY;
00753       }
00754    }
00755 }

int ast_cdr_copy_vars ( struct ast_cdr to_cdr,
struct ast_cdr from_cdr 
)

Definition at line 376 of file cdr.c.

References AST_LIST_INSERT_HEAD, AST_LIST_TRAVERSE, ast_strlen_zero(), ast_var_assign(), ast_var_name(), ast_var_value(), var, and ast_cdr::varshead.

Referenced by ast_cdr_dup().

00377 {
00378    struct ast_var_t *variables, *newvariable = NULL;
00379    struct varshead *headpa, *headpb;
00380    const char *var, *val;
00381    int x = 0;
00382 
00383    if (!to_cdr || !from_cdr) /* don't die if one of the pointers is null */
00384       return 0;
00385 
00386    headpa = &from_cdr->varshead;
00387    headpb = &to_cdr->varshead;
00388 
00389    AST_LIST_TRAVERSE(headpa,variables,entries) {
00390       if (variables &&
00391           (var = ast_var_name(variables)) && (val = ast_var_value(variables)) &&
00392           !ast_strlen_zero(var) && !ast_strlen_zero(val)) {
00393          newvariable = ast_var_assign(var, val);
00394          AST_LIST_INSERT_HEAD(headpb, newvariable, entries);
00395          x++;
00396       }
00397    }
00398 
00399    return x;
00400 }

int ast_cdr_data_add_structure ( struct ast_data tree,
struct ast_cdr cdr,
int  recur 
)

Parameters:
[in] tree Where to insert the cdr.
[in] cdr The cdr structure to insert in 'tree'.
[in] recur Go throw all the cdr levels.
Return values:
<0 on error.
0 on success.

Definition at line 1649 of file cdr.c.

References ast_cdr_getvar(), ast_data_add_int(), ast_data_add_node(), ast_data_add_str(), AST_LIST_TRAVERSE, ast_strlen_zero(), ast_var_name(), ast_var_value(), cdr_readonly_vars, ast_var_t::entries, ast_cdr::next, var, and ast_cdr::varshead.

Referenced by ast_channel_data_add_structure().

01650 {
01651    struct ast_cdr *tmpcdr;
01652    struct ast_data *level;
01653    struct ast_var_t *variables;
01654    const char *var, *val;
01655    int x = 1, i;
01656    char workspace[256];
01657    char *tmp;
01658 
01659    if (!cdr) {
01660       return -1;
01661    }
01662 
01663    for (tmpcdr = cdr; tmpcdr; tmpcdr = (recur ? tmpcdr->next : NULL)) {
01664       level = ast_data_add_node(tree, "level");
01665       if (!level) {
01666          continue;
01667       }
01668 
01669       ast_data_add_int(level, "level_number", x);
01670 
01671       AST_LIST_TRAVERSE(&tmpcdr->varshead, variables, entries) {
01672          if (variables && (var = ast_var_name(variables)) &&
01673                (val = ast_var_value(variables)) && !ast_strlen_zero(var)
01674                && !ast_strlen_zero(val)) {
01675             ast_data_add_str(level, var, val);
01676          } else {
01677             break;
01678          }
01679       }
01680 
01681       for (i = 0; cdr_readonly_vars[i]; i++) {
01682          workspace[0] = 0; /* null out the workspace, because the cdr_get_tv() won't write anything if time is NULL, so you get old vals */
01683          ast_cdr_getvar(tmpcdr, cdr_readonly_vars[i], &tmp, workspace, sizeof(workspace), 0, 0);
01684          if (!tmp) {
01685             continue;
01686          }
01687          ast_data_add_str(level, cdr_readonly_vars[i], tmp);
01688       }
01689 
01690       x++;
01691    }
01692 
01693    return 0;
01694 }

void ast_cdr_detach ( struct ast_cdr cdr  ) 

Detaches the detail record for posting (and freeing) either now or at a later time in bulk with other records during batch mode operation.

Parameters:
cdr Which CDR to detach from the channel thread Prevents the channel thread from blocking on the CDR handling Returns nothing

Definition at line 1322 of file cdr.c.

References ast_calloc, AST_CDR_FLAG_POST_DISABLED, ast_cdr_free(), ast_debug, ast_mutex_lock, ast_mutex_unlock, ast_set_flag, batch, batchmode, batchsize, ast_cdr_batch_item::cdr, cdr_batch_lock, enabled, ast_cdr_batch::head, init_batch(), ast_cdr_batch_item::next, post_cdr(), ast_cdr_batch::size, submit_unscheduled_batch(), and ast_cdr_batch::tail.

Referenced by ast_bridge_call(), ast_cdr_reset(), ast_hangup(), and ast_pbx_outgoing_cdr_failed().

01323 {
01324    struct ast_cdr_batch_item *newtail;
01325    int curr;
01326 
01327    if (!cdr)
01328       return;
01329 
01330    /* maybe they disabled CDR stuff completely, so just drop it */
01331    if (!enabled) {
01332       ast_debug(1, "Dropping CDR !\n");
01333       ast_set_flag(cdr, AST_CDR_FLAG_POST_DISABLED);
01334       ast_cdr_free(cdr);
01335       return;
01336    }
01337 
01338    /* post stuff immediately if we are not in batch mode, this is legacy behaviour */
01339    if (!batchmode) {
01340       post_cdr(cdr);
01341       ast_cdr_free(cdr);
01342       return;
01343    }
01344 
01345    /* otherwise, each CDR gets put into a batch list (at the end) */
01346    ast_debug(1, "CDR detaching from this thread\n");
01347 
01348    /* we'll need a new tail for every CDR */
01349    if (!(newtail = ast_calloc(1, sizeof(*newtail)))) {
01350       post_cdr(cdr);
01351       ast_cdr_free(cdr);
01352       return;
01353    }
01354 
01355    /* don't traverse a whole list (just keep track of the tail) */
01356    ast_mutex_lock(&cdr_batch_lock);
01357    if (!batch)
01358       init_batch();
01359    if (!batch->head) {
01360       /* new batch is empty, so point the head at the new tail */
01361       batch->head = newtail;
01362    } else {
01363       /* already got a batch with something in it, so just append a new tail */
01364       batch->tail->next = newtail;
01365    }
01366    newtail->cdr = cdr;
01367    batch->tail = newtail;
01368    curr = batch->size++;
01369    ast_mutex_unlock(&cdr_batch_lock);
01370 
01371    /* if we have enough stuff to post, then do it */
01372    if (curr >= (batchsize - 1))
01373       submit_unscheduled_batch();
01374 }

void ast_cdr_discard ( struct ast_cdr cdr  ) 

Discard and free a CDR record.

Parameters:
cdr ast_cdr structure to free Returns nothing -- same as free, but no checks or complaints

Definition at line 481 of file cdr.c.

References ast_cdr_free_vars(), ast_free, ast_cdr_beitem::next, and ast_cdr::next.

Referenced by ast_async_goto(), ast_bridge_call(), ast_cdr_merge(), ast_channel_destructor(), and ast_dummy_channel_destructor().

00482 {
00483    while (cdr) {
00484       struct ast_cdr *next = cdr->next;
00485 
00486       ast_cdr_free_vars(cdr, 0);
00487       ast_free(cdr);
00488       cdr = next;
00489    }
00490 }

char* ast_cdr_disp2str ( int  disposition  ) 

Disposition to a string.

Parameters:
disposition input binary form Converts the binary form of a disposition to string form.
Returns:
a pointer to the string form

Definition at line 958 of file cdr.c.

References AST_CDR_ANSWERED, AST_CDR_BUSY, AST_CDR_FAILED, AST_CDR_NOANSWER, and AST_CDR_NULL.

Referenced by ast_cdr_getvar(), build_csv_record(), build_radius_record(), csv_log(), execute_cb(), manager_log(), and tds_log().

00959 {
00960    switch (disposition) {
00961    case AST_CDR_NULL:
00962       return "NO ANSWER"; /* by default, for backward compatibility */
00963    case AST_CDR_NOANSWER:
00964       return "NO ANSWER";
00965    case AST_CDR_FAILED:
00966       return "FAILED";
00967    case AST_CDR_BUSY:
00968       return "BUSY";
00969    case AST_CDR_ANSWERED:
00970       return "ANSWERED";
00971    }
00972    return "UNKNOWN";
00973 }

int ast_cdr_disposition ( struct ast_cdr cdr,
int  cause 
)

Save the result of the call based on the AST_CAUSE_*.

Parameters:
cdr the cdr you wish to associate with the call
cause the AST_CAUSE_* Returns nothing

Definition at line 786 of file cdr.c.

References AST_CAUSE_BUSY, AST_CAUSE_NO_ANSWER, AST_CAUSE_NORMAL, ast_cdr_busy(), ast_cdr_noanswer(), and ast_cdr::next.

Referenced by __ast_request_and_dial(), ast_pbx_outgoing_app(), ast_pbx_outgoing_exten(), clear_caller(), and findmeexec().

00787 {
00788    int res = 0;
00789 
00790    for (; cdr; cdr = cdr->next) {
00791       switch (cause) {  /* handle all the non failure, busy cases, return 0 not to set disposition,
00792                      return -1 to set disposition to FAILED */
00793       case AST_CAUSE_BUSY:
00794          ast_cdr_busy(cdr);
00795          break;
00796       case AST_CAUSE_NO_ANSWER:
00797          ast_cdr_noanswer(cdr);
00798          break;
00799       case AST_CAUSE_NORMAL:
00800          break;
00801       default:
00802          res = -1;
00803       }
00804    }
00805    return res;
00806 }

struct ast_cdr* ast_cdr_dup ( struct ast_cdr cdr  ) 

Duplicate a record.

Duplicate a CDR record

Returns:
Pointer to new CDR record

Definition at line 205 of file cdr.c.

References ast_cdr_alloc(), and ast_cdr_copy_vars().

Referenced by ast_async_goto(), ast_cdr_dup_unique(), ast_cdr_dup_unique_swap(), ast_cdr_merge(), custom_log(), manager_log(), syslog_log(), and write_cdr().

00206 {
00207    struct ast_cdr *newcdr;
00208 
00209    if (!cdr) /* don't die if we get a null cdr pointer */
00210       return NULL;
00211    newcdr = ast_cdr_alloc();
00212    if (!newcdr)
00213       return NULL;
00214 
00215    memcpy(newcdr, cdr, sizeof(*newcdr));
00216    /* The varshead is unusable, volatile even, after the memcpy so we take care of that here */
00217    memset(&newcdr->varshead, 0, sizeof(newcdr->varshead));
00218    ast_cdr_copy_vars(newcdr, cdr);
00219    newcdr->next = NULL;
00220 
00221    return newcdr;
00222 }

struct ast_cdr* ast_cdr_dup_unique ( struct ast_cdr cdr  ) 

Duplicate a record and increment the sequence number.

Parameters:
cdr the record to duplicate
Return values:
a malloc'd ast_cdr structure,
NULL on error (malloc failure)
See also:
ast_cdr_dup()

ast_cdr_dup_unique_swap()

Definition at line 182 of file cdr.c.

References ast_cdr_dup(), and cdr_seq_inc().

Referenced by ast_cdr_fork().

00183 {
00184    struct ast_cdr *newcdr = ast_cdr_dup(cdr);
00185    if (!newcdr)
00186       return NULL;
00187 
00188    cdr_seq_inc(newcdr);
00189    return newcdr;
00190 }

struct ast_cdr* ast_cdr_dup_unique_swap ( struct ast_cdr cdr  ) 

Duplicate a record and increment the sequence number of the old record.

Parameters:
cdr the record to duplicate
Return values:
a malloc'd ast_cdr structure,
NULL on error (malloc failure)
Note:
This version increments the original CDR's sequence number rather than the duplicate's sequence number. The effect is as if the original CDR's sequence number was swapped with the duplicate's sequence number.
See also:
ast_cdr_dup()

ast_cdr_dup_unique()

Definition at line 192 of file cdr.c.

References ast_cdr_dup(), and cdr_seq_inc().

Referenced by ast_bridge_call(), and ast_cdr_reset().

00193 {
00194    struct ast_cdr *newcdr = ast_cdr_dup(cdr);
00195    if (!newcdr)
00196       return NULL;
00197 
00198    cdr_seq_inc(cdr);
00199    return newcdr;
00200 }

void ast_cdr_end ( struct ast_cdr cdr  ) 

End a call.

Parameters:
cdr the cdr you have associated the call with Registers the end of call time in the cdr structure. Returns nothing

Definition at line 932 of file cdr.c.

References AST_CDR_ANSWERED, AST_CDR_FAILED, AST_CDR_FLAG_DONT_TOUCH, AST_CDR_FLAG_LOCKED, ast_log(), AST_OPT_FLAG_INITIATED_SECONDS, ast_options, ast_test_flag, ast_tvnow(), ast_tvzero(), check_post(), LOG_WARNING, ast_cdr::next, and S_OR.

Referenced by __ast_request_and_dial(), ast_bridge_call(), ast_cdr_fork(), ast_cdr_reset(), ast_hangup(), ast_pbx_outgoing_cdr_failed(), clear_caller(), and findmeexec().

00933 {
00934    for ( ; cdr ; cdr = cdr->next) {
00935       if (ast_test_flag(cdr, AST_CDR_FLAG_DONT_TOUCH) && ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
00936          continue;
00937       check_post(cdr);
00938       if (ast_tvzero(cdr->end))
00939          cdr->end = ast_tvnow();
00940       if (ast_tvzero(cdr->start)) {
00941          ast_log(LOG_WARNING, "CDR on channel '%s' has not started\n", S_OR(cdr->channel, "<unknown>"));
00942          cdr->disposition = AST_CDR_FAILED;
00943       } else
00944          cdr->duration = cdr->end.tv_sec - cdr->start.tv_sec;
00945       if (ast_tvzero(cdr->answer)) {
00946          if (cdr->disposition == AST_CDR_ANSWERED) {
00947             ast_log(LOG_WARNING, "CDR on channel '%s' has no answer time but is 'ANSWERED'\n", S_OR(cdr->channel, "<unknown>"));
00948             cdr->disposition = AST_CDR_FAILED;
00949          }
00950       } else {
00951          cdr->billsec = cdr->end.tv_sec - cdr->answer.tv_sec;
00952          if (ast_test_flag(&ast_options, AST_OPT_FLAG_INITIATED_SECONDS))
00953             cdr->billsec += cdr->end.tv_usec > cdr->answer.tv_usec ? 1 : 0;
00954       }
00955    }
00956 }

int ast_cdr_engine_init ( void   ) 

Load the configuration file cdr.conf and possibly start the CDR scheduling thread.

Definition at line 1615 of file cdr.c.

References ast_cli_register(), ast_log(), ast_mutex_lock, ast_mutex_unlock, cdr_batch_lock, cli_status, do_reload(), init_batch(), LOG_ERROR, and sched_context_create().

Referenced by main().

01616 {
01617    int res;
01618 
01619    sched = sched_context_create();
01620    if (!sched) {
01621       ast_log(LOG_ERROR, "Unable to create schedule context.\n");
01622       return -1;
01623    }
01624 
01625    ast_cli_register(&cli_status);
01626 
01627    res = do_reload(0);
01628    if (res) {
01629       ast_mutex_lock(&cdr_batch_lock);
01630       res = init_batch();
01631       ast_mutex_unlock(&cdr_batch_lock);
01632    }
01633 
01634    return res;
01635 }

int ast_cdr_engine_reload ( void   ) 

Reload the configuration file cdr.conf and start/stop CDR scheduling thread.

Definition at line 1644 of file cdr.c.

References do_reload().

01645 {
01646    return do_reload(1);
01647 }

void ast_cdr_engine_term ( void   ) 

Submit any remaining CDRs and prepare for shutdown

Definition at line 1639 of file cdr.c.

References ast_cdr_submit_batch(), and batchsafeshutdown.

Referenced by do_reload(), and quit_handler().

01640 {
01641    ast_cdr_submit_batch(batchsafeshutdown);
01642 }

void ast_cdr_failed ( struct ast_cdr cdr  ) 

Fail a call.

Parameters:
cdr the cdr you wish to associate with the call Marks the channel disposition as "FAILED" Will skip CDR's in chain with ANS_LOCK bit set. (see forkCDR() application. Returns nothing

Definition at line 757 of file cdr.c.

References AST_CDR_FAILED, AST_CDR_FLAG_LOCKED, ast_test_flag, check_post(), and ast_cdr::next.

Referenced by __ast_request_and_dial(), ast_pbx_outgoing_app(), ast_pbx_outgoing_cdr_failed(), ast_pbx_outgoing_exten(), clear_caller(), findmeexec(), handle_cause(), and wait_for_answer().

00758 {
00759    for (; cdr; cdr = cdr->next) {
00760       check_post(cdr);
00761       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00762          check_post(cdr);
00763          if (cdr->disposition < AST_CDR_FAILED)
00764             cdr->disposition = AST_CDR_FAILED;
00765       }
00766    }
00767 }

char* ast_cdr_flags2str ( int  flag  ) 

Converts AMA flag to printable string

Definition at line 976 of file cdr.c.

References AST_CDR_BILLING, AST_CDR_DOCUMENTATION, and AST_CDR_OMIT.

Referenced by _sip_show_peer(), _skinny_show_line(), ast_cdr_getvar(), ast_channel_data_add_structure(), build_csv_record(), build_radius_record(), csv_log(), manager_log(), peers_data_provider_get(), sip_show_user(), tds_log(), and users_data_provider_get().

00977 {
00978    switch (flag) {
00979    case AST_CDR_OMIT:
00980       return "OMIT";
00981    case AST_CDR_BILLING:
00982       return "BILLING";
00983    case AST_CDR_DOCUMENTATION:
00984       return "DOCUMENTATION";
00985    }
00986    return "Unknown";
00987 }

void ast_cdr_free ( struct ast_cdr cdr  ) 

Free a CDR record.

Parameters:
cdr ast_cdr structure to free Returns nothing

Definition at line 468 of file cdr.c.

References ast_cdr_free_vars(), ast_free, ast_cdr_beitem::next, and ast_cdr::next.

Referenced by ast_cdr_detach(), and do_batch_backend_process().

00469 {
00470 
00471    while (cdr) {
00472       struct ast_cdr *next = cdr->next;
00473 
00474       ast_cdr_free_vars(cdr, 0);
00475       ast_free(cdr);
00476       cdr = next;
00477    }
00478 }

void ast_cdr_free_vars ( struct ast_cdr cdr,
int  recur 
)

Definition at line 447 of file cdr.c.

References AST_LIST_REMOVE_HEAD, ast_var_delete(), ast_cdr::next, and ast_cdr::varshead.

Referenced by ast_cdr_discard(), ast_cdr_fork(), ast_cdr_free(), and ast_cdr_reset().

00448 {
00449 
00450    /* clear variables */
00451    for (; cdr; cdr = recur ? cdr->next : NULL) {
00452       struct ast_var_t *vardata;
00453       struct varshead *headp = &cdr->varshead;
00454       while ((vardata = AST_LIST_REMOVE_HEAD(headp, entries)))
00455          ast_var_delete(vardata);
00456    }
00457 }

void ast_cdr_getvar ( struct ast_cdr cdr,
const char *  name,
char **  ret,
char *  workspace,
int  workspacelen,
int  recur,
int  raw 
)

CDR channel variable retrieval

Definition at line 256 of file cdr.c.

References ast_cdr::accountcode, ast_cdr::amaflags, ast_cdr::answer, ast_cdr_disp2str(), ast_cdr_flags2str(), ast_cdr_getvar_internal(), ast_copy_string(), ast_strlen_zero(), ast_tvdiff_ms(), ast_tvnow(), ast_cdr::billsec, cdr_get_tv(), ast_cdr::channel, ast_cdr::clid, ast_cdr::dcontext, ast_cdr::disposition, ast_cdr::dst, ast_cdr::dstchannel, ast_cdr::duration, ast_cdr::end, ast_cdr::lastapp, ast_cdr::lastdata, ast_cdr::linkedid, ast_cdr::peeraccount, ast_cdr::sequence, ast_cdr::src, ast_cdr::start, ast_cdr::uniqueid, and ast_cdr::userfield.

Referenced by ast_cdr_data_add_structure(), ast_cdr_serialize_variables(), cdr_handler(), cdr_read(), odbc_log(), and pgsql_log().

00257 {
00258    const char *fmt = "%Y-%m-%d %T";
00259    const char *varbuf;
00260 
00261    if (!cdr)  /* don't die if the cdr is null */
00262       return;
00263 
00264    *ret = NULL;
00265    /* special vars (the ones from the struct ast_cdr when requested by name)
00266       I'd almost say we should convert all the stringed vals to vars */
00267 
00268    if (!strcasecmp(name, "clid"))
00269       ast_copy_string(workspace, cdr->clid, workspacelen);
00270    else if (!strcasecmp(name, "src"))
00271       ast_copy_string(workspace, cdr->src, workspacelen);
00272    else if (!strcasecmp(name, "dst"))
00273       ast_copy_string(workspace, cdr->dst, workspacelen);
00274    else if (!strcasecmp(name, "dcontext"))
00275       ast_copy_string(workspace, cdr->dcontext, workspacelen);
00276    else if (!strcasecmp(name, "channel"))
00277       ast_copy_string(workspace, cdr->channel, workspacelen);
00278    else if (!strcasecmp(name, "dstchannel"))
00279       ast_copy_string(workspace, cdr->dstchannel, workspacelen);
00280    else if (!strcasecmp(name, "lastapp"))
00281       ast_copy_string(workspace, cdr->lastapp, workspacelen);
00282    else if (!strcasecmp(name, "lastdata"))
00283       ast_copy_string(workspace, cdr->lastdata, workspacelen);
00284    else if (!strcasecmp(name, "start"))
00285       cdr_get_tv(cdr->start, raw ? NULL : fmt, workspace, workspacelen);
00286    else if (!strcasecmp(name, "answer"))
00287       cdr_get_tv(cdr->answer, raw ? NULL : fmt, workspace, workspacelen);
00288    else if (!strcasecmp(name, "end"))
00289       cdr_get_tv(cdr->end, raw ? NULL : fmt, workspace, workspacelen);
00290    else if (!strcasecmp(name, "duration"))
00291       snprintf(workspace, workspacelen, "%ld", cdr->duration ? cdr->duration : (long)ast_tvdiff_ms(ast_tvnow(), cdr->start) / 1000);
00292    else if (!strcasecmp(name, "billsec"))
00293       snprintf(workspace, workspacelen, "%ld", cdr->billsec || cdr->answer.tv_sec == 0 ? cdr->billsec : (long)ast_tvdiff_ms(ast_tvnow(), cdr->answer) / 1000);
00294    else if (!strcasecmp(name, "disposition")) {
00295       if (raw) {
00296          snprintf(workspace, workspacelen, "%ld", cdr->disposition);
00297       } else {
00298          ast_copy_string(workspace, ast_cdr_disp2str(cdr->disposition), workspacelen);
00299       }
00300    } else if (!strcasecmp(name, "amaflags")) {
00301       if (raw) {
00302          snprintf(workspace, workspacelen, "%ld", cdr->amaflags);
00303       } else {
00304          ast_copy_string(workspace, ast_cdr_flags2str(cdr->amaflags), workspacelen);
00305       }
00306    } else if (!strcasecmp(name, "accountcode"))
00307       ast_copy_string(workspace, cdr->accountcode, workspacelen);
00308    else if (!strcasecmp(name, "peeraccount"))
00309       ast_copy_string(workspace, cdr->peeraccount, workspacelen);
00310    else if (!strcasecmp(name, "uniqueid"))
00311       ast_copy_string(workspace, cdr->uniqueid, workspacelen);
00312    else if (!strcasecmp(name, "linkedid"))
00313       ast_copy_string(workspace, cdr->linkedid, workspacelen);
00314    else if (!strcasecmp(name, "userfield"))
00315       ast_copy_string(workspace, cdr->userfield, workspacelen);
00316    else if (!strcasecmp(name, "sequence"))
00317       snprintf(workspace, workspacelen, "%d", cdr->sequence);
00318    else if ((varbuf = ast_cdr_getvar_internal(cdr, name, recur)))
00319       ast_copy_string(workspace, varbuf, workspacelen);
00320    else
00321       workspace[0] = '\0';
00322 
00323    if (!ast_strlen_zero(workspace))
00324       *ret = workspace;
00325 }

int ast_cdr_init ( struct ast_cdr cdr,
struct ast_channel chan 
)

Initialize based on a channel.

Parameters:
cdr Call Detail Record to use for channel
chan Channel to bind CDR with Initializes a CDR and associates it with a particular channel
Returns:
0 by default

Definition at line 893 of file cdr.c.

References ast_channel::_state, ast_channel::accountcode, ast_channel::amaflags, AST_CDR_ANSWERED, AST_CDR_FLAG_LOCKED, AST_CDR_NOANSWER, ast_copy_string(), AST_STATE_UP, ast_test_flag, cdr_seq_inc(), ast_cdr::channel, ast_channel::context, ast_channel::exten, ast_channel::linkedid, ast_channel::macrocontext, ast_channel::macroexten, ast_channel::name, ast_cdr::next, ast_channel::peeraccount, S_OR, set_one_cid(), and ast_channel::uniqueid.

Referenced by __ast_channel_alloc_ap(), __ast_request_and_dial(), ast_pbx_outgoing_cdr_failed(), builtin_blindtransfer(), clear_caller(), and findmeexec().

00894 {
00895    char *chan;
00896 
00897    for ( ; cdr ; cdr = cdr->next) {
00898       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00899          chan = S_OR(cdr->channel, "<unknown>");
00900          ast_copy_string(cdr->channel, c->name, sizeof(cdr->channel));
00901          set_one_cid(cdr, c);
00902          cdr_seq_inc(cdr);
00903 
00904          cdr->disposition = (c->_state == AST_STATE_UP) ?  AST_CDR_ANSWERED : AST_CDR_NOANSWER;
00905          cdr->amaflags = c->amaflags ? c->amaflags :  ast_default_amaflags;
00906          ast_copy_string(cdr->accountcode, c->accountcode, sizeof(cdr->accountcode));
00907          ast_copy_string(cdr->peeraccount, c->peeraccount, sizeof(cdr->peeraccount));
00908          /* Destination information */
00909          ast_copy_string(cdr->dst, S_OR(c->macroexten,c->exten), sizeof(cdr->dst));
00910          ast_copy_string(cdr->dcontext, S_OR(c->macrocontext,c->context), sizeof(cdr->dcontext));
00911          /* Unique call identifier */
00912          ast_copy_string(cdr->uniqueid, c->uniqueid, sizeof(cdr->uniqueid));
00913          /* Linked call identifier */
00914          ast_copy_string(cdr->linkedid, c->linkedid, sizeof(cdr->linkedid));
00915       }
00916    }
00917    return 0;
00918 }

int ast_cdr_isset_unanswered ( void   ) 

Definition at line 177 of file cdr.c.

References unanswered.

Referenced by ring_entry().

00178 {
00179    return unanswered;
00180 }

void ast_cdr_merge ( struct ast_cdr to,
struct ast_cdr from 
)

Move the non-null data from the "from" cdr to the "to" cdr.

Parameters:
to the cdr to get the goodies
from the cdr to give the goodies

Definition at line 536 of file cdr.c.

References ast_cdr::accountcode, ast_cdr::amaflags, ast_cdr::answer, ast_cdr_append(), ast_cdr_discard(), AST_CDR_DOCUMENTATION, ast_cdr_dup(), AST_CDR_FLAG_CHILD, AST_CDR_FLAG_KEEP_VARS, AST_CDR_FLAG_LOCKED, AST_CDR_FLAG_POST_DISABLED, AST_CDR_FLAG_POSTED, AST_CDR_NOANSWER, ast_copy_string(), ast_log(), ast_set_flag, ast_strlen_zero(), ast_test_flag, ast_tv(), ast_tvcmp(), ast_tvzero(), ast_cdr::billsec, cdr_merge_vars(), ast_cdr::channel, ast_cdr::clid, ast_cdr::dcontext, ast_cdr::disposition, ast_cdr::dst, ast_cdr::dstchannel, ast_cdr::duration, ast_cdr::end, ast_cdr::lastapp, ast_cdr::lastdata, LOG_WARNING, ast_cdr::next, ast_cdr::peeraccount, ast_cdr::src, ast_cdr::start, and ast_cdr::userfield.

00537 {
00538    struct ast_cdr *zcdr;
00539    struct ast_cdr *lto = NULL;
00540    struct ast_cdr *lfrom = NULL;
00541    int discard_from = 0;
00542 
00543    if (!to || !from)
00544       return;
00545 
00546    /* don't merge into locked CDR's -- it's bad business */
00547    if (ast_test_flag(to, AST_CDR_FLAG_LOCKED)) {
00548       zcdr = to; /* safety valve? */
00549       while (to->next) {
00550          lto = to;
00551          to = to->next;
00552       }
00553 
00554       if (ast_test_flag(to, AST_CDR_FLAG_LOCKED)) {
00555          ast_log(LOG_WARNING, "Merging into locked CDR... no choice.");
00556          to = zcdr; /* safety-- if all there are is locked CDR's, then.... ?? */
00557          lto = NULL;
00558       }
00559    }
00560 
00561    if (ast_test_flag(from, AST_CDR_FLAG_LOCKED)) {
00562       struct ast_cdr *llfrom = NULL;
00563       discard_from = 1;
00564       if (lto) {
00565          /* insert the from stuff after lto */
00566          lto->next = from;
00567          lfrom = from;
00568          while (lfrom && lfrom->next) {
00569             if (!lfrom->next->next)
00570                llfrom = lfrom;
00571             lfrom = lfrom->next;
00572          }
00573          /* rip off the last entry and put a copy of the to at the end */
00574          llfrom->next = to;
00575          from = lfrom;
00576       } else {
00577          /* save copy of the current *to cdr */
00578          struct ast_cdr tcdr;
00579          memcpy(&tcdr, to, sizeof(tcdr));
00580          /* copy in the locked from cdr */
00581          memcpy(to, from, sizeof(*to));
00582          lfrom = from;
00583          while (lfrom && lfrom->next) {
00584             if (!lfrom->next->next)
00585                llfrom = lfrom;
00586             lfrom = lfrom->next;
00587          }
00588          from->next = NULL;
00589          /* rip off the last entry and put a copy of the to at the end */
00590          if (llfrom == from)
00591             to = to->next = ast_cdr_dup(&tcdr);
00592          else
00593             to = llfrom->next = ast_cdr_dup(&tcdr);
00594          from = lfrom;
00595       }
00596    }
00597 
00598    if (!ast_tvzero(from->start)) {
00599       if (!ast_tvzero(to->start)) {
00600          if (ast_tvcmp(to->start, from->start) > 0 ) {
00601             to->start = from->start; /* use the earliest time */
00602             from->start = ast_tv(0,0); /* we actively "steal" these values */
00603          }
00604          /* else nothing to do */
00605       } else {
00606          to->start = from->start;
00607          from->start = ast_tv(0,0); /* we actively "steal" these values */
00608       }
00609    }
00610    if (!ast_tvzero(from->answer)) {
00611       if (!ast_tvzero(to->answer)) {
00612          if (ast_tvcmp(to->answer, from->answer) > 0 ) {
00613             to->answer = from->answer; /* use the earliest time */
00614             from->answer = ast_tv(0,0); /* we actively "steal" these values */
00615          }
00616          /* we got the earliest answer time, so we'll settle for that? */
00617       } else {
00618          to->answer = from->answer;
00619          from->answer = ast_tv(0,0); /* we actively "steal" these values */
00620       }
00621    }
00622    if (!ast_tvzero(from->end)) {
00623       if (!ast_tvzero(to->end)) {
00624          if (ast_tvcmp(to->end, from->end) < 0 ) {
00625             to->end = from->end; /* use the latest time */
00626             from->end = ast_tv(0,0); /* we actively "steal" these values */
00627             to->duration = to->end.tv_sec - to->start.tv_sec;  /* don't forget to update the duration, billsec, when we set end */
00628             to->billsec = ast_tvzero(to->answer) ? 0 : to->end.tv_sec - to->answer.tv_sec;
00629          }
00630          /* else, nothing to do */
00631       } else {
00632          to->end = from->end;
00633          from->end = ast_tv(0,0); /* we actively "steal" these values */
00634          to->duration = to->end.tv_sec - to->start.tv_sec;
00635          to->billsec = ast_tvzero(to->answer) ? 0 : to->end.tv_sec - to->answer.tv_sec;
00636       }
00637    }
00638    if (to->disposition < from->disposition) {
00639       to->disposition = from->disposition;
00640       from->disposition = AST_CDR_NOANSWER;
00641    }
00642    if (ast_strlen_zero(to->lastapp) && !ast_strlen_zero(from->lastapp)) {
00643       ast_copy_string(to->lastapp, from->lastapp, sizeof(to->lastapp));
00644       from->lastapp[0] = 0; /* theft */
00645    }
00646    if (ast_strlen_zero(to->lastdata) && !ast_strlen_zero(from->lastdata)) {
00647       ast_copy_string(to->lastdata, from->lastdata, sizeof(to->lastdata));
00648       from->lastdata[0] = 0; /* theft */
00649    }
00650    if (ast_strlen_zero(to->dcontext) && !ast_strlen_zero(from->dcontext)) {
00651       ast_copy_string(to->dcontext, from->dcontext, sizeof(to->dcontext));
00652       from->dcontext[0] = 0; /* theft */
00653    }
00654    if (ast_strlen_zero(to->dstchannel) && !ast_strlen_zero(from->dstchannel)) {
00655       ast_copy_string(to->dstchannel, from->dstchannel, sizeof(to->dstchannel));
00656       from->dstchannel[0] = 0; /* theft */
00657    }
00658    if (!ast_strlen_zero(from->channel) && (ast_strlen_zero(to->channel) || !strncasecmp(from->channel, "Agent/", 6))) {
00659       ast_copy_string(to->channel, from->channel, sizeof(to->channel));
00660       from->channel[0] = 0; /* theft */
00661    }
00662    if (ast_strlen_zero(to->src) && !ast_strlen_zero(from->src)) {
00663       ast_copy_string(to->src, from->src, sizeof(to->src));
00664       from->src[0] = 0; /* theft */
00665    }
00666    if (ast_strlen_zero(to->clid) && !ast_strlen_zero(from->clid)) {
00667       ast_copy_string(to->clid, from->clid, sizeof(to->clid));
00668       from->clid[0] = 0; /* theft */
00669    }
00670    if (ast_strlen_zero(to->dst) && !ast_strlen_zero(from->dst)) {
00671       ast_copy_string(to->dst, from->dst, sizeof(to->dst));
00672       from->dst[0] = 0; /* theft */
00673    }
00674    if (!to->amaflags)
00675       to->amaflags = AST_CDR_DOCUMENTATION;
00676    if (!from->amaflags)
00677       from->amaflags = AST_CDR_DOCUMENTATION; /* make sure both amaflags are set to something (DOC is default) */
00678    if (ast_test_flag(from, AST_CDR_FLAG_LOCKED) || (to->amaflags == AST_CDR_DOCUMENTATION && from->amaflags != AST_CDR_DOCUMENTATION)) {
00679       to->amaflags = from->amaflags;
00680    }
00681    if (ast_test_flag(from, AST_CDR_FLAG_LOCKED) || (ast_strlen_zero(to->accountcode) && !ast_strlen_zero(from->accountcode))) {
00682       ast_copy_string(to->accountcode, from->accountcode, sizeof(to->accountcode));
00683    }
00684    if (ast_test_flag(from, AST_CDR_FLAG_LOCKED) || (ast_strlen_zero(to->peeraccount) && !ast_strlen_zero(from->peeraccount))) {
00685       ast_copy_string(to->peeraccount, from->peeraccount, sizeof(to->peeraccount));
00686    }
00687    if (ast_test_flag(from, AST_CDR_FLAG_LOCKED) || (ast_strlen_zero(to->userfield) && !ast_strlen_zero(from->userfield))) {
00688       ast_copy_string(to->userfield, from->userfield, sizeof(to->userfield));
00689    }
00690    /* flags, varsead, ? */
00691    cdr_merge_vars(from, to);
00692 
00693    if (ast_test_flag(from, AST_CDR_FLAG_KEEP_VARS))
00694       ast_set_flag(to, AST_CDR_FLAG_KEEP_VARS);
00695    if (ast_test_flag(from, AST_CDR_FLAG_POSTED))
00696       ast_set_flag(to, AST_CDR_FLAG_POSTED);
00697    if (ast_test_flag(from, AST_CDR_FLAG_LOCKED))
00698       ast_set_flag(to, AST_CDR_FLAG_LOCKED);
00699    if (ast_test_flag(from, AST_CDR_FLAG_CHILD))
00700       ast_set_flag(to, AST_CDR_FLAG_CHILD);
00701    if (ast_test_flag(from, AST_CDR_FLAG_POST_DISABLED))
00702       ast_set_flag(to, AST_CDR_FLAG_POST_DISABLED);
00703 
00704    /* last, but not least, we need to merge any forked CDRs to the 'to' cdr */
00705    while (from->next) {
00706       /* just rip 'em off the 'from' and insert them on the 'to' */
00707       zcdr = from->next;
00708       from->next = zcdr->next;
00709       zcdr->next = NULL;
00710       /* zcdr is now ripped from the current list; */
00711       ast_cdr_append(to, zcdr);
00712    }
00713    if (discard_from)
00714       ast_cdr_discard(from);
00715 }

void ast_cdr_noanswer ( struct ast_cdr cdr  ) 

A call wasn't answered.

Parameters:
cdr the cdr you wish to associate with the call Marks the channel disposition as "NO ANSWER" Will skip CDR's in chain with ANS_LOCK bit set. (see forkCDR() application.

Definition at line 769 of file cdr.c.

References AST_CDR_FLAG_LOCKED, AST_CDR_NOANSWER, ast_strlen_zero(), ast_test_flag, ast_cdr::channel, check_post(), ast_cdr::disposition, and ast_cdr::next.

Referenced by ast_cdr_disposition(), and handle_cause().

00770 {
00771    char *chan;
00772 
00773    while (cdr) {
00774       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00775          chan = !ast_strlen_zero(cdr->channel) ? cdr->channel : "<unknown>";
00776          check_post(cdr);
00777          cdr->disposition = AST_CDR_NOANSWER;
00778       }
00779       cdr = cdr->next;
00780    }
00781 }

int ast_cdr_register ( const char *  name,
const char *  desc,
ast_cdrbe  be 
)

Register a CDR handling engine.

Register a CDR driver. Each registered CDR driver generates a CDR

Returns:
0 on success, -1 on failure

Definition at line 122 of file cdr.c.

References ast_calloc, ast_copy_string(), ast_log(), AST_RWLIST_INSERT_HEAD, AST_RWLIST_TRAVERSE, AST_RWLIST_UNLOCK, AST_RWLIST_WRLOCK, ast_cdr_beitem::list, LOG_WARNING, and ast_cdr_beitem::name.

Referenced by config_module(), load_config(), load_module(), odbc_load_module(), and unload_module().

00123 {
00124    struct ast_cdr_beitem *i = NULL;
00125 
00126    if (!name)
00127       return -1;
00128 
00129    if (!be) {
00130       ast_log(LOG_WARNING, "CDR engine '%s' lacks backend\n", name);
00131       return -1;
00132    }
00133 
00134    AST_RWLIST_WRLOCK(&be_list);
00135    AST_RWLIST_TRAVERSE(&be_list, i, list) {
00136       if (!strcasecmp(name, i->name)) {
00137          ast_log(LOG_WARNING, "Already have a CDR backend called '%s'\n", name);
00138          AST_RWLIST_UNLOCK(&be_list);
00139          return -1;
00140       }
00141    }
00142 
00143    if (!(i = ast_calloc(1, sizeof(*i))))
00144       return -1;
00145 
00146    i->be = be;
00147    ast_copy_string(i->name, name, sizeof(i->name));
00148    ast_copy_string(i->desc, desc, sizeof(i->desc));
00149 
00150    AST_RWLIST_INSERT_HEAD(&be_list, i, list);
00151    AST_RWLIST_UNLOCK(&be_list);
00152 
00153    return 0;
00154 }

void ast_cdr_reset ( struct ast_cdr cdr,
struct ast_flags flags 
)

Reset the detail record, optionally posting it first.

Parameters:
cdr which cdr to act upon
flags |AST_CDR_FLAG_POSTED whether or not to post the cdr first before resetting it |AST_CDR_FLAG_LOCKED whether or not to reset locked CDR's

Definition at line 1150 of file cdr.c.

References ast_cdr::answer, ast_cdr_detach(), ast_cdr_dup_unique_swap(), ast_cdr_end(), AST_CDR_FLAG_KEEP_VARS, AST_CDR_FLAG_LOCKED, AST_CDR_FLAG_POST_DISABLED, AST_CDR_FLAG_POST_ENABLE, AST_CDR_FLAG_POSTED, ast_cdr_free_vars(), AST_CDR_NOANSWER, ast_cdr_start(), ast_clear_flag, ast_copy_flags, AST_FLAGS_ALL, ast_set_flag, ast_test_flag, ast_cdr::billsec, ast_cdr::disposition, ast_cdr::duration, ast_cdr::end, ast_flags::flags, ast_cdr::next, and ast_cdr::start.

Referenced by ast_cdr_fork(), dial_exec_full(), and pbx_builtin_resetcdr().

01151 {
01152    struct ast_cdr *duplicate;
01153    struct ast_flags flags = { 0 };
01154 
01155    if (_flags)
01156       ast_copy_flags(&flags, _flags, AST_FLAGS_ALL);
01157 
01158    for ( ; cdr ; cdr = cdr->next) {
01159       /* Detach if post is requested */
01160       if (ast_test_flag(&flags, AST_CDR_FLAG_LOCKED) || !ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
01161          if (ast_test_flag(&flags, AST_CDR_FLAG_POSTED)) {
01162             ast_cdr_end(cdr);
01163             if ((duplicate = ast_cdr_dup_unique_swap(cdr))) {
01164                ast_cdr_detach(duplicate);
01165             }
01166             ast_set_flag(cdr, AST_CDR_FLAG_POSTED);
01167          }
01168 
01169          /* enable CDR only */
01170          if (ast_test_flag(&flags, AST_CDR_FLAG_POST_ENABLE)) {
01171             ast_clear_flag(cdr, AST_CDR_FLAG_POST_DISABLED);
01172             continue;
01173          }
01174 
01175          /* clear variables */
01176          if (!ast_test_flag(&flags, AST_CDR_FLAG_KEEP_VARS)) {
01177             ast_cdr_free_vars(cdr, 0);
01178          }
01179 
01180          /* Reset to initial state */
01181          ast_clear_flag(cdr, AST_FLAGS_ALL);
01182          memset(&cdr->start, 0, sizeof(cdr->start));
01183          memset(&cdr->end, 0, sizeof(cdr->end));
01184          memset(&cdr->answer, 0, sizeof(cdr->answer));
01185          cdr->billsec = 0;
01186          cdr->duration = 0;
01187          ast_cdr_start(cdr);
01188          cdr->disposition = AST_CDR_NOANSWER;
01189       }
01190    }
01191 }

int ast_cdr_serialize_variables ( struct ast_cdr cdr,
struct ast_str **  buf,
char  delim,
char  sep,
int  recur 
)

Definition at line 402 of file cdr.c.

References ast_cdr_getvar(), AST_LIST_TRAVERSE, ast_log(), ast_str_append(), ast_str_reset(), ast_var_name(), ast_var_value(), cdr_readonly_vars, ast_var_t::entries, LOG_ERROR, ast_cdr::next, S_OR, total, var, and ast_cdr::varshead.

Referenced by handle_showchan().

00403 {
00404    struct ast_var_t *variables;
00405    const char *var;
00406    char *tmp;
00407    char workspace[256];
00408    int total = 0, x = 0, i;
00409 
00410    ast_str_reset(*buf);
00411 
00412    for (; cdr; cdr = recur ? cdr->next : NULL) {
00413       if (++x > 1)
00414          ast_str_append(buf, 0, "\n");
00415 
00416       AST_LIST_TRAVERSE(&cdr->varshead, variables, entries) {
00417          if (!(var = ast_var_name(variables))) {
00418             continue;
00419          }
00420 
00421          if (ast_str_append(buf, 0, "level %d: %s%c%s%c", x, var, delim, S_OR(ast_var_value(variables), ""), sep) < 0) {
00422             ast_log(LOG_ERROR, "Data Buffer Size Exceeded!\n");
00423             break;
00424          }
00425 
00426          total++;
00427       }
00428 
00429       for (i = 0; cdr_readonly_vars[i]; i++) {
00430          workspace[0] = 0; /* null out the workspace, because the cdr_get_tv() won't write anything if time is NULL, so you get old vals */
00431          ast_cdr_getvar(cdr, cdr_readonly_vars[i], &tmp, workspace, sizeof(workspace), 0, 0);
00432          if (!tmp)
00433             continue;
00434 
00435          if (ast_str_append(buf, 0, "level %d: %s%c%s%c", x, cdr_readonly_vars[i], delim, tmp, sep) < 0) {
00436             ast_log(LOG_ERROR, "Data Buffer Size Exceeded!\n");
00437             break;
00438          } else
00439             total++;
00440       }
00441    }
00442 
00443    return total;
00444 }

int ast_cdr_setaccount ( struct ast_channel chan,
const char *  account 
)

Set account code, will generate AMI event.

Definition at line 989 of file cdr.c.

References ast_channel::accountcode, accountcode, ast_cdr::accountcode, AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_manager_event, ast_strdupa, ast_string_field_set, ast_strlen_zero(), ast_test_flag, ast_channel::cdr, EVENT_FLAG_CALL, and ast_cdr::next.

Referenced by __ast_request_and_dial(), ast_bridge_call(), ast_call_forward(), ast_pbx_outgoing_app(), ast_pbx_outgoing_exten(), cdr_write(), and rpt_call().

00990 {
00991    struct ast_cdr *cdr = chan->cdr;
00992    const char *old_acct = "";
00993 
00994    if (!ast_strlen_zero(chan->accountcode)) {
00995       old_acct = ast_strdupa(chan->accountcode);
00996    }
00997 
00998    ast_string_field_set(chan, accountcode, account);
00999    for ( ; cdr ; cdr = cdr->next) {
01000       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
01001          ast_copy_string(cdr->accountcode, chan->accountcode, sizeof(cdr->accountcode));
01002       }
01003    }
01004 
01005    ast_manager_event(chan, EVENT_FLAG_CALL, "NewAccountCode",
01006          "Channel: %s\r\n"
01007          "Uniqueid: %s\r\n"
01008          "AccountCode: %s\r\n"
01009          "OldAccountCode: %s\r\n",
01010          chan->name, chan->uniqueid, chan->accountcode, old_acct);
01011 
01012    return 0;
01013 }

int ast_cdr_setamaflags ( struct ast_channel chan,
const char *  amaflags 
)

Set AMA flags for channel.

Definition at line 1041 of file cdr.c.

References ast_cdr::amaflags, ast_cdr_amaflags2int(), AST_CDR_FLAG_LOCKED, ast_test_flag, ast_channel::cdr, and ast_cdr::next.

Referenced by cdr_write(), and pbx_builtin_setamaflags().

01042 {
01043    struct ast_cdr *cdr;
01044    int newflag = ast_cdr_amaflags2int(flag);
01045    if (newflag) {
01046       for (cdr = chan->cdr; cdr; cdr = cdr->next) {
01047          if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
01048             cdr->amaflags = newflag;
01049          }
01050       }
01051    }
01052 
01053    return 0;
01054 }

void ast_cdr_setanswer ( struct ast_cdr cdr,
struct timeval  t 
)

Set the answer time for a call.

Parameters:
cdr the cdr you wish to associate with the call
t the answer time Starts all CDR stuff necessary for doing CDR when answering a call NULL argument is just fine.

Definition at line 830 of file cdr.c.

References AST_CDR_FLAG_ANSLOCKED, AST_CDR_FLAG_DONT_TOUCH, AST_CDR_FLAG_LOCKED, ast_test_flag, check_post(), and ast_cdr::next.

Referenced by ast_bridge_call(), and dial_exec_full().

00831 {
00832 
00833    for (; cdr; cdr = cdr->next) {
00834       if (ast_test_flag(cdr, AST_CDR_FLAG_ANSLOCKED))
00835          continue;
00836       if (ast_test_flag(cdr, AST_CDR_FLAG_DONT_TOUCH) && ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
00837          continue;
00838       check_post(cdr);
00839       cdr->answer = t;
00840    }
00841 }

void ast_cdr_setapp ( struct ast_cdr cdr,
const char *  app,
const char *  data 
)

Set the last executed application.

Parameters:
cdr which cdr to act upon
app the name of the app you wish to change it to
data the data you want in the data field of app you set it to Changes the value of the last executed app Returns nothing

Definition at line 818 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_test_flag, check_post(), ast_cdr::next, and S_OR.

Referenced by __ast_request_and_dial(), agi_handle_command(), clear_caller(), findmeexec(), and pbx_exec().

00819 {
00820 
00821    for (; cdr; cdr = cdr->next) {
00822       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00823          check_post(cdr);
00824          ast_copy_string(cdr->lastapp, S_OR(app, ""), sizeof(cdr->lastapp));
00825          ast_copy_string(cdr->lastdata, S_OR(data, ""), sizeof(cdr->lastdata));
00826       }
00827    }
00828 }

int ast_cdr_setcid ( struct ast_cdr cdr,
struct ast_channel chan 
)

Initialize based on a channel.

Parameters:
cdr Call Detail Record to use for channel
chan Channel to bind CDR with Initializes a CDR and associates it with a particular channel
Returns:
0 by default

Definition at line 879 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_test_flag, ast_cdr::next, and set_one_cid().

Referenced by ast_bridge_call(), ast_channel_set_caller_event(), ast_set_callerid(), and callerid_write().

00880 {
00881    for (; cdr; cdr = cdr->next) {
00882       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
00883          set_one_cid(cdr, c);
00884    }
00885    return 0;
00886 }

void ast_cdr_setdestchan ( struct ast_cdr cdr,
const char *  chan 
)

Set the destination channel, if there was one.

Parameters:
cdr Which cdr it's applied to
chan Channel to which dest will be Sets the destination channel the CDR is applied to Returns nothing

Definition at line 808 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_test_flag, check_post(), and ast_cdr::next.

Referenced by dial_exec_full(), park_exec_full(), and ring_entry().

00809 {
00810    for (; cdr; cdr = cdr->next) {
00811       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00812          check_post(cdr);
00813          ast_copy_string(cdr->dstchannel, chann, sizeof(cdr->dstchannel));
00814       }
00815    }
00816 }

void ast_cdr_setdisposition ( struct ast_cdr cdr,
long int  disposition 
)

Set the disposition for a call.

Parameters:
cdr the cdr you wish to associate with the call
disposition the new disposition Set the disposition on a call. NULL argument is just fine.

Definition at line 843 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_test_flag, check_post(), and ast_cdr::next.

Referenced by ast_bridge_call().

00844 {
00845 
00846    for (; cdr; cdr = cdr->next) {
00847       if (ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
00848          continue;
00849       check_post(cdr);
00850       cdr->disposition = disposition;
00851    }
00852 }

int ast_cdr_setpeeraccount ( struct ast_channel chan,
const char *  account 
)

Set the peer account.

Definition at line 1015 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_manager_event, ast_strdupa, ast_string_field_set, ast_strlen_zero(), ast_test_flag, ast_channel::cdr, EVENT_FLAG_CALL, ast_cdr::next, ast_channel::peeraccount, and ast_cdr::peeraccount.

Referenced by cdr_write().

01016 {
01017    struct ast_cdr *cdr = chan->cdr;
01018    const char *old_acct = "";
01019 
01020    if (!ast_strlen_zero(chan->peeraccount)) {
01021       old_acct = ast_strdupa(chan->peeraccount);
01022    }
01023 
01024    ast_string_field_set(chan, peeraccount, account);
01025    for ( ; cdr ; cdr = cdr->next) {
01026       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
01027          ast_copy_string(cdr->peeraccount, chan->peeraccount, sizeof(cdr->peeraccount));
01028       }
01029    }
01030 
01031    ast_manager_event(chan, EVENT_FLAG_CALL, "NewPeerAccount",
01032          "Channel: %s\r\n"
01033          "Uniqueid: %s\r\n"
01034          "PeerAccount: %s\r\n"
01035          "OldPeerAccount: %s\r\n",
01036          chan->name, chan->uniqueid, chan->peeraccount, old_acct);
01037 
01038    return 0;
01039 }

int ast_cdr_setuserfield ( struct ast_channel chan,
const char *  userfield 
)

Set CDR user field for channel (stored in CDR).

Definition at line 1056 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_test_flag, ast_channel::cdr, ast_cdr::next, and ast_cdr::userfield.

Referenced by __agent_start_monitoring(), ast_bridge_call(), cdr_write(), handle_request_info(), and start_monitor_exec().

01057 {
01058    struct ast_cdr *cdr = chan->cdr;
01059 
01060    for ( ; cdr ; cdr = cdr->next) {
01061       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
01062          ast_copy_string(cdr->userfield, userfield, sizeof(cdr->userfield));
01063    }
01064 
01065    return 0;
01066 }

int ast_cdr_setvar ( struct ast_cdr cdr,
const char *  name,
const char *  value,
int  recur 
)

Set a CDR channel variable

Note:
You can't set the CDR variables that belong to the actual CDR record, like "billsec".

Definition at line 335 of file cdr.c.

References AST_CDR_FLAG_DONT_TOUCH, AST_CDR_FLAG_LOCKED, AST_LIST_INSERT_HEAD, AST_LIST_REMOVE_CURRENT, AST_LIST_TRAVERSE_SAFE_BEGIN, AST_LIST_TRAVERSE_SAFE_END, ast_log(), ast_test_flag, ast_var_assign(), ast_var_delete(), ast_var_name(), cdr_readonly_vars, LOG_ERROR, and ast_cdr::next.

Referenced by ast_cdr_fork(), cdr_write(), and set_one_cid().

00336 {
00337    struct ast_var_t *newvariable;
00338    struct varshead *headp;
00339    int x;
00340 
00341    for (x = 0; cdr_readonly_vars[x]; x++) {
00342       if (!strcasecmp(name, cdr_readonly_vars[x])) {
00343          ast_log(LOG_ERROR, "Attempt to set the '%s' read-only variable!.\n", name);
00344          return -1;
00345       }
00346    }
00347 
00348    if (!cdr) {
00349       ast_log(LOG_ERROR, "Attempt to set a variable on a nonexistent CDR record.\n");
00350       return -1;
00351    }
00352 
00353    for (; cdr; cdr = recur ? cdr->next : NULL) {
00354       if (ast_test_flag(cdr, AST_CDR_FLAG_DONT_TOUCH) && ast_test_flag(cdr, AST_CDR_FLAG_LOCKED))
00355          continue;
00356       headp = &cdr->varshead;
00357       AST_LIST_TRAVERSE_SAFE_BEGIN(headp, newvariable, entries) {
00358          if (!strcasecmp(ast_var_name(newvariable), name)) {
00359             /* there is already such a variable, delete it */
00360             AST_LIST_REMOVE_CURRENT(entries);
00361             ast_var_delete(newvariable);
00362             break;
00363          }
00364       }
00365       AST_LIST_TRAVERSE_SAFE_END;
00366 
00367       if (value) {
00368          newvariable = ast_var_assign(name, value);
00369          AST_LIST_INSERT_HEAD(headp, newvariable, entries);
00370       }
00371    }
00372 
00373    return 0;
00374 }

void ast_cdr_specialized_reset ( struct ast_cdr cdr,
struct ast_flags flags 
)

Parameters:
cdr which cdr to act upon
flags |AST_CDR_FLAG_POSTED whether or not to post the cdr first before resetting it |AST_CDR_FLAG_LOCKED whether or not to reset locked CDR's

Definition at line 1193 of file cdr.c.

References ast_cdr::answer, AST_CDR_FLAG_POST_DISABLED, AST_CDR_NULL, ast_cdr_start(), ast_clear_flag, ast_copy_flags, AST_FLAGS_ALL, ast_set_flag, ast_test_flag, ast_cdr::billsec, ast_cdr::disposition, ast_cdr::duration, ast_cdr::end, ast_flags::flags, and ast_cdr::start.

Referenced by ast_bridge_call().

01194 {
01195    struct ast_flags flags = { 0 };
01196 
01197    if (_flags)
01198       ast_copy_flags(&flags, _flags, AST_FLAGS_ALL);
01199 
01200    /* Reset to initial state */
01201    if (ast_test_flag(cdr, AST_CDR_FLAG_POST_DISABLED)) { /* But do NOT lose the NoCDR() setting */
01202       ast_clear_flag(cdr, AST_FLAGS_ALL);
01203       ast_set_flag(cdr, AST_CDR_FLAG_POST_DISABLED);
01204    } else {
01205       ast_clear_flag(cdr, AST_FLAGS_ALL);
01206    }
01207 
01208    memset(&cdr->start, 0, sizeof(cdr->start));
01209    memset(&cdr->end, 0, sizeof(cdr->end));
01210    memset(&cdr->answer, 0, sizeof(cdr->answer));
01211    cdr->billsec = 0;
01212    cdr->duration = 0;
01213    ast_cdr_start(cdr);
01214    cdr->disposition = AST_CDR_NULL;
01215 }

void ast_cdr_start ( struct ast_cdr cdr  ) 

Start a call.

Parameters:
cdr the cdr you wish to associate with the call Starts all CDR stuff necessary for monitoring a call Returns nothing

Definition at line 717 of file cdr.c.

References AST_CDR_FLAG_LOCKED, ast_test_flag, ast_tvnow(), ast_cdr::channel, check_post(), ast_cdr::next, S_OR, and ast_cdr::start.

Referenced by __ast_channel_alloc_ap(), __ast_request_and_dial(), ast_bridge_call(), ast_cdr_reset(), ast_cdr_specialized_reset(), ast_pbx_outgoing_cdr_failed(), builtin_blindtransfer(), clear_caller(), and findmeexec().

00718 {
00719    char *chan;
00720 
00721    for (; cdr; cdr = cdr->next) {
00722       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
00723          chan = S_OR(cdr->channel, "<unknown>");
00724          check_post(cdr);
00725          cdr->start = ast_tvnow();
00726       }
00727    }
00728 }

void ast_cdr_submit_batch ( int  shutdown  ) 

Spawns (possibly) a new thread to submit a batch of CDRs to the backend engines.

Parameters:
shutdown Whether or not we are shutting down Blocks the asterisk shutdown procedures until the CDR data is submitted. Returns nothing

Definition at line 1271 of file cdr.c.

References ast_debug, ast_log(), ast_mutex_lock, ast_mutex_unlock, ast_pthread_create_detached_background, AST_PTHREADT_NULL, batch, batchscheduleronly, cdr_batch_lock, do_batch_backend_process(), ast_cdr_batch::head, LOG_WARNING, and reset_batch().

Referenced by ast_cdr_engine_term(), and submit_scheduled_batch().

01272 {
01273    struct ast_cdr_batch_item *oldbatchitems = NULL;
01274    pthread_t batch_post_thread = AST_PTHREADT_NULL;
01275 
01276    /* if there's no batch, or no CDRs in the batch, then there's nothing to do */
01277    if (!batch || !batch->head)
01278       return;
01279 
01280    /* move the old CDRs aside, and prepare a new CDR batch */
01281    ast_mutex_lock(&cdr_batch_lock);
01282    oldbatchitems = batch->head;
01283    reset_batch();
01284    ast_mutex_unlock(&cdr_batch_lock);
01285 
01286    /* if configured, spawn a new thread to post these CDRs,
01287       also try to save as much as possible if we are shutting down safely */
01288    if (batchscheduleronly || do_shutdown) {
01289       ast_debug(1, "CDR single-threaded batch processing begins now\n");
01290       do_batch_backend_process(oldbatchitems);
01291    } else {
01292       if (ast_pthread_create_detached_background(&batch_post_thread, NULL, do_batch_backend_process, oldbatchitems)) {
01293          ast_log(LOG_WARNING, "CDR processing thread could not detach, now trying in this thread\n");
01294          do_batch_backend_process(oldbatchitems);
01295       } else {
01296          ast_debug(1, "CDR multi-threaded batch processing begins now\n");
01297       }
01298    }
01299 }

void ast_cdr_unregister ( const char *  name  ) 

Unregister a CDR handling engine.

unregister a CDR driver

Definition at line 157 of file cdr.c.

References ast_free, AST_RWLIST_REMOVE_CURRENT, AST_RWLIST_TRAVERSE_SAFE_BEGIN, AST_RWLIST_TRAVERSE_SAFE_END, AST_RWLIST_UNLOCK, AST_RWLIST_WRLOCK, ast_verb, ast_cdr_beitem::list, and ast_cdr_beitem::name.

Referenced by load_config(), odbc_load_module(), reload(), tds_unload_module(), and unload_module().

00158 {
00159    struct ast_cdr_beitem *i = NULL;
00160 
00161    AST_RWLIST_WRLOCK(&be_list);
00162    AST_RWLIST_TRAVERSE_SAFE_BEGIN(&be_list, i, list) {
00163       if (!strcasecmp(name, i->name)) {
00164          AST_RWLIST_REMOVE_CURRENT(list);
00165          break;
00166       }
00167    }
00168    AST_RWLIST_TRAVERSE_SAFE_END;
00169    AST_RWLIST_UNLOCK(&be_list);
00170 
00171    if (i) {
00172       ast_verb(2, "Unregistered '%s' CDR backend\n", name);
00173       ast_free(i);
00174    }
00175 }

int ast_cdr_update ( struct ast_channel chan  ) 

Update CDR on a channel

Definition at line 1082 of file cdr.c.

References ast_channel::accountcode, AST_CDR_FLAG_LOCKED, ast_copy_string(), ast_test_flag, ast_channel::cdr, ast_channel::context, ast_channel::exten, ast_channel::linkedid, ast_channel::macrocontext, ast_channel::macroexten, ast_cdr::next, ast_channel::peeraccount, S_OR, and set_one_cid().

Referenced by __ast_pbx_run(), __ast_request_and_dial(), ast_bridge_call(), cb_events(), clear_caller(), findmeexec(), and local_call().

01083 {
01084    struct ast_cdr *cdr = c->cdr;
01085 
01086    for ( ; cdr ; cdr = cdr->next) {
01087       if (!ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
01088          set_one_cid(cdr, c);
01089 
01090          /* Copy account code et-al */
01091          ast_copy_string(cdr->accountcode, c->accountcode, sizeof(cdr->accountcode));
01092          ast_copy_string(cdr->peeraccount, c->peeraccount, sizeof(cdr->peeraccount));
01093          ast_copy_string(cdr->linkedid, c->linkedid, sizeof(cdr->linkedid));
01094 
01095          /* Destination information */ /* XXX privilege macro* ? */
01096          ast_copy_string(cdr->dst, S_OR(c->macroexten, c->exten), sizeof(cdr->dst));
01097          ast_copy_string(cdr->dcontext, S_OR(c->macrocontext, c->context), sizeof(cdr->dcontext));
01098       }
01099    }
01100 
01101    return 0;
01102 }

int check_cdr_enabled ( void   ) 

Return TRUE if CDR subsystem is enabled.

Definition at line 114 of file cdr.c.

References enabled.

Referenced by action_coresettings(), and handle_show_settings().

00115 {
00116    return enabled;
00117 }


Variable Documentation

char ast_default_accountcode[AST_MAX_ACCOUNT_CODE]

Definition at line 56 of file cdr.c.

Referenced by __ast_channel_alloc_ap().

int ast_default_amaflags

Default AMA flag for billing records (CDR's)

Definition at line 55 of file cdr.c.

Referenced by __ast_channel_alloc_ap(), and ast_bridge_call().


Generated on Wed Apr 6 11:29:54 2011 for Asterisk - The Open Source Telephony Project by  doxygen 1.4.7