diff --git a/iphone/Maps/Platform/IPhonePlatform.hpp b/iphone/Maps/Platform/IPhonePlatform.hpp index bdb486e5af..091cc21922 100644 --- a/iphone/Maps/Platform/IPhonePlatform.hpp +++ b/iphone/Maps/Platform/IPhonePlatform.hpp @@ -22,8 +22,10 @@ public: virtual double PeriodicalUpdateInterval() const; virtual vector GetFontNames() const; virtual bool IsBenchmarking() const; - + virtual string const DeviceID() const; + private: + string m_deviceID; string m_skinName; double m_visualScale; NSDate * m_StartDate; diff --git a/iphone/Maps/Platform/IPhonePlatform.mm b/iphone/Maps/Platform/IPhonePlatform.mm index ba852d3d13..0037b9e720 100644 --- a/iphone/Maps/Platform/IPhonePlatform.mm +++ b/iphone/Maps/Platform/IPhonePlatform.mm @@ -36,18 +36,23 @@ IPhonePlatform::IPhonePlatform() /// Calculating resolution UIDevice * device = [UIDevice currentDevice]; - + NSRange range = [device.name rangeOfString:@"iPad"]; if (range.location != NSNotFound) + { + m_deviceID = "iPad"; m_visualScale = 1.3; + } else { range = [device.name rangeOfString:@"iPod"]; float ver = [device.systemVersion floatValue]; if (ver >= 3.1999) { + m_deviceID = "iPod"; UIScreen * mainScr = [UIScreen mainScreen]; if (mainScr.currentMode.size.width == 640) { + m_deviceID = "iPod"; m_visualScale = 2.0; m_isMultiSampled = false; m_skinName = "basic_highres.skn"; @@ -57,7 +62,6 @@ IPhonePlatform::IPhonePlatform() NSLog(@"Device Name : %@, SystemName : %@, SystemVersion : %@", device.name, device.systemName, device.systemVersion); - [pool release]; } @@ -194,6 +198,11 @@ bool IPhonePlatform::IsBenchmarking() const return false; } +string const IPhonePlatform::DeviceID() const +{ + return m_deviceID; +} + Platform & GetPlatform() { static IPhonePlatform platform; diff --git a/map/information_display.cpp b/map/information_display.cpp index c105a77fb3..a6c95d4d04 100644 --- a/map/information_display.cpp +++ b/map/information_display.cpp @@ -4,10 +4,13 @@ #include "drawer_yg.hpp" #include "../indexer/mercator.hpp" -#include "../base/string_utils.hpp" #include "../yg/defines.hpp" #include "../yg/skin.hpp" +#include "../std/fstream.hpp" +#include "../version/version.hpp" + +#include "../base/string_utils.hpp" #include "../base/logging.hpp" InformationDisplay::InformationDisplay() @@ -416,6 +419,17 @@ bool InformationDisplay::addBenchmarkInfo(string const & name, m2::RectD const & info.m_duration = frameDuration; info.m_rect = globalRect; m_benchmarkInfo.push_back(info); + + ofstream fout(GetPlatform().WritablePathForFile("benchmark_results.txt").c_str(), ios::app); + fout << GetPlatform().DeviceID() << " " + << VERSION_STRING << " " + << info.m_name << " " + << info.m_rect.minX() << " " + << info.m_rect.minY() << " " + << info.m_rect.maxX() << " " + << info.m_rect.maxY() << " " + << info.m_duration << endl; + return true; } return false; diff --git a/platform/platform.hpp b/platform/platform.hpp index 485cabda7e..3854eb3799 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -72,6 +72,8 @@ public: virtual vector GetFontNames() const = 0; virtual bool IsBenchmarking() const = 0; + + virtual string const DeviceID() const = 0; }; extern "C" Platform & GetPlatform(); diff --git a/platform/qtplatform.cpp b/platform/qtplatform.cpp index 6b9e8010a0..cc19571675 100644 --- a/platform/qtplatform.cpp +++ b/platform/qtplatform.cpp @@ -382,7 +382,12 @@ public: bool IsBenchmarking() const { - return false; + return true; + } + + string const DeviceID() const + { + return "DesktopVersion"; } }; diff --git a/std/fstream.hpp b/std/fstream.hpp index 12cca38273..44b8929274 100644 --- a/std/fstream.hpp +++ b/std/fstream.hpp @@ -16,6 +16,7 @@ using std::ofstream; using std::ostream; using std::ifstream; using std::istream; +using std::ios; #ifdef DEBUG_NEW #define new DEBUG_NEW