Review fixes.

This commit is contained in:
Maxim Pimenov 2020-01-31 15:21:20 +03:00 committed by Arsentiy Milchakov
parent 0263d9cefd
commit 6b32cab458
3 changed files with 19 additions and 14 deletions

View file

@ -175,8 +175,7 @@ UNIT_TEST(ProcessURL_GoogleMaps)
UNIT_TEST(UriValidScheme)
{
char const uriS[] = "mapswithme://map?ll=10.3,12.3223&n=Hello%20World";
Uri uri(uriS, ARRAY_SIZE(uriS) - 1);
Uri uri("mapswithme://map?ll=10.3,12.3223&n=Hello%20World");
TEST_EQUAL(uri.GetScheme(), "mapswithme", ());
}

View file

@ -90,18 +90,24 @@ private:
void operator()(string const & token) const
{
double lat, lon;
double lat;
double lon;
string::size_type n = token.find(',');
ASSERT(n != string::npos, ());
if (n == string::npos)
return;
VERIFY(strings::to_double(token.substr(0, n), lat), ());
n = token.find_first_not_of(", ", n);
ASSERT(n != string::npos, ());
if (n == string::npos)
return;
VERIFY(strings::to_double(token.substr(n, token.size() - n), lon), ());
if (m_parser.m_info.SetLat(lat) && m_parser.m_info.SetLon(lon))
m_parser.m_latPriority = m_parser.m_lonPriority = m_priority;
{
m_parser.m_latPriority = m_priority;
m_parser.m_lonPriority = m_priority;
}
}
private:
@ -142,7 +148,7 @@ private:
namespace coding::url
{
void Uri::Init()
Uri::Uri(std::string const & uri) : m_url(uri)
{
if (!Parse())
{
@ -153,14 +159,16 @@ void Uri::Init()
bool Uri::Parse()
{
// get url scheme
// Get url scheme.
size_t pathStart = m_url.find(':');
if (pathStart == string::npos || pathStart == 0)
return false;
m_scheme.assign(m_url, 0, pathStart);
// skip slashes
while (++pathStart < m_url.size() && m_url[pathStart] == '/') {}
// Skip slashes.
while (++pathStart < m_url.size() && m_url[pathStart] == '/')
{
}
// Find query starting point for (key, value) parsing.
m_queryStart = m_url.find('?', pathStart);
@ -184,7 +192,7 @@ bool Uri::Parse()
bool Uri::ForEachKeyValue(Callback const & callback) const
{
// parse query for keys and values
// Parse query for keys and values.
size_t const count = m_url.size();
size_t const queryStart = m_queryStart;

View file

@ -13,8 +13,7 @@ class Uri
public:
using Callback = std::function<bool(std::string const &, std::string const &)>;
explicit Uri(std::string const & uri) : m_url(uri) { Init(); }
Uri(char const * uri, size_t size) : m_url(uri, uri + size) { Init(); }
explicit Uri(std::string const & uri);
std::string const & GetScheme() const { return m_scheme; }
std::string const & GetPath() const { return m_path; }
@ -22,7 +21,6 @@ public:
bool ForEachKeyValue(Callback const & callback) const;
private:
void Init();
bool Parse();
std::string m_url;