com.github.camellabs.iot.component.kura.wifi.KuraAccessPointsProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-kura Show documentation
Show all versions of camel-kura Show documentation
Camel Kura Components (WiFi)
The newest version!
/**
* Licensed to the Camel Labs under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.camellabs.iot.component.kura.wifi;
import org.apache.camel.spi.Registry;
import org.eclipse.kura.KuraException;
import org.eclipse.kura.linux.net.NetworkServiceImpl;
import org.eclipse.kura.net.NetworkService;
import org.eclipse.kura.net.wifi.WifiAccessPoint;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import static com.github.camellabs.iot.utils.Reflections.writeField;
/**
* Access point provider using the Kura NetworkService to scan the WiFi networks.
*/
public class KuraAccessPointsProvider implements AccessPointsProvider {
private static final Logger LOG = LoggerFactory.getLogger(KuraAccessPointsProvider.class);
private final NetworkService networkService;
public KuraAccessPointsProvider(Registry registry) {
networkService = resolveNetworkService(registry);
}
@Override
public List accessPoints(String forInterface) {
try {
if (forInterface.equals("*")) {
return networkService.getAllWifiAccessPoints();
} else {
return networkService.getWifiAccessPoints(forInterface);
}
} catch (KuraException e) {
throw new RuntimeException(e);
}
}
private NetworkService resolveNetworkService(Registry registry) {
Set servicesFromRegistry = registry.findByType(NetworkService.class);
if(servicesFromRegistry.size() != 1) {
LOG.info("Found Kura NetworkService in the registry. Kura component will use that instance.");
NetworkService networkService = new NetworkServiceImpl();
initializeNetworkService(networkService);
return networkService;
}
return servicesFromRegistry.iterator().next();
}
protected void initializeNetworkService(NetworkService networkService) {
writeField(networkService, "m_addedModems", new ArrayList());
}
}