From bcc5f548840045607053ca5504a78d725596ce92 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Fri, 31 Jul 2015 16:32:52 +0300 Subject: [PATCH] git-clang-format --- platform/get_text_by_id.cpp | 6 +- .../routing_tests/turns_tts_text_tests.cpp | 30 ++--- routing/turns_sound_settings.cpp | 90 +++++++------ routing/turns_sound_settings.hpp | 3 +- routing/turns_tts_text.cpp | 118 +++++++++--------- routing/turns_tts_text.hpp | 6 +- 6 files changed, 122 insertions(+), 131 deletions(-) diff --git a/platform/get_text_by_id.cpp b/platform/get_text_by_id.cpp index d2c8f028a2..18d84b75dd 100644 --- a/platform/get_text_by_id.cpp +++ b/platform/get_text_by_id.cpp @@ -9,7 +9,6 @@ #include "std/target_os.hpp" - namespace { string GetTextSourceString(platform::TextSource textSouce) @@ -45,10 +44,7 @@ GetTextById::GetTextById(TextSource textSouce, string const & localeName) InitFromJson(jsonBuffer); } -GetTextById::GetTextById(string const & jsonBuffer) -{ - InitFromJson(jsonBuffer); -} +GetTextById::GetTextById(string const & jsonBuffer) { InitFromJson(jsonBuffer); } void GetTextById::InitFromJson(string const & jsonBuffer) { diff --git a/routing/routing_tests/turns_tts_text_tests.cpp b/routing/routing_tests/turns_tts_text_tests.cpp index 054e41693f..d123089291 100644 --- a/routing/routing_tests/turns_tts_text_tests.cpp +++ b/routing/routing_tests/turns_tts_text_tests.cpp @@ -5,7 +5,6 @@ #include "std/string.hpp" - namespace { using namespace routing::turns; @@ -13,7 +12,7 @@ using namespace routing::turns::sound; UNIT_TEST(GetDistanceTextIdMetersTest) { - //Notification(uint32_t distanceUnits, uint8_t exitNum, bool useThenInsteadOfDistance, + // Notification(uint32_t distanceUnits, uint8_t exitNum, bool useThenInsteadOfDistance, // TurnDirection turnDir, LengthUnits lengthUnits) Notification const notifiation1(500, 0, false, TurnDirection::TurnRight, LengthUnits::Meters); TEST_EQUAL(GetDistanceTextId(notifiation1), "in_500_meters", ()); @@ -49,7 +48,8 @@ UNIT_TEST(GetDirectionTextIdTest) UNIT_TEST(GetTtsTextTest) { - string const engShortJson = "\ + string const engShortJson = + "\ {\ \"in_300_meters\":\"In 300 meters.\",\ \"in_500_meters\":\"In 500 meters.\",\ @@ -59,7 +59,8 @@ UNIT_TEST(GetTtsTextTest) \"you_have_reached_the_destination\":\"You have reached the destination.\"\ }"; - string const rusShortJson = "\ + string const rusShortJson = + "\ {\ \"in_300_meters\":\"Через 300 метров.\",\ \"in_500_meters\":\"Через 500 метров.\",\ @@ -70,7 +71,7 @@ UNIT_TEST(GetTtsTextTest) }"; GetTtsText getTtsText; - //Notification(uint32_t distanceUnits, uint8_t exitNum, bool useThenInsteadOfDistance, + // Notification(uint32_t distanceUnits, uint8_t exitNum, bool useThenInsteadOfDistance, // TurnDirection turnDir, LengthUnits lengthUnits) Notification const notifiation1(500, 0, false, TurnDirection::TurnRight, LengthUnits::Meters); Notification const notifiation2(300, 0, false, TurnDirection::TurnLeft, LengthUnits::Meters); @@ -102,11 +103,11 @@ UNIT_TEST(GetAllSoundedDistMetersTest) }), ()); TEST_EQUAL(allSoundedDistMeters.size(), 17, ()); - PairDist const expected1 = { 50, "in_50_meters" }; + PairDist const expected1 = {50, "in_50_meters"}; TEST_EQUAL(allSoundedDistMeters[0], expected1, ()); - PairDist const expected2 = { 700, "in_700_meters" }; + PairDist const expected2 = {700, "in_700_meters"}; TEST_EQUAL(allSoundedDistMeters[8], expected2, ()); - PairDist const expected3 = { 3000, "in_3_kilometers" }; + PairDist const expected3 = {3000, "in_3_kilometers"}; TEST_EQUAL(allSoundedDistMeters[16], expected3, ()); } @@ -121,11 +122,11 @@ UNIT_TEST(GetAllSoundedDistFeet) }), ()); TEST_EQUAL(allSoundedDistFeet.size(), 22, ()); - PairDist const expected1 = { 50, "in_50_feet" }; + PairDist const expected1 = {50, "in_50_feet"}; TEST_EQUAL(allSoundedDistFeet[0], expected1, ()); - PairDist const expected2 = { 700, "in_700_feet" }; + PairDist const expected2 = {700, "in_700_feet"}; TEST_EQUAL(allSoundedDistFeet[7], expected2, ()); - PairDist const expected3 = { 10560, "in_2_miles" }; + PairDist const expected3 = {10560, "in_2_miles"}; TEST_EQUAL(allSoundedDistFeet[21], expected3, ()); } @@ -156,9 +157,8 @@ UNIT_TEST(GetSoundedDistFeet) TEST(is_sorted(soundedDistFeet.cbegin(), soundedDistFeet.cend()), ()); // Checking that allSounded contains any element of inst. - TEST(find_first_of(soundedDistFeet.cbegin(), soundedDistFeet.cend(), - allSoundedDistFeet.cbegin(), allSoundedDistFeet.cend(), - [](uint32_t p1, PairDist const & p2) + TEST(find_first_of(soundedDistFeet.cbegin(), soundedDistFeet.cend(), allSoundedDistFeet.cbegin(), + allSoundedDistFeet.cend(), [](uint32_t p1, PairDist const & p2) { return p1 == p2.first; }) != soundedDistFeet.cend(), ()); @@ -168,4 +168,4 @@ UNIT_TEST(GetSoundedDistFeet) TEST_EQUAL(soundedDistFeet[7], 2000, ()); TEST_EQUAL(soundedDistFeet[10], 5000, ()); } -} // namespace +} // namespace diff --git a/routing/turns_sound_settings.cpp b/routing/turns_sound_settings.cpp index 5acbf8b384..1cd5bc7c58 100644 --- a/routing/turns_sound_settings.cpp +++ b/routing/turns_sound_settings.cpp @@ -6,7 +6,6 @@ #include "std/algorithm.hpp" - namespace routing { namespace turns @@ -110,57 +109,51 @@ string DebugPrint(Notification const & notification) VecPairDist const & GetAllSoundedDistMeters() { // The vector below has to be sorted. It is checked in unit test GetAllSoundedDistMetersTest - static VecPairDist const inst = - { - { 50, "in_50_meters" }, - { 100, "in_100_meters" }, - { 200, "in_200_meters" }, - { 250, "in_250_meters" }, - { 300, "in_300_meters" }, - { 400, "in_400_meters" }, - { 500, "in_500_meters" }, - { 600, "in_600_meters" }, - { 700, "in_700_meters" }, - { 750, "in_750_meters" }, - { 800, "in_800_meters" }, - { 900, "in_900_meters" }, - { 1000, "in_1_kilometer" }, - { 1500, "in_1_5_kilometers" }, - { 2000, "in_2_kilometers" }, - { 2500, "in_2_5_kilometers" }, - { 3000, "in_3_kilometers" } - }; + static VecPairDist const inst = {{50, "in_50_meters"}, + {100, "in_100_meters"}, + {200, "in_200_meters"}, + {250, "in_250_meters"}, + {300, "in_300_meters"}, + {400, "in_400_meters"}, + {500, "in_500_meters"}, + {600, "in_600_meters"}, + {700, "in_700_meters"}, + {750, "in_750_meters"}, + {800, "in_800_meters"}, + {900, "in_900_meters"}, + {1000, "in_1_kilometer"}, + {1500, "in_1_5_kilometers"}, + {2000, "in_2_kilometers"}, + {2500, "in_2_5_kilometers"}, + {3000, "in_3_kilometers"}}; return inst; } VecPairDist const & GetAllSoundedDistFeet() { // The vector below has to be sorted. It is checked in unit test GetAllSoundedDistFeet - static VecPairDist const inst = - { - { 50, "in_50_feet" }, - { 100, "in_100_feet" }, - { 200, "in_200_feet" }, - { 300, "in_300_feet" }, - { 400, "in_400_feet" }, - { 500, "in_500_feet" }, - { 600, "in_600_feet" }, - { 700, "in_700_feet" }, - { 800, "in_800_feet" }, - { 900, "in_900_feet" }, - { 1000, "in_1000_feet" }, - { 1500, "in_1500_feet" }, - { 2000, "in_2000_feet" }, - { 2500, "in_2500_feet" }, - { 3000, "in_3000_feet" }, - { 3500, "in_3500_feet" }, - { 4000, "in_4000_feet" }, - { 4500, "in_4500_feet" }, - { 5000, "in_5000_feet" }, - { 5280, "in_1_mile" }, - { 7920, "in_1_5_miles" }, - { 10560, "in_2_miles" } - }; + static VecPairDist const inst = {{50, "in_50_feet"}, + {100, "in_100_feet"}, + {200, "in_200_feet"}, + {300, "in_300_feet"}, + {400, "in_400_feet"}, + {500, "in_500_feet"}, + {600, "in_600_feet"}, + {700, "in_700_feet"}, + {800, "in_800_feet"}, + {900, "in_900_feet"}, + {1000, "in_1000_feet"}, + {1500, "in_1500_feet"}, + {2000, "in_2000_feet"}, + {2500, "in_2500_feet"}, + {3000, "in_3000_feet"}, + {3500, "in_3500_feet"}, + {4000, "in_4000_feet"}, + {4500, "in_4500_feet"}, + {5000, "in_5000_feet"}, + {5280, "in_1_mile"}, + {7920, "in_1_5_miles"}, + {10560, "in_2_miles"}}; return inst; } @@ -169,7 +162,7 @@ vector const & GetSoundedDistMeters() // The vector has to be sorted. Besides that any of its elements has to be contained in // the vector which GetAllSoundedDistMeters() returns. // It is checked in the unit test GetSoundedDistMeters. - static vector const inst = { 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1500, 2000 }; + static vector const inst = {200, 300, 400, 500, 600, 700, 800, 900, 1000, 1500, 2000}; return inst; } @@ -178,7 +171,8 @@ vector const & GetSoundedDistFeet() // The vector has to be sorted. Besides that any of its elements has to be contained in // the vector which GetAllSoundedDistFeet() returns. // It is checked in the unit test GetSoundedDistFeet. - static vector const inst = { 500, 600, 700, 800, 900, 1000, 1500, 2000, 3000, 4000, 5000 }; + static vector const inst = {500, 600, 700, 800, 900, 1000, + 1500, 2000, 3000, 4000, 5000}; return inst; } } // namespace sound diff --git a/routing/turns_sound_settings.hpp b/routing/turns_sound_settings.hpp index f003911608..42df7c6ff5 100644 --- a/routing/turns_sound_settings.hpp +++ b/routing/turns_sound_settings.hpp @@ -120,7 +120,8 @@ VecPairDist const & GetAllSoundedDistFeet(); // returns more distances. // After the tuning of turn sound notification is finished to do // * remove all unnecessary distances from GetAllSoundedDistMeters/Feet(). -// * remove all unnecessary string form resources. It let us to reduce the size of apk/ipa by 10-20KB. +// * remove all unnecessary string form resources. It let us to reduce the size of apk/ipa by +// 10-20KB. // * remove GetSoundedDistMeters/Feet() and use lambda in TurnsSound::SetLengthUnits // to convert from vector> to vector. diff --git a/routing/turns_tts_text.cpp b/routing/turns_tts_text.cpp index 95f7936b6d..ecfae482bf 100644 --- a/routing/turns_tts_text.cpp +++ b/routing/turns_tts_text.cpp @@ -5,25 +5,25 @@ #include "std/string.hpp" #include "std/utility.hpp" - namespace { - using namespace routing::turns::sound; - string DistToTextId(VecPairDist::const_iterator begin, VecPairDist::const_iterator end, uint32_t dist) +using namespace routing::turns::sound; +string DistToTextId(VecPairDist::const_iterator begin, VecPairDist::const_iterator end, + uint32_t dist) +{ + VecPairDist::const_iterator distToSound = + lower_bound(begin, end, dist, [](PairDist const & p1, uint32_t p2) + { + return p1.first < p2; + }); + if (distToSound == end) { - VecPairDist::const_iterator distToSound = - lower_bound(begin, end, dist, [](PairDist const & p1, uint32_t p2) - { - return p1.first < p2; - }); - if (distToSound == end) - { - ASSERT(false, ("notification.m_distanceUnits is not correct.")); - return ""; - } - return distToSound->second; + ASSERT(false, ("notification.m_distanceUnits is not correct.")); + return ""; } -} // namespace + return distToSound->second; +} +} // namespace namespace routing { @@ -49,7 +49,7 @@ string GetTtsText::operator()(Notification const & notification) const return GetTextById(GetDirectionTextId(notification)); return GetTextById(GetDistanceTextId(notification)) + " " + - GetTextById(GetDirectionTextId(notification)); + GetTextById(GetDirectionTextId(notification)); } string GetTtsText::GetTextById(string const & textId) const @@ -75,17 +75,17 @@ string GetDistanceTextId(Notification const & notification) if (notification.m_useThenInsteadOfDistance) return "then"; - switch(notification.m_lengthUnits) + switch (notification.m_lengthUnits) { - case LengthUnits::Undefined: - ASSERT(false, ()); - return ""; - case LengthUnits::Meters: - return DistToTextId(GetAllSoundedDistMeters().cbegin(), GetAllSoundedDistMeters().cend(), - notification.m_distanceUnits); - case LengthUnits::Feet: - return DistToTextId(GetAllSoundedDistFeet().cbegin(), GetAllSoundedDistFeet().cend(), - notification.m_distanceUnits); + case LengthUnits::Undefined: + ASSERT(false, ()); + return ""; + case LengthUnits::Meters: + return DistToTextId(GetAllSoundedDistMeters().cbegin(), GetAllSoundedDistMeters().cend(), + notification.m_distanceUnits); + case LengthUnits::Feet: + return DistToTextId(GetAllSoundedDistFeet().cbegin(), GetAllSoundedDistFeet().cend(), + notification.m_distanceUnits); } ASSERT(false, ()); return ""; @@ -93,41 +93,41 @@ string GetDistanceTextId(Notification const & notification) string GetDirectionTextId(Notification const & notification) { - switch(notification.m_turnDir) + switch (notification.m_turnDir) { - case TurnDirection::GoStraight: - return "go_straight"; - case TurnDirection::TurnRight: - return "make_a_right_turn"; - case TurnDirection::TurnSharpRight: - return "make_a_sharp_right_turn"; - case TurnDirection::TurnSlightRight: - return "make_a_slight_right_turn"; - case TurnDirection::TurnLeft: - return "make_a_left_turn"; - case TurnDirection::TurnSharpLeft: - return "make_a_sharp_left_turn"; - case TurnDirection::TurnSlightLeft: - return "make_a_slight_left_turn"; - case TurnDirection::UTurn: - return "make_a_u_turn"; - case TurnDirection::EnterRoundAbout: - return "enter_the_roundabout"; - case TurnDirection::LeaveRoundAbout: - return "leave_the_roundabout"; - case TurnDirection::ReachedYourDestination: - return "you_have_reached_the_destination"; - case TurnDirection::StayOnRoundAbout: - case TurnDirection::StartAtEndOfStreet: - case TurnDirection::TakeTheExit: - case TurnDirection::NoTurn: - case TurnDirection::Count: - ASSERT(false, ()); - return ""; + case TurnDirection::GoStraight: + return "go_straight"; + case TurnDirection::TurnRight: + return "make_a_right_turn"; + case TurnDirection::TurnSharpRight: + return "make_a_sharp_right_turn"; + case TurnDirection::TurnSlightRight: + return "make_a_slight_right_turn"; + case TurnDirection::TurnLeft: + return "make_a_left_turn"; + case TurnDirection::TurnSharpLeft: + return "make_a_sharp_left_turn"; + case TurnDirection::TurnSlightLeft: + return "make_a_slight_left_turn"; + case TurnDirection::UTurn: + return "make_a_u_turn"; + case TurnDirection::EnterRoundAbout: + return "enter_the_roundabout"; + case TurnDirection::LeaveRoundAbout: + return "leave_the_roundabout"; + case TurnDirection::ReachedYourDestination: + return "you_have_reached_the_destination"; + case TurnDirection::StayOnRoundAbout: + case TurnDirection::StartAtEndOfStreet: + case TurnDirection::TakeTheExit: + case TurnDirection::NoTurn: + case TurnDirection::Count: + ASSERT(false, ()); + return ""; } ASSERT(false, ()); return ""; } -} // namespace sound -} // namespace turns -} // namespace routing +} // namespace sound +} // namespace turns +} // namespace routing diff --git a/routing/turns_tts_text.hpp b/routing/turns_tts_text.hpp index e83cc4e834..48666cd090 100644 --- a/routing/turns_tts_text.hpp +++ b/routing/turns_tts_text.hpp @@ -5,7 +5,6 @@ #include "std/string.hpp" #include "std/unique_ptr.hpp" - namespace routing { namespace turns @@ -34,8 +33,9 @@ private: /// Generates text message id about the distance of the notification. For example: In 300 meters. string GetDistanceTextId(Notification const & notification); -/// Generates text message id about the direction of the notification. For example: Make a right turn. +/// Generates text message id about the direction of the notification. For example: Make a right +/// turn. string GetDirectionTextId(Notification const & notification); -} // namespace sound +} // namespace sound } // namespace turns } // namespace routing