All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sputnikdev.bluetooth.manager.impl.BluetoothManagerUtils Maven / Gradle / Ivy

package org.sputnikdev.bluetooth.manager.impl;

/*-
 * #%L
 * org.sputnikdev:bluetooth-manager
 * %%
 * Copyright (C) 2017 Sputnik Dev
 * %%
 * Licensed 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.
 * #L%
 */

import org.slf4j.Logger;
import org.sputnikdev.bluetooth.URL;
import org.sputnikdev.bluetooth.manager.transport.BluetoothObject;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.function.Consumer;

/**
 * Utility class.
 * @author Vlad Kolotov
 */
final class BluetoothManagerUtils {

    private BluetoothManagerUtils() { }

    static List getURLs(List objects) {
        List urls = new ArrayList<>(objects.size());
        for (BluetoothObject object : objects) {
            urls.add(object.getURL());
        }
        return Collections.unmodifiableList(urls);
    }

    static  void safeForEachError(Collection listeners, Consumer func, Logger logger, String error) {
        safeForEach(listeners, func, ex -> {
            logger.error(error, ex);
        });
    }

    static  void safeForEachInfo(Collection listeners, Consumer func, Logger logger, String info) {
        safeForEach(listeners, func, ex -> {
            logger.warn(info, ex);
        });
    }

    static  void safeForEachWarn(Collection listeners, Consumer func, Logger logger, String warn) {
        safeForEach(listeners, func, ex -> {
            logger.warn(warn, ex);
        });
    }


    static  void safeForEach(Collection objects, Consumer func, Consumer errorHandler) {
        objects.forEach(deviceDiscoveryListener -> {
            try {
                func.accept(deviceDiscoveryListener);
            } catch (Exception ex) {
                errorHandler.accept(ex);
            }
        });
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy