Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1 | /* stringlib: count implementation */ |
| 2 | |
| 3 | #ifndef STRINGLIB_COUNT_H |
| 4 | #define STRINGLIB_COUNT_H |
| 5 | |
| 6 | #ifndef STRINGLIB_FASTSEARCH_H |
| 7 | #error must include "stringlib/fastsearch.h" before including this module |
| 8 | #endif |
| 9 | |
| 10 | Py_LOCAL_INLINE(Py_ssize_t) |
| 11 | stringlib_count(const STRINGLIB_CHAR* str, Py_ssize_t str_len, |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 12 | const STRINGLIB_CHAR* sub, Py_ssize_t sub_len, |
| 13 | Py_ssize_t maxcount) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 14 | { |
| 15 | Py_ssize_t count; |
| 16 | |
Amaury Forgeot d'Arc | f2e9368 | 2008-09-26 22:48:41 +0000 | [diff] [blame] | 17 | if (str_len < 0) |
| 18 | return 0; /* start > len(str) */ |
| 19 | if (sub_len == 0) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 20 | return (str_len < maxcount) ? str_len + 1 : maxcount; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 21 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 22 | count = fastsearch(str, str_len, sub, sub_len, maxcount, FAST_COUNT); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 23 | |
| 24 | if (count < 0) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 25 | return 0; /* no match */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 26 | |
| 27 | return count; |
| 28 | } |
| 29 | |
| 30 | #endif |