I need to perform Wifi scanning at regular intervals. I am encountering a problem when the time interval is set to 1-2 sec. It seems like I am not getting any ScanResult. Is there a minimum amount of time to set so that the WifiManager is able to perform a successful WiFi scan?

Here is the coding, i am using a Service to did the Wifi scanning:

public class WifiScanning extends Service{

private static final String TAG = "WifiScanning";
private Timer timer;
public int refreshRate, numberOfWifiScan, wifiScanGranularity;
WifiReceiver receiverWifi = new WifiReceiver();
WifiManager wifi;
StringBuilder sb;
List<ScanResult> wifiList;
List<APData> apdataList;
List<List<APData>>surveyData;

private TimerTask updateTask = new TimerTask() {
    @Override
    public void run() {
        Log.i(TAG, "Timer task doing work");
        wifi.startScan();
    }
};

@Override
public IBinder onBind(Intent intent) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void onCreate() {
    super.onCreate();
    Log.i(TAG, "Service creating");

    //retrieving the mapRefreshRate from config.xml
    XMLOperations test = new XMLOperations();
    Configuration config = new Configuration();
    config = test.saxXmlParsing(this, 1);
    if(config==null)
        config = test.saxXmlParsing(this, 2); 
    refreshRate = Integer.parseInt(config.getMapRefreshRate());
    numberOfWifiScan = Integer.parseInt(config.getNumberOfWifiScan_Positioning());
    wifiScanGranularity = Integer.parseInt(config.getWifiScanGranularity_Positioning());

    timer = new Timer();
    Log.i(TAG, "Refresh Rate: "+ String.valueOf(refreshRate));
    timer.schedule(updateTask, 0, refreshRate);

    wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);

    registerReceiver(receiverWifi, new IntentFilter(
          WifiManager.SCAN_RESULTS_AVAILABLE_ACTION));
}

@Override
public void onDestroy() {
    super.onDestroy();
    Log.i(TAG, "Service destroying");
    unregisterReceiver(receiverWifi);
    if (timer != null){
        timer.cancel();
        timer.purge();
        timer = null;
    }
}

class WifiReceiver extends BroadcastReceiver {
    public void onReceive(Context c, Intent intent) {
        sb = new StringBuilder();
        wifiList = wifi.getScanResults();
        String ap_ssid;
        String ap_mac;
        Double ap_rssi;
        for(int i = 0; i < wifiList.size(); i++){
            ap_ssid = wifiList.get(i).SSID;
            ap_mac = wifiList.get(i).BSSID;
            ap_rssi = Double.valueOf(wifiList.get(i).level);
            APData ap = new APData(ap_ssid,ap_mac,ap_rssi);

            apdataList.add(ap);

            sb.append(" " + (wifiList.get(i).SSID).toString());
            sb.append(" " + (wifiList.get(i).BSSID).toString());
            sb.append((" " + String.valueOf(wifiList.get(i).level)));
            sb.append("\n");
        }
        Log.d(TAG, sb.toString());
        for(int i=1; i<=numberOfWifiScan; i++){
            surveyData.add(apdataList);
        }
    }
}
}

However, i seems to get Nullpointer at this line, apdataList.add(ap);. So i wonder is the interval too short which cause ScanResult to be empty?

link|improve this question

62% accept rate
I would not conclude that your ScanResult List is empty. If it was the case, you would not enter your for loop (wifiList.size() would be 0). You should check why ap or apdataList is null in your code. I do not see apdataList=new List<APData>(); in your onCreate(). Might well be the reason. – Laurent' Oct 2 '11 at 7:59
feedback

1 Answer

up vote 5 down vote accepted

EDIT after you posted your code:

apdataList does not seem to be initialized in onCreate()

add this to onCreate():

apdataList = new List<APData>();

Minimum scanning delay

I think that there is no absolute minimum scanning delay. It depends too much on the hardware performances.

My advice is that you add a 'As Fast As Possible' option to your preferences then use an asynchronous loop that relaunch a scan as soon as new results are found (see the code snippet below, it was updated to suit your needs). This way, it will only be limited by hardware performances.


Also you can poll the ScanResults using WifiManager.getScanResults() The recommended way is to launch WifiManager.startScan() and set up a BroadcastReceiver for WifiManager.SCAN_RESULTS_AVAILABLE_ACTION to be notified as soon as the scan results are ready.

Here's a sample code (borrowed from here and adapted to your needs):

IntentFilter i = new IntentFilter(); 
i.addAction (WifiManager.SCAN_RESULTS_AVAILABLE_ACTION); 
registerReceiver(new BroadcastReceiver(){ 
      public void onReceive(Context c, Intent i){ 
      // Code to execute when SCAN_RESULTS_AVAILABLE_ACTION event occurs 
      WifiManager w = (WifiManager) c.getSystemService(Context.WIFI_SERVICE); 
      myScanResultHandler(w.getScanResults()); // your method to handle Scan results
      if (ScanAsFastAsPossible) w.startScan(); // relaunch scan immediately
      else { /* Schedule the scan to be run later here */}
      } 
    }, i ); 


    // Launch  wifiscanner the first time here (it will call the broadcast receiver above)
    WifiManager wm = (WifiManager) getSystemService(Context.WIFI_SERVICE); 
    boolean a = wm.startScan(); 
link|improve this answer
i have added my coding... Thats seems to be what i am doing. refreshRate can be set by user. Thus, i want to set a minimum value for that as currently i set to from 0-10sec. – user918197 Oct 2 '11 at 7:50
siily me... always forgotten to instantiate it. But still the what should be the minimum value i should set? – user918197 Oct 2 '11 at 8:34
@user918197 see my edits (do not miss the edited source code) – Laurent' Oct 2 '11 at 8:57
it would means that the program would perform wifi scanning and yet is processing the scan result because i got two wifiscanner running? Cause what i am trying to do here to calculate user position based on the scan result and the time interval is suppose to be the map refresh rate. Truly test out the performance of the device... – user918197 Oct 2 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.