~thomas-voss/location-service/add-snapcraft-setup-next

« back to all changes in this revision

Viewing changes to src/location/providers/proxy.h

Merge lp:~thomas-voss/location-service/simplify-provider-interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2016 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Scott Sweeny <scott.sweeny@canonical.com
 
17
 */
 
18
#ifndef LOCATION_PROVIDERS_PROXY_H
 
19
#define LOCATION_PROVIDERS_PROXY_H
 
20
 
 
21
#include <location/provider.h>
 
22
 
 
23
#include <set>
 
24
 
 
25
namespace location
 
26
{
 
27
namespace providers
 
28
{
 
29
class Proxy : public Provider
 
30
{
 
31
public:
 
32
    explicit Proxy(const std::set<Provider::Ptr>& providers);
 
33
 
 
34
    // From Provider
 
35
    void on_new_event(const Event&) override;
 
36
    void enable() override;
 
37
    void disable() override;
 
38
    void activate() override;
 
39
    void deactivate() override;
 
40
 
 
41
    Requirements requirements() const override;
 
42
    bool satisfies(const Criteria& criteria) override;
 
43
    const core::Signal<Update<Position>>& position_updates() const override;
 
44
    const core::Signal<Update<Heading>>& heading_updates() const override;
 
45
    const core::Signal<Update<Velocity>>& velocity_updates() const override;
 
46
 
 
47
private:
 
48
    std::set<Provider::Ptr> providers;
 
49
    std::vector<core::ScopedConnection> connections;
 
50
    struct
 
51
    {
 
52
        core::Signal<Update<Position>> position;
 
53
        core::Signal<Update<Heading>> heading;
 
54
        core::Signal<Update<Velocity>> velocity;
 
55
    } updates;
 
56
};
 
57
}
 
58
}
 
59
#endif // LOCATION_PROVIDERS_PROXY_H