http_parser_url.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* SPDX-License-Identifier: MIT */
  2. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to
  6. * deal in the Software without restriction, including without limitation the
  7. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8. * sell copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. * IN THE SOFTWARE.
  21. */
  22. #ifndef ZEPHYR_INCLUDE_NET_HTTP_PARSER_URL_H_
  23. #define ZEPHYR_INCLUDE_NET_HTTP_PARSER_URL_H_
  24. #include <sys/types.h>
  25. #include <zephyr/types.h>
  26. #include <stddef.h>
  27. #include <net/http_parser_state.h>
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. enum http_parser_url_fields {
  32. UF_SCHEMA = 0
  33. , UF_HOST = 1
  34. , UF_PORT = 2
  35. , UF_PATH = 3
  36. , UF_QUERY = 4
  37. , UF_FRAGMENT = 5
  38. , UF_USERINFO = 6
  39. , UF_MAX = 7
  40. };
  41. /* Result structure for http_parser_url_fields().
  42. *
  43. * Callers should index into field_data[] with UF_* values iff field_set
  44. * has the relevant (1 << UF_*) bit set. As a courtesy to clients (and
  45. * because we probably have padding left over), we convert any port to
  46. * a uint16_t.
  47. */
  48. struct http_parser_url {
  49. uint16_t field_set; /* Bitmask of (1 << UF_*) values */
  50. uint16_t port; /* Converted UF_PORT string */
  51. struct {
  52. uint16_t off; /* Offset into buffer in which field
  53. * starts
  54. */
  55. uint16_t len; /* Length of run in buffer */
  56. } field_data[UF_MAX];
  57. };
  58. enum state parse_url_char(enum state s, const char ch);
  59. /* Initialize all http_parser_url members to 0 */
  60. void http_parser_url_init(struct http_parser_url *u);
  61. /* Parse a URL; return nonzero on failure */
  62. int http_parser_parse_url(const char *buf, size_t buflen,
  63. int is_connect, struct http_parser_url *u);
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #endif