${ENV(VAR)} Environmental variable VAR
${EPOCH} Current unix style epoch
${DATETIME} Current date time in the format: YYYY-MM-DD_HH:MM:SS
+${UNIQUEID} Current call unique identifier
There are two reference modes - reference by value and reference by name.
To refer to a variable with its name (as an argument to a function that
/* Destination information */
strncpy(cdr->dst, c->exten, sizeof(cdr->dst) - 1);
strncpy(cdr->dcontext, c->context, sizeof(cdr->dcontext) - 1);
+ /* Unique call identifier */
+ strncpy(cdr->uniqueid, c->uniqueid, sizeof(cdr->uniqueid) - 1);
}
return 0;
}
#define DATE_FORMAT "%Y-%m-%d %T"
+/* #define CSV_LOGUNIQUEID 1 */
+
#include <stdio.h>
#include <string.h>
// "end time" minus "answer time"
"disposition", // ANSWERED, NO ANSWER, BUSY
"amaflags", // DOCUMENTATION, BILL, IGNORE etc, specified on a per channel basis like accountcode.
-
+ "uniqueid", // unique call identifier
*/
static char *desc = "Comma Separated Values CDR Backend";
/* AMA Flags */
append_string(buf, ast_cdr_flags2str(cdr->amaflags), len);
+#ifdef CSV_LOGUNIQUEID
+ /* Unique ID */
+ append_string(buf, cdr->uniqueid, len);
+#endif
/* If we hit the end of our buffer, log an error */
if (strlen(buf) < len - 5) {
/* Trim off trailing comma */
static int shutting_down = 0;
+static int uniqueint = 0;
/* XXX Lock appropriately in more functions XXX */
tmp->data = NULL;
tmp->fin = 0;
tmp->fout = 0;
+ snprintf(tmp->uniqueid, sizeof(tmp->uniqueid), "%li.%d", time(NULL), uniqueint++);
headp=&tmp->varshead;
ast_pthread_mutex_init(&tmp->lock);
AST_LIST_HEAD_INIT(headp);
" -- General --\n"
" Name: %s\n"
" Type: %s\n"
+ " UniqueID: %s\n"
" Caller ID: %s\n"
" DNID Digits: %s\n"
" State: %s (%d)\n"
" Data: %s\n"
" Stack: %d\n"
" Blocking in: %s\n",
- c->name, c->type,
+ c->name, c->type, c->uniqueid,
(c->callerid ? c->callerid : "(N/A)"),
(c->dnid ? c->dnid : "(N/A)" ), ast_state2str(c->_state), c->_state, c->rings, c->nativeformats, c->writeformat, c->readformat,
c->fds[0], c->fin & 0x7fffffff, (c->fin & 0x80000000) ? " (DEBUGGED)" : "",
${ENV(VAR)} Environmental variable VAR
${EPOCH} Current unix style epoch
${DATETIME} Current date time in the format: YYYY-MM-DD_HH:MM:SS
+${UNIQUEID} Current call unique identifier
There are two reference modes - reference by value and reference by name.
To refer to a variable with its name (as an argument to a function that
char accountcode[20];
/*! Whether or not the record has been posted */
int posted;
+ /* Unique Channel Identifier */
+ char uniqueid[32];
};
typedef int (*ast_cdrbe)(struct ast_cdr *cdr);
unsigned int fin;
unsigned int fout;
+ /* Unique Channel Identifier */
+ char uniqueid[32];
+
/* A linked list for variables */
struct ast_var_t *vars;
AST_LIST_HEAD(varshead,ast_var_t) varshead;
brokentime.tm_sec
);
*ret = workspace;
+ } else if (!strcmp(var, "UNIQUEID")) {
+ snprintf(workspace, workspacelen -1, "%s", c->uniqueid);
} else {
AST_LIST_TRAVERSE(headp,variables,entries) {
#if 0