forked from organicmaps/organicmaps
This commit is contained in:
parent
fc21571694
commit
7e38deb1b5
3 changed files with 38 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
{
|
||||
SettingsManager * m_settingsManager;
|
||||
NSInteger m_standbyCounter;
|
||||
NSInteger m_activeDownloadsCounter;
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) IBOutlet UIWindow * m_window;
|
||||
|
@ -18,7 +19,11 @@
|
|||
+ (MapsAppDelegate *) theApp;
|
||||
|
||||
- (SettingsManager *)settingsManager;
|
||||
|
||||
- (void)disableStandby;
|
||||
- (void)enableStandby;
|
||||
|
||||
- (void)disableDownloadIndicator;
|
||||
- (void)enableDownloadIndicator;
|
||||
|
||||
@end
|
||||
|
|
|
@ -64,8 +64,27 @@
|
|||
- (void) enableStandby
|
||||
{
|
||||
--m_standbyCounter;
|
||||
if (m_standbyCounter == 0)
|
||||
if (m_standbyCounter <= 0)
|
||||
{
|
||||
[UIApplication sharedApplication].idleTimerDisabled = NO;
|
||||
m_standbyCounter = 0;
|
||||
}
|
||||
}
|
||||
|
||||
- (void) disableDownloadIndicator
|
||||
{
|
||||
--m_activeDownloadsCounter;
|
||||
if (m_activeDownloadsCounter <= 0)
|
||||
{
|
||||
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
|
||||
m_activeDownloadsCounter = 0;
|
||||
}
|
||||
}
|
||||
|
||||
- (void) enableDownloadIndicator
|
||||
{
|
||||
++m_activeDownloadsCounter;
|
||||
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
|
||||
}
|
||||
|
||||
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
|
||||
#include "../base/logging.hpp"
|
||||
|
||||
#ifdef OMIM_OS_IPHONE
|
||||
#include "../iphone/Maps/Classes/MapsAppDelegate.h"
|
||||
#endif
|
||||
|
||||
#define TIMEOUT_IN_SECONDS 15.0
|
||||
|
||||
@implementation HttpThread
|
||||
|
@ -14,6 +18,10 @@
|
|||
LOG(LDEBUG, ("ID:", [self hash], "Connection is destroyed"));
|
||||
[m_connection cancel];
|
||||
[m_connection release];
|
||||
#ifdef OMIM_OS_IPHONE
|
||||
[[MapsAppDelegate theApp] enableStandby];
|
||||
[[MapsAppDelegate theApp] disableDownloadIndicator];
|
||||
#endif
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
|
@ -69,6 +77,11 @@
|
|||
[request addValue:[NSString stringWithUTF8String: uid.c_str()] forHTTPHeaderField:@"User-Agent"];
|
||||
}
|
||||
|
||||
#ifdef OMIM_OS_IPHONE
|
||||
[[MapsAppDelegate theApp] disableStandby];
|
||||
[[MapsAppDelegate theApp] enableDownloadIndicator];
|
||||
#endif
|
||||
|
||||
// create the connection with the request and start loading the data
|
||||
m_connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue