зеркало из https://github.com/mozilla/gecko-dev.git
Bug 778235 - Add support for Gonk to NetworkGeolocationProvider.js. r=jdm
This commit is contained in:
Родитель
532b77008f
Коммит
45ec4490ce
|
@ -4321,7 +4321,11 @@ case "${target}" in
|
|||
fi
|
||||
|
||||
NSS_DISABLE_DBM=1
|
||||
NECKO_WIFI=
|
||||
if test -z "$gonkdir"; then
|
||||
NECKO_WIFI=
|
||||
else
|
||||
NECKO_WIFI=1
|
||||
fi
|
||||
MOZ_THEME_FASTSTRIPE=1
|
||||
MOZ_TREE_FREETYPE=1
|
||||
MOZ_MEMORY=1
|
||||
|
|
|
@ -60,6 +60,13 @@ EXTRA_COMPONENTS = \
|
|||
$(NULL)
|
||||
endif
|
||||
|
||||
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
||||
EXTRA_COMPONENTS = \
|
||||
NetworkGeolocationProvider.js \
|
||||
NetworkGeolocationProvider.manifest \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
EXPORTS_NAMESPACES = mozilla
|
||||
|
||||
EXPORTS = \
|
||||
|
|
|
@ -28,10 +28,13 @@ XPIDLSRCS = \
|
|||
nsIWifiMonitor.idl \
|
||||
$(NULL)
|
||||
|
||||
CPPSRCS = \
|
||||
nsWifiMonitor.cpp \
|
||||
nsWifiAccessPoint.cpp \
|
||||
$(NULL)
|
||||
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
||||
CPPSRCS += nsWifiMonitorGonk.cpp
|
||||
else
|
||||
CPPSRCS += nsWifiMonitor.cpp
|
||||
endif
|
||||
|
||||
CPPSRCS += nsWifiAccessPoint.cpp
|
||||
|
||||
ifeq ($(OS_ARCH),Darwin)
|
||||
CPPSRCS += nsWifiScannerMac.cpp
|
||||
|
|
|
@ -31,6 +31,11 @@ public:
|
|||
mSignal = signal;
|
||||
}
|
||||
|
||||
void setMacRaw(const char* aString)
|
||||
{
|
||||
memcpy(mMac, aString, mozilla::ArrayLength(mMac));
|
||||
}
|
||||
|
||||
void setMac(const unsigned char mac_as_int[6])
|
||||
{
|
||||
// mac_as_int is big-endian. Write in byte chunks.
|
||||
|
@ -50,6 +55,11 @@ public:
|
|||
mMac[17] = 0;
|
||||
}
|
||||
|
||||
void setSSIDRaw(const char* aSSID, unsigned long len) {
|
||||
memcpy(mSsid, aSSID, mozilla::ArrayLength(mSsid));
|
||||
mSsidLen = PR_MIN(len, mozilla::ArrayLength(mSsid));
|
||||
}
|
||||
|
||||
void setSSID(const char* aSSID, unsigned long len) {
|
||||
if (aSSID && (len < sizeof(mSsid))) {
|
||||
strncpy(mSsid, aSSID, len);
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#ifndef __nsWifiMonitor__
|
||||
#define __nsWifiMonitor__
|
||||
|
||||
#include "nsIWifiMonitor.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsAutoPtr.h"
|
||||
|
@ -13,10 +16,9 @@
|
|||
#include "prlog.h"
|
||||
#include "nsIObserver.h"
|
||||
#include "nsTArray.h"
|
||||
#include "nsITimer.h"
|
||||
#include "mozilla/Attributes.h"
|
||||
|
||||
#ifndef __nsWifiMonitor__
|
||||
#define __nsWifiMonitor__
|
||||
#include "nsIInterfaceRequestor.h"
|
||||
|
||||
#if defined(PR_LOGGING)
|
||||
extern PRLogModuleInfo *gWifiMonitorLog;
|
||||
|
@ -40,6 +42,7 @@ class nsWifiListener
|
|||
bool mHasSentData;
|
||||
};
|
||||
|
||||
#ifndef MOZ_WIDGET_GONK
|
||||
class nsWifiMonitor MOZ_FINAL : nsIRunnable, nsIWifiMonitor, nsIObserver
|
||||
{
|
||||
public:
|
||||
|
@ -66,5 +69,31 @@ class nsWifiMonitor MOZ_FINAL : nsIRunnable, nsIWifiMonitor, nsIObserver
|
|||
mozilla::ReentrantMonitor mReentrantMonitor;
|
||||
|
||||
};
|
||||
#else
|
||||
#include "nsIWifi.h"
|
||||
class nsWifiMonitor MOZ_FINAL : nsIWifiMonitor, nsIWifiScanResultsReady, nsIObserver
|
||||
{
|
||||
public:
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSIWIFIMONITOR
|
||||
NS_DECL_NSIOBSERVER
|
||||
NS_DECL_NSIWIFISCANRESULTSREADY
|
||||
|
||||
nsWifiMonitor();
|
||||
|
||||
private:
|
||||
~nsWifiMonitor();
|
||||
|
||||
void ClearTimer() {
|
||||
if (mTimer) {
|
||||
mTimer->Cancel();
|
||||
mTimer = nullptr;
|
||||
}
|
||||
}
|
||||
nsCOMArray<nsWifiAccessPoint> mLastAccessPoints;
|
||||
nsTArray<nsWifiListener> mListeners;
|
||||
nsCOMPtr<nsITimer> mTimer;
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -0,0 +1,182 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsComponentManagerUtils.h"
|
||||
#include "nsServiceManagerUtils.h"
|
||||
#include "nsThreadUtils.h"
|
||||
#include "nsXPCOM.h"
|
||||
#include "nsXPCOMCID.h"
|
||||
#include "nsIObserver.h"
|
||||
#include "nsIObserverService.h"
|
||||
#include "nsWifiMonitor.h"
|
||||
#include "nsWifiAccessPoint.h"
|
||||
|
||||
#include "nsServiceManagerUtils.h"
|
||||
#include "nsComponentManagerUtils.h"
|
||||
#include "mozilla/Services.h"
|
||||
|
||||
#include "nsIInterfaceRequestor.h"
|
||||
#include "nsIInterfaceRequestorUtils.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
#if defined(PR_LOGGING)
|
||||
PRLogModuleInfo *gWifiMonitorLog;
|
||||
#endif
|
||||
|
||||
NS_IMPL_ISUPPORTS3(nsWifiMonitor,
|
||||
nsIWifiMonitor,
|
||||
nsIObserver,
|
||||
nsIWifiScanResultsReady)
|
||||
|
||||
nsWifiMonitor::nsWifiMonitor()
|
||||
{
|
||||
#if defined(PR_LOGGING)
|
||||
gWifiMonitorLog = PR_NewLogModule("WifiMonitor");
|
||||
#endif
|
||||
|
||||
nsCOMPtr<nsIObserverService> obsSvc = mozilla::services::GetObserverService();
|
||||
if (obsSvc) {
|
||||
obsSvc->AddObserver(this, "xpcom-shutdown", false);
|
||||
}
|
||||
LOG(("@@@@@ wifimonitor created\n"));
|
||||
}
|
||||
|
||||
nsWifiMonitor::~nsWifiMonitor()
|
||||
{
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWifiMonitor::StartWatching(nsIWifiListener *aListener)
|
||||
{
|
||||
LOG(("@@@@@ nsWifiMonitor::StartWatching\n"));
|
||||
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
||||
if (!aListener) {
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
}
|
||||
|
||||
mListeners.AppendElement(nsWifiListener(aListener));
|
||||
|
||||
if (!mTimer) {
|
||||
mTimer = do_CreateInstance("@mozilla.org/timer;1");
|
||||
mTimer->Init(this, 5000, nsITimer::TYPE_REPEATING_SLACK);
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWifiMonitor::StopWatching(nsIWifiListener *aListener)
|
||||
{
|
||||
LOG(("@@@@@ nsWifiMonitor::StopWatching\n"));
|
||||
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
||||
if (!aListener) {
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
}
|
||||
|
||||
for (uint32_t i = 0; i < mListeners.Length(); i++) {
|
||||
if (mListeners[i].mListener == aListener) {
|
||||
mListeners.RemoveElementAt(i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (mListeners.Length() == 0) {
|
||||
ClearTimer();
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWifiMonitor::Observe(nsISupports *subject, const char *topic,
|
||||
const PRUnichar *data)
|
||||
{
|
||||
if (!strcmp(topic, "timer-callback")) {
|
||||
LOG(("timer callback\n"));
|
||||
|
||||
nsCOMPtr<nsIInterfaceRequestor> ir = do_GetService("@mozilla.org/telephony/system-worker-manager;1");
|
||||
nsCOMPtr<nsIWifi> wifi = do_GetInterface(ir);
|
||||
if (!wifi) {
|
||||
return NS_ERROR_UNEXPECTED;
|
||||
}
|
||||
|
||||
wifi->GetWifiScanResults(this);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
if (!strcmp(topic, "xpcom-shutdown")) {
|
||||
LOG(("Shutting down\n"));
|
||||
ClearTimer();
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
return NS_ERROR_UNEXPECTED;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWifiMonitor::Onready(uint32_t count, nsIWifiScanResult **results)
|
||||
{
|
||||
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
||||
LOG(("@@@@@ About to send data to the wifi listeners\n"));
|
||||
|
||||
nsCOMArray<nsWifiAccessPoint> accessPoints;
|
||||
|
||||
for (uint32_t i = 0; i < count; i++) {
|
||||
nsRefPtr<nsWifiAccessPoint> ap = new nsWifiAccessPoint();
|
||||
|
||||
nsString temp;
|
||||
results[i]->GetBssid(temp);
|
||||
// 00:00:00:00:00:00 --> 00-00-00-00-00-00
|
||||
for (int32_t x=0; x<6; x++) {
|
||||
temp.ReplaceSubstring(NS_LITERAL_STRING(":"), NS_LITERAL_STRING("-")); // would it be too much to ask for a ReplaceAll()?
|
||||
}
|
||||
|
||||
nsCString mac;
|
||||
mac.AssignWithConversion(temp);
|
||||
|
||||
results[i]->GetSsid(temp);
|
||||
|
||||
nsCString ssid;
|
||||
ssid.AssignWithConversion(temp);
|
||||
|
||||
uint32_t signal;
|
||||
results[i]->GetSignalStrength(&signal);
|
||||
|
||||
ap->setSignal(signal);
|
||||
ap->setMacRaw(mac.get());
|
||||
ap->setSSIDRaw(ssid.get(), ssid.Length());
|
||||
|
||||
accessPoints.AppendObject(ap);
|
||||
}
|
||||
|
||||
bool accessPointsChanged = !AccessPointsEqual(accessPoints, mLastAccessPoints);
|
||||
ReplaceArray(mLastAccessPoints, accessPoints);
|
||||
|
||||
nsTArray<nsIWifiAccessPoint*> ac;
|
||||
uint32_t resultCount = accessPoints.Count();
|
||||
for (uint32_t i = 0; i < resultCount; i++) {
|
||||
ac.AppendElement(accessPoints[i]);
|
||||
}
|
||||
|
||||
for (uint32_t i = 0; i < mListeners.Length(); i++) {
|
||||
if (!mListeners[i].mHasSentData || accessPointsChanged) {
|
||||
mListeners[i].mHasSentData = true;
|
||||
mListeners[i].mListener->OnChange(ac.Elements(), ac.Length());
|
||||
}
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsWifiMonitor::Onfailure()
|
||||
{
|
||||
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
||||
LOG(("@@@@@ About to send error to the wifi listeners\n"));
|
||||
for (uint32_t i = 0; i < mListeners.Length(); i++) {
|
||||
mListeners[i].mListener->OnError(NS_ERROR_UNEXPECTED);
|
||||
}
|
||||
|
||||
ClearTimer();
|
||||
return NS_OK;
|
||||
}
|
Загрузка…
Ссылка в новой задаче