[mac] Fixed compilation issue with new MacOSX SDK - they removed WiFi scanning code starting from MacOS X 10.7

This commit is contained in:
Alex Zolotarev 2013-07-05 03:24:47 +03:00 committed by Alex Zolotarev
parent 5d7723e719
commit 4d9fb7de86
4 changed files with 2 additions and 113 deletions

View file

@ -80,7 +80,7 @@ namespace location
m_services.push_back(CreateAppleLocationService(*this));
#endif
#if defined(OMIM_OS_MAC) || defined(OMIM_OS_WINDOWS)
#if defined(OMIM_OS_WINDOWS)
m_services.push_back(CreateWiFiLocationService(*this));
#endif
}

View file

@ -30,7 +30,6 @@ INCLUDEPATH += $$ROOT_DIR/3party/jansson/src
wifi_info_windows.cpp
} else:macx* {
OBJECTIVE_SOURCES += platform_mac.mm \
wifi_info_mac.mm \
apple_video_timer.mm \
apple_location_service.mm
} else:linux* {

View file

@ -1,110 +0,0 @@
#include "../std/target_os.hpp"
#ifdef OMIM_OS_MAC
#include "wifi_info.hpp"
#include "../base/string_utils.hpp"
#import <Foundation/Foundation.h>
#import <CoreWLAN/CWInterface.h>
#import <CoreWLAN/CWNetwork.h>
static string AppendZeroIfNeeded(string const & macAddrPart)
{
string res(macAddrPart);
if (res.size() == 1)
res.insert(0, "0");
return res;
}
@interface WiFiInfoMac : NSObject {
@private
WiFiInfo::WifiRequestCallbackT m_callback;
vector<WiFiInfo::AccessPoint> m_accessPoints;
}
@end
//- (id)InitWithCallback:(WiFiInfo::WifiRequestCallbackT)callback;
@implementation WiFiInfoMac
- (id)InitWithCallback:(WiFiInfo::WifiRequestCallbackT)callback
{
self = [super init];
m_callback = callback;
[self performSelectorInBackground:@selector(WifiScanThread) withObject:nil];
return self;
}
- (void)dealloc
{
[super dealloc];
// NSLog(@"Mac OS WiFiInfo selfdestructed successfully");
}
/// Executed on main thread
- (void)NotifyGUI
{
m_callback(m_accessPoints);
// selfdestruct
[self release];
}
/// new background thread
- (void)WifiScanThread
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
m_accessPoints.clear();
// avoid crash on systems without wlan interfaces
NSArray * ifaces = [CWInterface supportedInterfaces];
if ([ifaces count])
{
CWInterface * iFace = [CWInterface interface];
NSArray * nets = [iFace scanForNetworksWithParameters:nil error:nil];
for (NSUInteger i = 0; i < [nets count]; ++i)
{
CWNetwork * net = (CWNetwork *)[nets objectAtIndex:i];
WiFiInfo::AccessPoint apn;
apn.m_ssid = [net.ssid UTF8String];
apn.m_signalStrength = strings::to_string([net.rssi intValue]);
// fix formatting for wifi address
string const rawBssid = [net.bssid UTF8String];
if (!rawBssid.empty())
{
strings::SimpleTokenizer tokIt(rawBssid, ":");
apn.m_bssid = AppendZeroIfNeeded(*tokIt);
do
{
++tokIt;
apn.m_bssid += "-";
apn.m_bssid += AppendZeroIfNeeded(*tokIt);
} while (!tokIt.IsLast());
}
m_accessPoints.push_back(apn);
}
}
[pool drain];
[self performSelectorOnMainThread:@selector(NotifyGUI) withObject:nil waitUntilDone:NO];
}
@end
/////////////////////////////////////////////////////////////////////////////
WiFiInfo::WiFiInfo()
{
}
WiFiInfo::~WiFiInfo()
{
}
void WiFiInfo::RequestWiFiBSSIDs(WifiRequestCallbackT callback)
{
// it will be self-destroyed when finished
[[WiFiInfoMac alloc] InitWithCallback:callback];
}
void WiFiInfo::Stop()
{
}
#endif

View file

@ -64,7 +64,7 @@ namespace location
}
else
LOG(LWARNING, ("Location server is not available"));
/// free memory
// free memory
delete &response;
}