aboutsummaryrefslogtreecommitdiff
path: root/resource_manager.py
blob: b3438075e20c8dc77bf8764dd3e0e47bc6131c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import sys
from BeautifulSoup import BeautifulSoup
import ParrotProtocol


class ResourceManagerBase(object):
    resources = [
    ]

    def __init__(self, socket, resource_values=None):
        self.sock = socket
        self.resource_values = resource_values or {}

    def get(self, resource):
        try:
            return self.resource_values[resource]
        except KeyError:
            return self.fetch(resource)

    def fetch(self, resource):
        assert resource in self.resources, 'Unknown resource {}'.format(resource)
        assert 'get' in self.resources[resource], 'Unhandled method'
        message = ParrotProtocol.getRequest(resource + '/get')
        result = self.send_message(message)
        self.resource_values[resource] = result
        return result

    def toggle_on(self, resource):
        assert resource in self.resources, 'Unknown resource {}'.format(resource)
        assert 'enable' in self.resources[resource], 'Unhandled method'
        message = ParrotProtocol.getRequest(resource + '/enable')
        self.send_message(message)
        self.fetch(resource)

    def toggle_off(self, resource):
        assert resource in self.resources, 'Unknown resource {}'.format(resource)
        assert 'disable' in self.resources[resource], 'Unhandled method'
        message = ParrotProtocol.getRequest(resource + '/disable')
        self.send_message(message)
        self.fetch(resource)

    def set(self, resource, arg):
        assert resource in self.resources, 'Unknown resource {}'.format(resource)
        assert 'set' in self.resources[resource], 'Unhandled method'
        message = ParrotProtocol.setRequest(resource + '/set', str(arg).lower())
        self.send_message(message)
        self.fetch(resource)

    def send_message(self, message):
        try:
            self.sock.send(str(message))
        except Exception:
            self.sock = ""
            return
        else:
            return self.get_answer()

    def get_answer(self):
        data = self.receive_message()
        while not data.answer:
            if data.notify:
                self.handle_notification(data.notify)
            else:
                raise AssertionError('Unknown response')
            data = self.receive_message()
        return data.answer

    def handle_notification(self, notification):

        self.fetch(notification['path'].rsplit('/', 1)[0].encode('utf-8'))

    def receive_message(self):
        if sys.platform == "darwin":
            self.sock.recv(30)
        else:
            self.sock.recv(7)
        return BeautifulSoup(self.sock.recv(1024))

    def close(self):
        self.sock.close()


class GenericResourceManager(ResourceManagerBase):
    resources = {
        '/api/software/version': ['get'],
    }

    def __init__(self, sock):
        super(GenericResourceManager, self).__init__(sock)
        self.notifications = []

    def handle_notification(self, notification):
        self.notifications.append(notification)

    def get_resource_manager(self, resource_manager_class):
        resource_manager = resource_manager_class(self.sock, self.resource_values)
        for notitifaction in self.notifications:
            resource_manager.handle_notification(notitifaction)
        return resource_manager

    @property
    def api_version(self):
        answer = self.get("/api/software/version")
        try:
            return answer.software["version"]
        except KeyError:
            return answer.software['sip6']


class Version1ResourceManager(ResourceManagerBase):
    resources = {
        '/api/software/version': ['get'],
        '/api/system/battery': ['get'],
        '/api/bluetooth/friendlyname': ['get'],
        '/api/system/auto_connection/enabled': ['get', 'set'],
        '/api/system/anc_phone_mode/enabled': ['get', 'set'],
        '/api/audio/specific_mode/enabled': ['get', 'set'],
        '/api/audio/sound_effect/enabled': ['get', 'set'],
        '/api/audio/noise_cancellation/enabled': ['get', 'set'],
    }

class Version2ResourceManager(ResourceManagerBase):
    resources = {
        '/api/software/version': ['get'],
        '/api/system/battery': ['get'],
        '/api/system/pi': ['get'],
        '/api/bluetooth/friendlyname': ['get'],
        '/api/system/auto_connection/enabled': ['get', 'set'],
        '/api/system/anc_phone_mode/enabled': ['get', 'set'],
        '/api/flight_mode': ['get', 'enable', 'disable'],
        '/api/audio/sound_effect/enabled': ['get', 'set'],
        '/api/audio/sound_effect/room_size': ['get', 'set'],
        '/api/audio/sound_effect/angle': ['get', 'set'],
        '/api/audio/noise': ['get'],
        '/api/audio/noise_control': ['get'],
        '/api/audio/noise_control/enabled': ['get', 'set'],
        '/api/audio/track/metadata': ['get'],
    }