INMEMORY 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. * Curl get in memory and count HTML tags
  2. *
  3. h DFTACTGRP(*NO) ACTGRP(*NEW)
  4. h OPTION(*NOSHOWCPY)
  5. h BNDDIR('CURL')
  6. *
  7. **************************************************************************
  8. * _ _ ____ _
  9. * Project ___| | | | _ \| |
  10. * / __| | | | |_) | |
  11. * | (__| |_| | _ <| |___
  12. * \___|\___/|_| \_\_____|
  13. *
  14. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  15. *
  16. * This software is licensed as described in the file COPYING, which
  17. * you should have received as part of this distribution. The terms
  18. * are also available at https://curl.se/docs/copyright.html.
  19. *
  20. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  21. * copies of the Software, and permit persons to whom the Software is
  22. * furnished to do so, under the terms of the COPYING file.
  23. *
  24. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
  25. * ANY KIND, either express or implied.
  26. *
  27. * SPDX-License-Identifier: curl
  28. *
  29. **************************************************************************
  30. *
  31. /include H,CURL.INC
  32. *
  33. * Example to request the URL given as command line parameter and count
  34. * HTML tags in its response.
  35. *
  36. d pi
  37. d url 120
  38. *
  39. d countdata ds qualified based(###dummyptr) User data type
  40. d tagcount 10u 0 Tag counter
  41. d tagopen n Possible opening tag
  42. *
  43. d urllen s 10u 0 URL length
  44. *
  45. **************************************************************************
  46. urllen = trimmed_length(url: %len(url));
  47. // Do the curl stuff.
  48. curl_global_init(CURL_GLOBAL_ALL);
  49. main();
  50. curl_global_cleanup();
  51. *inlr = *on; // Exit
  52. *
  53. **************************************************************************
  54. * Main procedure: do the curl job.
  55. **************************************************************************
  56. *
  57. p main b
  58. d main pi
  59. *
  60. d h s * Easy handle
  61. d result s like(CURLcode) Curl return code
  62. d inz(CURLE_OUT_OF_MEMORY)
  63. d errmsgp s * Error string pointer
  64. d response s 52 For error display
  65. d counter ds likeds(countdata) HTML tag counter
  66. counter.tagcount = 0;
  67. counter.tagopen = *off;
  68. // Create and fill curl handle.
  69. h = curl_easy_init();
  70. if h <> *NULL;
  71. curl_easy_setopt_ccsid(h: CURLOPT_URL: %subst(url: 1: urllen): 0);
  72. curl_easy_setopt(h: CURLOPT_FOLLOWLOCATION: 1);
  73. curl_easy_setopt(h: CURLOPT_WRITEFUNCTION: %paddr(in_data_cb));
  74. curl_easy_setopt(h: CURLOPT_WRITEDATA: %addr(counter));
  75. // Perform the request.
  76. result = curl_easy_perform(h);
  77. curl_easy_cleanup(h); // Release handle
  78. endif;
  79. // Check for error and report if some.
  80. if result <> CURLE_OK;
  81. errmsgp = curl_easy_strerror_ccsid(result: 0);
  82. response = %str(errmsgp);
  83. dsply '' '*EXT' response;
  84. else;
  85. // Display the tag count.
  86. response = 'Tag count: ' + %char(counter.tagcount);
  87. dsply '' '*EXT' response;
  88. endif;
  89. p main e
  90. *
  91. **************************************************************************
  92. * Data input callback procedure.
  93. **************************************************************************
  94. *
  95. p in_data_cb b
  96. d in_data_cb pi 10u 0
  97. d ptr * value Input data pointer
  98. d size 10u 0 value Data element size
  99. d nmemb 10u 0 value Data element count
  100. d userdata * value User data pointer
  101. *
  102. d counter ds likeds(countdata) based(userdata) HTML tag counter
  103. d ebcdata s * EBCDIC data pointer
  104. d chars s 1 based(ebcdata) dim(1000000)
  105. d i s 10u 0 Character position
  106. *
  107. size = size * nmemb; // The size in bytes.
  108. ebcdata = curl_to_ccsid(%str(ptr: size): 0); // Convert to EBCDIC.
  109. i = 1;
  110. dow i <= size;
  111. if counter.tagopen; // Did we see '<' ?
  112. counter.tagopen = *off;
  113. if chars(i) <> '/'; // Reject closing tag.
  114. counter.tagcount = counter.tagcount + 1; // Count this tag.
  115. endif;
  116. else;
  117. i = %scan('<': %str(ebcdata): i); // Search next possible tag.
  118. if i = 0;
  119. leave;
  120. endif;
  121. counter.tagopen = *on; // Found one: flag it.
  122. endif;
  123. i = i + 1;
  124. enddo;
  125. curl_free(ebcdata);
  126. return size;
  127. p in_data_cb e
  128. *
  129. **************************************************************************
  130. * Get the length of right-trimmed string
  131. **************************************************************************
  132. *
  133. p trimmed_length b
  134. d trimmed_length pi 10u 0
  135. d string 999999 const options(*varsize)
  136. d length 10u 0 value
  137. *
  138. d len s 10u 0
  139. *
  140. len = %scan(X'00': string: 1: length); // Limit to zero-terminated string
  141. if len = 0;
  142. len = length + 1;
  143. endif;
  144. if len <= 1;
  145. return 0;
  146. endif;
  147. return %checkr(' ': string: len - 1); // Trim right
  148. p trimmed_length e