This repository was archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathmodp_qsiter.c
76 lines (69 loc) · 1.93 KB
/
modp_qsiter.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* \file
* <pre>
* modp_qs.c query string key-value pair iterator
* https://github.com/client9/stringencoders
*
* Copyright © 2012-2016 Nick Galbreath
* All rights reserved.
* Released under MIT license. See LICENSE for details.
* </PRE>
*/
#include "modp_qsiter.h"
void qsiter_reset(struct qsiter_t* qsi, const char* s, size_t len)
{
qsi->s = s;
qsi->len = len;
qsi->pos = 0;
qsi->key = NULL;
qsi->keylen = 0;
qsi->val = NULL;
qsi->vallen = 0;
}
int qsiter_next(struct qsiter_t* qsi)
{
const char* eq;
const char* charstart;
const char* ends;
if (qsi->pos >= qsi->len) {
qsi->key = NULL;
qsi->keylen = 0;
qsi->val = NULL;
qsi->vallen = 0;
return 0;
}
charstart = qsi->s + qsi->pos;
ends = (const char*)memchr(charstart, '&', qsi->len - qsi->pos);
if (ends == NULL) {
eq = (const char*)memchr(charstart, '=', qsi->len - qsi->pos);
if (eq == NULL) {
qsi->key = charstart;
qsi->keylen = (size_t)(qsi->len - qsi->pos);
qsi->val = NULL;
qsi->vallen = (size_t)0;
} else {
qsi->key = charstart;
qsi->keylen = (size_t)(eq - charstart);
qsi->val = eq + 1;
qsi->vallen = (size_t)((qsi->s + qsi->len) - qsi->val);
}
qsi->pos = qsi->len;
return 1;
} else {
/* &&foo=bar */
eq = (const char*)memchr(charstart, '=', (size_t)(ends - charstart));
if (eq == NULL) {
qsi->key = charstart;
qsi->keylen = (size_t)(ends - charstart);
qsi->val = NULL;
qsi->vallen = (size_t)0;
} else {
qsi->key = charstart;
qsi->keylen = (size_t)(eq - charstart);
qsi->val = eq + 1;
qsi->vallen = (size_t)(ends - eq - 1);
}
qsi->pos = (size_t)((ends - qsi->s) + 1);
return 1;
}
}