Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
7654038d
Commit
7654038d
authored
Aug 09, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/UriQueryParser: new library
parent
e4612ecb
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
133 additions
and
0 deletions
+133
-0
UriQueryParser.cxx
src/util/UriQueryParser.cxx
+49
-0
UriQueryParser.hxx
src/util/UriQueryParser.hxx
+48
-0
meson.build
src/util/meson.build
+1
-0
TestUriQueryParser.cxx
test/TestUriQueryParser.cxx
+34
-0
meson.build
test/meson.build
+1
-0
No files found.
src/util/UriQueryParser.cxx
0 → 100644
View file @
7654038d
/*
* Copyright 2008-2019 Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "UriQueryParser.hxx"
#include "IterableSplitString.hxx"
StringView
UriFindRawQueryParameter
(
StringView
query_string
,
StringView
name
)
noexcept
{
for
(
StringView
i
:
IterableSplitString
(
query_string
,
'&'
))
{
if
(
i
.
StartsWith
(
name
))
{
if
(
i
.
size
==
name
.
size
)
return
""
;
if
(
i
[
name
.
size
]
==
'='
)
{
i
.
skip_front
(
name
.
size
+
1
);
return
i
;
}
}
}
return
nullptr
;
}
src/util/UriQueryParser.hxx
0 → 100644
View file @
7654038d
/*
* Copyright 2008-2019 Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef URI_QUERY_PARSER_HXX
#define URI_QUERY_PARSER_HXX
#include "Compiler.h"
struct
StringView
;
/**
* Find the first query parameter with the given name and return its
* raw value (without unescaping).
*
* @return the raw value (pointing into the #query_string parameter)
* or nullptr if the parameter does not exist
*/
gcc_pure
StringView
UriFindRawQueryParameter
(
StringView
query_string
,
StringView
name
)
noexcept
;
#endif
src/util/meson.build
View file @
7654038d
...
@@ -18,6 +18,7 @@ util = static_library(
...
@@ -18,6 +18,7 @@ util = static_library(
'FormatString.cxx',
'FormatString.cxx',
'Tokenizer.cxx',
'Tokenizer.cxx',
'UriExtract.cxx',
'UriExtract.cxx',
'UriQueryParser.cxx',
'UriRelative.cxx',
'UriRelative.cxx',
'UriUtil.cxx',
'UriUtil.cxx',
'LazyRandomEngine.cxx',
'LazyRandomEngine.cxx',
...
...
test/TestUriQueryParser.cxx
0 → 100644
View file @
7654038d
/*
* Unit tests for src/util/
*/
#include "util/UriQueryParser.hxx"
#include "util/StringView.hxx"
#include <gtest/gtest.h>
static
bool
operator
==
(
StringView
a
,
StringView
b
)
{
if
(
a
.
IsNull
()
||
b
.
IsNull
())
return
a
.
IsNull
()
==
b
.
IsNull
();
return
a
.
Equals
(
b
);
}
TEST
(
UriQueryParser
,
UriFindRawQueryParameter
)
{
const
char
*
q
=
"foo=1&bar=2"ed=%20%00+%%&empty1&empty2="
;
EXPECT_EQ
(
UriFindRawQueryParameter
(
q
,
"doesntexist"
),
(
const
char
*
)
nullptr
);
EXPECT_EQ
(
UriFindRawQueryParameter
(
q
,
"foo"
),
"1"
);
EXPECT_EQ
(
UriFindRawQueryParameter
(
q
,
"bar"
),
"2"
);
EXPECT_EQ
(
UriFindRawQueryParameter
(
q
,
"quoted"
),
"%20%00+%%"
);
EXPECT_EQ
(
UriFindRawQueryParameter
(
q
,
"empty1"
),
""
);
EXPECT_EQ
(
UriFindRawQueryParameter
(
q
,
"empty2"
),
""
);
}
test/meson.build
View file @
7654038d
...
@@ -38,6 +38,7 @@ test('TestUtil', executable(
...
@@ -38,6 +38,7 @@ test('TestUtil', executable(
'TestMimeType.cxx',
'TestMimeType.cxx',
'TestSplitString.cxx',
'TestSplitString.cxx',
'TestUriExtract.cxx',
'TestUriExtract.cxx',
'TestUriQueryParser.cxx',
'TestUriUtil.cxx',
'TestUriUtil.cxx',
'test_byte_reverse.cxx',
'test_byte_reverse.cxx',
include_directories: inc,
include_directories: inc,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment