#include "asterisk/utils.h"
#include "asterisk/stringfields.h"
#include "asterisk/smdi.h"
+#include "asterisk/astobj2.h"
#ifdef ODBC_STORAGE
#include "asterisk/res_odbc.h"
#endif
#endif
static void apply_options(struct ast_vm_user *vmu, const char *options);
+struct ao2_container *inprocess_container;
+
+struct inprocess {
+ int count;
+ char *context;
+ char mailbox[0];
+};
+
+static int inprocess_hash_fn(const void *obj, const int flags)
+{
+ const struct inprocess *i = obj;
+ return atoi(i->mailbox);
+}
+
+static int inprocess_cmp_fn(void *obj, void *arg, int flags)
+{
+ struct inprocess *i = obj, *j = arg;
+ if (!strcmp(i->mailbox, j->mailbox)) {
+ return 0;
+ }
+ return !strcmp(i->context, j->context) ? CMP_MATCH : 0;
+}
+
+static int inprocess_count(const char *context, const char *mailbox, int delta)
+{
+ struct inprocess *i, *arg = alloca(sizeof(*arg) + strlen(context) + strlen(mailbox) + 2);
+ arg->context = arg->mailbox + strlen(mailbox) + 1;
+ strcpy(arg->mailbox, mailbox); /* SAFE */
+ strcpy(arg->context, context); /* SAFE */
+ ao2_lock(inprocess_container);
+ if ((i = ao2_find(inprocess_container, &arg, 0))) {
+ int ret = ast_atomic_fetchadd_int(&i->count, delta);
+ ao2_unlock(inprocess_container);
+ ao2_ref(i, -1);
+ return ret;
+ }
+ if (!(i = ao2_alloc(sizeof(*i) + strlen(context) + strlen(mailbox) + 2, NULL))) {
+ ao2_unlock(inprocess_container);
+ return 0;
+ }
+ i->context = i->mailbox + strlen(mailbox) + 1;
+ strcpy(i->mailbox, mailbox); /* SAFE */
+ strcpy(i->context, context); /* SAFE */
+ i->count = delta;
+ ao2_link(inprocess_container, i);
+ ao2_unlock(inprocess_container);
+ ao2_ref(i, -1);
+ return 0;
+}
+
#ifdef ODBC_STORAGE
static char odbc_database[80];
static char odbc_table[80];
break;
recipmsgnum++;
} while (recipmsgnum < recip->maxmsg);
- if (recipmsgnum < recip->maxmsg) {
+ if (recipmsgnum < recip->maxmsg - (imbox ? 0 : inprocess_count(vmu->mailbox, vmu->context, 0))) {
if (EXISTS(fromdir, msgnum, frompath, chan->language)) {
COPY(fromdir, msgnum, todir, recipmsgnum, recip->mailbox, recip->context, frompath, topath);
} else {
}
if (option_debug > 2)
ast_log(LOG_DEBUG, "Checking message number quota - mailbox has %d messages, maximum is set to %d\n",msgnum,vmu->maxmsg);
- if (msgnum >= vmu->maxmsg) {
+ if (msgnum >= vmu->maxmsg - inprocess_count(vmu->mailbox, vmu->context, 0)) {
res = ast_streamfile(chan, "vm-mailboxfull", chan->language);
if (!res)
res = ast_waitstream(chan, "");
}
/* Check if we have exceeded maxmsg */
- if (msgnum >= vmu->maxmsg) {
+ if (msgnum >= vmu->maxmsg - inprocess_count(vmu->mailbox, vmu->context, +1)) {
ast_log(LOG_WARNING, "Unable to leave message since we will exceed the maximum number of messages allowed (%u > %u)\n", msgnum, vmu->maxmsg);
ast_play_and_wait(chan, "vm-mailboxfull");
+ inprocess_count(vmu->mailbox, vmu->context, -1);
return -1;
}
#else
- if (count_messages(vmu, dir) >= vmu->maxmsg) {
+ if (count_messages(vmu, dir) >= vmu->maxmsg - inprocess_count(vmu->mailbox, vmu->context, +1)) {
res = ast_streamfile(chan, "vm-mailboxfull", chan->language);
if (!res)
res = ast_waitstream(chan, "");
ast_log(LOG_WARNING, "No more messages possible\n");
pbx_builtin_setvar_helper(chan, "VMSTATUS", "FAILED");
+ inprocess_count(vmu->mailbox, vmu->context, -1);
goto leave_vm_out;
}
res = ast_waitstream(chan, "");
ast_log(LOG_ERROR, "Unable to create message file: %s\n", strerror(errno));
pbx_builtin_setvar_helper(chan, "VMSTATUS", "FAILED");
+ inprocess_count(vmu->mailbox, vmu->context, -1);
goto leave_vm_out;
}
ast_verbose( VERBOSE_PREFIX_3 "Recording was %d seconds long but needs to be at least %d - abandoning\n", duration, vmminmessage);
ast_filedelete(tmptxtfile, NULL);
unlink(tmptxtfile);
+ inprocess_count(vmu->mailbox, vmu->context, -1);
} else {
fprintf(txt, "duration=%d\n", duration);
fclose(txt);
/* Delete files */
ast_filedelete(tmptxtfile, NULL);
unlink(tmptxtfile);
+ inprocess_count(vmu->mailbox, vmu->context, -1);
} else if (ast_fileexists(tmptxtfile, NULL, NULL) <= 0) {
if (option_debug)
ast_log(LOG_DEBUG, "The recorded media file is gone, so we should remove the .txt file too!\n");
unlink(tmptxtfile);
ast_unlock_path(dir);
+ inprocess_count(vmu->mailbox, vmu->context, -1);
} else {
for (;;) {
make_file(fn, sizeof(fn), dir, msgnum);
snprintf(txtfile, sizeof(txtfile), "%s.txt", fn);
ast_filerename(tmptxtfile, fn, NULL);
rename(tmptxtfile, txtfile);
+ inprocess_count(vmu->mailbox, vmu->context, -1);
ast_unlock_path(dir);
/* We must store the file first, before copying the message, because
}
}
}
+ } else {
+ inprocess_count(vmu->mailbox, vmu->context, -1);
}
if (res == '0') {
goto transfer;
if (vm_lock_path(dir))
return ERROR_LOCK_PATH;
- for (x = 0, dest = 0; x < vmu->maxmsg; x++) {
+ for (x = 0, dest = 0; x < vmu->maxmsg + 10; x++) {
make_file(sfn, sizeof(sfn), dir, x);
if (EXISTS(dir, x, sfn, NULL)) {
#endif
if (!(vms.deleted = ast_calloc(vmu->maxmsg, sizeof(int)))) {
/* TODO: Handle memory allocation failure */
+ goto out;
}
if (!(vms.heard = ast_calloc(vmu->maxmsg, sizeof(int)))) {
/* TODO: Handle memory allocation failure */
+ goto out;
}
/* Set language from config to override channel language */
res |= ast_unregister_application(app4);
ast_cli_unregister_multiple(cli_voicemail, sizeof(cli_voicemail) / sizeof(struct ast_cli_entry));
ast_uninstall_vm_functions();
+ ao2_ref(inprocess_container, -1);
ast_module_user_hangup_all();
return AST_MODULE_LOAD_DECLINE;
}
+ if (!(inprocess_container = ao2_container_alloc(573, inprocess_hash_fn, inprocess_cmp_fn))) {
+ return AST_MODULE_LOAD_DECLINE;
+ }
+
my_umask = umask(0);
umask(my_umask);
res = ast_register_application(app, vm_exec, synopsis_vm, descrip_vm);