00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 #ifndef ABSL_STRINGS_INTERNAL_MEMUTIL_H_
00063 #define ABSL_STRINGS_INTERNAL_MEMUTIL_H_
00064
00065 #include <cstddef>
00066 #include <cstring>
00067
00068 #include "absl/base/port.h"
00069 #include "absl/strings/ascii.h"
00070
00071 namespace absl {
00072 namespace strings_internal {
00073
00074 inline char* memcat(char* dest, size_t destlen, const char* src,
00075 size_t srclen) {
00076 return reinterpret_cast<char*>(memcpy(dest + destlen, src, srclen));
00077 }
00078
00079 int memcasecmp(const char* s1, const char* s2, size_t len);
00080 char* memdup(const char* s, size_t slen);
00081 char* memrchr(const char* s, int c, size_t slen);
00082 size_t memspn(const char* s, size_t slen, const char* accept);
00083 size_t memcspn(const char* s, size_t slen, const char* reject);
00084 char* mempbrk(const char* s, size_t slen, const char* accept);
00085
00086
00087 template <bool case_sensitive>
00088 const char* int_memmatch(const char* haystack, size_t haylen,
00089 const char* needle, size_t neelen) {
00090 if (0 == neelen) {
00091 return haystack;
00092 }
00093 const char* hayend = haystack + haylen;
00094 const char* needlestart = needle;
00095 const char* needleend = needlestart + neelen;
00096
00097 for (; haystack < hayend; ++haystack) {
00098 char hay = case_sensitive
00099 ? *haystack
00100 : absl::ascii_tolower(static_cast<unsigned char>(*haystack));
00101 char nee = case_sensitive
00102 ? *needle
00103 : absl::ascii_tolower(static_cast<unsigned char>(*needle));
00104 if (hay == nee) {
00105 if (++needle == needleend) {
00106 return haystack + 1 - neelen;
00107 }
00108 } else if (needle != needlestart) {
00109
00110 haystack -= needle - needlestart;
00111 needle = needlestart;
00112 }
00113 }
00114 return nullptr;
00115 }
00116
00117
00118 inline const char* memstr(const char* phaystack, size_t haylen,
00119 const char* pneedle) {
00120 return int_memmatch<true>(phaystack, haylen, pneedle, strlen(pneedle));
00121 }
00122
00123 inline const char* memcasestr(const char* phaystack, size_t haylen,
00124 const char* pneedle) {
00125 return int_memmatch<false>(phaystack, haylen, pneedle, strlen(pneedle));
00126 }
00127
00128 inline const char* memmem(const char* phaystack, size_t haylen,
00129 const char* pneedle, size_t needlelen) {
00130 return int_memmatch<true>(phaystack, haylen, pneedle, needlelen);
00131 }
00132
00133 inline const char* memcasemem(const char* phaystack, size_t haylen,
00134 const char* pneedle, size_t needlelen) {
00135 return int_memmatch<false>(phaystack, haylen, pneedle, needlelen);
00136 }
00137
00138
00139
00140 const char* memmatch(const char* phaystack, size_t haylen, const char* pneedle,
00141 size_t neelen);
00142
00143 }
00144 }
00145
00146 #endif // ABSL_STRINGS_INTERNAL_MEMUTIL_H_