wcstok_s.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Copyright (c) Huawei Technologies Co., Ltd. 2014-2021. All rights reserved.
  3. * Licensed under Mulan PSL v2.
  4. * You can use this software according to the terms and conditions of the Mulan PSL v2.
  5. * You may obtain a copy of Mulan PSL v2 at:
  6. * http://license.coscl.org.cn/MulanPSL2
  7. * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
  8. * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
  9. * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
  10. * See the Mulan PSL v2 for more details.
  11. * Description: wcstok_s function
  12. * Create: 2014-02-25
  13. */
  14. #include "securecutil.h"
  15. SECUREC_INLINE int SecIsInDelimitW(wchar_t ch, const wchar_t *strDelimit)
  16. {
  17. const wchar_t *ctl = strDelimit;
  18. while (*ctl != L'\0' && *ctl != ch) {
  19. ++ctl;
  20. }
  21. return (int)(*ctl != L'\0');
  22. }
  23. /*
  24. * Find beginning of token (skip over leading delimiters).
  25. * Note that there is no token if this loop sets string to point to the terminal null.
  26. */
  27. SECUREC_INLINE wchar_t *SecFindBeginW(wchar_t *strToken, const wchar_t *strDelimit)
  28. {
  29. wchar_t *token = strToken;
  30. while (*token != L'\0') {
  31. if (SecIsInDelimitW(*token, strDelimit) != 0) {
  32. ++token;
  33. continue;
  34. }
  35. /* Don't find any delimiter in string header, break the loop */
  36. break;
  37. }
  38. return token;
  39. }
  40. /*
  41. * Find the end of the token. If it is not the end of the string, put a null there.
  42. */
  43. SECUREC_INLINE wchar_t *SecFindRestW(wchar_t *strToken, const wchar_t *strDelimit)
  44. {
  45. wchar_t *token = strToken;
  46. while (*token != L'\0') {
  47. if (SecIsInDelimitW(*token, strDelimit) != 0) {
  48. /* Find a delimiter, set string terminator */
  49. *token = L'\0';
  50. ++token;
  51. break;
  52. }
  53. ++token;
  54. }
  55. return token;
  56. }
  57. /*
  58. * Update Token wide character function
  59. */
  60. SECUREC_INLINE wchar_t *SecUpdateTokenW(wchar_t *strToken, const wchar_t *strDelimit, wchar_t **context)
  61. {
  62. /* Point to updated position. Record string position for next search in the context */
  63. *context = SecFindRestW(strToken, strDelimit);
  64. /* Determine if a token has been found */
  65. if (*context == strToken) {
  66. return NULL;
  67. }
  68. return strToken;
  69. }
  70. /*
  71. * <NAME>
  72. * wcstok_s
  73. *
  74. *
  75. * <FUNCTION DESCRIPTION>
  76. * The wcstok_s function is the wide-character equivalent of the strtok_s function
  77. *
  78. * <INPUT PARAMETERS>
  79. * strToken String containing token or tokens.
  80. * strDelimit Set of delimiter characters.
  81. * context Used to store position information between calls to
  82. * wcstok_s.
  83. *
  84. * <OUTPUT PARAMETERS>
  85. * context is updated
  86. * <RETURN VALUE>
  87. * The wcstok_s function is the wide-character equivalent of the strtok_s function
  88. */
  89. wchar_t *wcstok_s(wchar_t *strToken, const wchar_t *strDelimit, wchar_t **context)
  90. {
  91. wchar_t *orgToken = strToken;
  92. /* Validation section */
  93. if (context == NULL || strDelimit == NULL) {
  94. return NULL;
  95. }
  96. if (orgToken == NULL && *context == NULL) {
  97. return NULL;
  98. }
  99. /* If string==NULL, continue with previous string */
  100. if (orgToken == NULL) {
  101. orgToken = *context;
  102. }
  103. orgToken = SecFindBeginW(orgToken, strDelimit);
  104. return SecUpdateTokenW(orgToken, strDelimit, context);
  105. }