[search] Add handling for negative case when using comma separators (#10105)
* Add handling for negative case when using comma separators * keeping it simple Signed-off-by: Colin Takushi <takushicolin@gmail.com>
This commit is contained in:
parent
082b36b541
commit
d8d95674ca
2 changed files with 39 additions and 1 deletions
|
@ -24,6 +24,11 @@ bool IsDecimalMark(char c)
|
|||
return kDecimalMarks.find(c) != string::npos;
|
||||
}
|
||||
|
||||
bool IsNegativeSymbol(char c)
|
||||
{
|
||||
return c == '-';
|
||||
}
|
||||
|
||||
template <typename Char>
|
||||
void SkipSpaces(Char *& s)
|
||||
{
|
||||
|
@ -99,6 +104,7 @@ double EatDouble(char const * str, char ** strEnd)
|
|||
bool gotDigitAfterMark = false;
|
||||
char const * markPos = nullptr;
|
||||
char const * p = str;
|
||||
double modifier = 1.0;
|
||||
while (true)
|
||||
{
|
||||
if (IsDecimalMark(*p))
|
||||
|
@ -115,6 +121,10 @@ double EatDouble(char const * str, char ** strEnd)
|
|||
else
|
||||
gotDigitBeforeMark = true;
|
||||
}
|
||||
else if (IsNegativeSymbol(*p))
|
||||
{
|
||||
modifier = -1.0;
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
|
@ -129,7 +139,7 @@ double EatDouble(char const * str, char ** strEnd)
|
|||
*strEnd = const_cast<char *>(p);
|
||||
auto const x1 = atof(part1.c_str());
|
||||
auto const x2 = atof(part2.c_str());
|
||||
return x1 + x2 * pow(10.0, -static_cast<double>(part2.size()));
|
||||
return x1 + x2 * modifier * pow(10.0, -static_cast<double>(part2.size()));
|
||||
}
|
||||
|
||||
return strtod(str, strEnd);
|
||||
|
|
|
@ -46,10 +46,38 @@ UNIT_TEST(LatLon_Match_Smoke)
|
|||
TestAlmostEqual(lat, 10.1);
|
||||
TestAlmostEqual(lon, 20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("-10,10, 20,20", lat, lon), ());
|
||||
TestAlmostEqual(lat, -10.1);
|
||||
TestAlmostEqual(lon, 20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("10,10, -20,20", lat, lon), ());
|
||||
TestAlmostEqual(lat, 10.1);
|
||||
TestAlmostEqual(lon, -20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("-10,10, -20,20", lat, lon), ());
|
||||
TestAlmostEqual(lat, -10.1);
|
||||
TestAlmostEqual(lon, -20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("-10,10 20,20", lat, lon), ());
|
||||
TestAlmostEqual(lat, -10.1);
|
||||
TestAlmostEqual(lon, 20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("10,10 -20,20", lat, lon), ());
|
||||
TestAlmostEqual(lat, 10.1);
|
||||
TestAlmostEqual(lon, -20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("-10,10 -20,20", lat, lon), ());
|
||||
TestAlmostEqual(lat, -10.1);
|
||||
TestAlmostEqual(lon, -20.2);
|
||||
|
||||
TEST(MatchLatLonDegree("-22.3534 -42.7076\n", lat, lon), ());
|
||||
TestAlmostEqual(lat, -22.3534);
|
||||
TestAlmostEqual(lon, -42.7076);
|
||||
|
||||
TEST(MatchLatLonDegree("-22,3534 -42,7076\n", lat, lon), ());
|
||||
TestAlmostEqual(lat, -22.3534);
|
||||
TestAlmostEqual(lon, -42.7076);
|
||||
|
||||
// The ".123" form is not accepted, so our best-effort
|
||||
// parse results in "10" and "20".
|
||||
TEST(MatchLatLonDegree(".10, ,20", lat, lon), ());
|
||||
|
|
Reference in a new issue