script_cb.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * $Id$
  3. *
  4. * Script callbacks -- they add the ability to register callback
  5. * functions which are always called when script for request
  6. * processing is entered or left
  7. *
  8. *
  9. * Copyright (C) 2001-2003 Fhg Fokus
  10. *
  11. * This file is part of ser, a free SIP server.
  12. *
  13. * ser is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version
  17. *
  18. * For a license to use the ser software under conditions
  19. * other than those described here, or to purchase support for this
  20. * software, please contact iptel.org by e-mail at the following addresses:
  21. * [email protected]
  22. *
  23. * ser is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU General Public License
  29. * along with this program; if not, write to the Free Software
  30. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  31. */
  32. /* History:
  33. * --------
  34. * 2003-03-29 cleaning pkg allocation introduced (jiri)
  35. * 2003-03-19 replaced all mallocs/frees w/ pkg_malloc/pkg_free (andrei)
  36. */
  37. #include <stdlib.h>
  38. #include "script_cb.h"
  39. #include "dprint.h"
  40. #include "error.h"
  41. #include "mem/mem.h"
  42. static struct script_cb *pre_cb=0;
  43. static struct script_cb *post_cb=0;
  44. static unsigned int cb_id=0;
  45. int register_script_cb( cb_function f, callback_t t, void *param )
  46. {
  47. struct script_cb *new_cb;
  48. new_cb=pkg_malloc(sizeof(struct script_cb));
  49. if (new_cb==0) {
  50. LOG(L_ERR, "ERROR: register_script_cb: out of memory\n");
  51. return E_OUT_OF_MEM;
  52. }
  53. new_cb->cbf=f;
  54. new_cb->id=cb_id++;
  55. new_cb->param=param;
  56. /* insert into appropriate list */
  57. if (t==PRE_SCRIPT_CB) {
  58. new_cb->next=pre_cb;
  59. pre_cb=new_cb;
  60. } else if (t==POST_SCRIPT_CB) {
  61. new_cb->next=post_cb;
  62. post_cb=new_cb;
  63. } else {
  64. LOG(L_CRIT, "ERROR: register_script_cb: unknown CB type\n");
  65. return E_BUG;
  66. }
  67. /* ok, callback installed */
  68. return 1;
  69. }
  70. void destroy_script_cb()
  71. {
  72. struct script_cb *cb, *foo;
  73. cb=pre_cb;
  74. while(cb) { foo=cb->next;pkg_free(cb);cb=foo; }
  75. cb=post_cb;
  76. while(cb) { foo=cb->next;pkg_free(cb);cb=foo; }
  77. }
  78. int exec_pre_cb( struct sip_msg *msg)
  79. {
  80. struct script_cb *i;
  81. for (i=pre_cb; i; i=i->next) {
  82. /* stop on error */
  83. if (i->cbf(msg, i->param)==0)
  84. return 0;
  85. }
  86. return 1;
  87. }
  88. void exec_post_cb( struct sip_msg *msg)
  89. {
  90. struct script_cb *i;
  91. for (i=post_cb; i; i=i->next) i->cbf(msg, i->param);
  92. }