soap.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (C) 2012-2013 by egnite GmbH
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the copyright holders nor the names of
  16. * contributors may be used to endorse or promote products derived
  17. * from this software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  22. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  23. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  24. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  25. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  26. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  27. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  29. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. * SUCH DAMAGE.
  31. *
  32. * For additional information see http://www.ethernut.de/
  33. */
  34. #include <pro/soap.h>
  35. #include <stdlib.h>
  36. #include <stdio.h>
  37. #include <string.h>
  38. SOAP_PROCEDURE *SoapProcByName(SOAP_PROCEDURE *list, const char *name)
  39. {
  40. while (list && strcasecmp(list->proc_name, name)) {
  41. list = list->proc_next;
  42. }
  43. return list;
  44. }
  45. SOAP_ARG *SoapArgByName(SOAP_PROCEDURE *proc, const char *name, int dir)
  46. {
  47. SOAP_ARG *arg;
  48. for (arg = dir ? proc->proc_argo : proc->proc_argi; arg; arg = arg->arg_next) {
  49. if (strcasecmp(arg->arg_name, name) == 0) {
  50. break;
  51. }
  52. }
  53. return arg;
  54. }
  55. int SoapProcArgSet(SOAP_PROCEDURE *proc, const char *name, const char *value, int dir)
  56. {
  57. int rc = -1;
  58. SOAP_ARG *arg = SoapArgByName(proc, name, dir);
  59. if (arg) {
  60. free(arg->arg_val);
  61. arg->arg_val = value ? strdup(value) : NULL;
  62. rc = 0;
  63. }
  64. return rc;
  65. }
  66. int SoapProcArgSetInt(SOAP_PROCEDURE *proc, const char *name, int value, int dir)
  67. {
  68. static char str[16];
  69. sprintf(str, "%d", value);
  70. return SoapProcArgSet(proc, name, str, dir);
  71. }
  72. const char *SoapProcArgGet(SOAP_PROCEDURE *proc, const char *name, int dir)
  73. {
  74. char *value = NULL;
  75. SOAP_ARG *arg = SoapArgByName(proc, name, dir);
  76. if (arg) {
  77. value = arg->arg_val;
  78. }
  79. return value;
  80. }
  81. int SoapProcArgGetInt(SOAP_PROCEDURE *proc, const char *name, int dir)
  82. {
  83. int rc = 0;
  84. const char *value;
  85. value = SoapProcArgGet(proc, name, dir);
  86. if (value) {
  87. rc = atoi(value);
  88. }
  89. return rc;
  90. }