1 # gps - gps resource for zavai
3 # Copyright (C) 2009 Enrico Zini <enrico@enricozini.org>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 def __init__(self, gps):
29 self.gps_ubx = gps.gps_ubx
31 # This piece of machinery is taken from Zhone
32 self.debug_busy = None
33 self.debug_want = set( ["NAV-STATUS", "NAV-SVINFO"] )
34 self.debug_have = set()
35 self.debug_error = set()
37 self.callbacks = set()
39 def debug_update(self):
40 if self.debug_busy is None:
41 pending = self.debug_want - self.debug_have - self.debug_error
43 self.debug_busy = pending.pop()
44 self.gps_ubx.SetDebugFilter(
47 reply_handler=self.on_debug_reply,
48 error_handler=self.on_debug_error,
51 def debug_request(self):
52 self.debug_have = set()
55 def on_debug_reply(self):
56 self.debug_have.add(self.debug_busy)
57 self.debug_busy = None
60 def on_debug_error(self, e):
61 zavai.info(e, "error while requesting debug packet %s" % self.debug_busy)
62 self.debug_error.add(self.debug_busy)
63 self.debug_busy = None
66 def on_satellites_changed(self, satellites):
67 zavai.info("gps monitor: satellites changed")
70 def on_ubxdebug_packet(self, clid, length, data):
71 zavai.info("gps monitor: UBX debug packet")
72 for c in self.callbacks:
75 def _start_listening(self):
76 self.gps.request(self)
77 # TODO: find out how come sometimes these events are not sent
78 self.gps.bus.add_signal_receiver(
79 self.on_satellites_changed, 'SatellitesChanged', 'org.freedesktop.Gypsy.Satellite',
80 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
81 self.gps.bus.add_signal_receiver(
82 self.on_ubxdebug_packet, 'DebugPacket', 'org.freesmartphone.GPS.UBX',
83 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
86 def _stop_listening(self):
87 self.gps.bus.remove_signal_receiver(
88 self.on_satellites_changed, 'SatellitesChanged', 'org.freedesktop.Gypsy.Satellite',
89 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
90 self.gps.bus.remove_signal_receiver(
91 self.on_ubxdebug_packet, 'DebugPacket', 'org.freesmartphone.GPS.UBX',
92 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
93 self.gps.release(self)
95 def connect(self, callback):
96 "Send UBX debug packets to the given callback"
97 do_start = not self.callbacks
98 self.callbacks.add(callback)
100 self._start_listening()
102 def disconnect(self, callback):
103 "Stop sending UBX debug packets to the given callback"
104 if not self.callbacks: return
105 self.callbacks.discard(callback)
106 if not self.callbacks:
107 self._stop_listening()
110 def __init__(self, gps):
112 self.callbacks = set()
114 def on_position_changed(self, fields, tstamp, lat, lon, alt):
115 zavai.info("gps position: position changed")
116 for c in self.callbacks:
117 c(fields, tstamp, lat, lon, alt)
119 def _start_listening(self):
120 self.gps.request(self)
121 self.gps.bus.add_signal_receiver(
122 self.on_position_changed, 'PositionChanged', 'org.freedesktop.Gypsy.Position',
123 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
125 def _stop_listening(self):
126 self.gps.bus.remove_signal_receiver(
127 self.on_position_changed, 'PositionChanged', 'org.freedesktop.Gypsy.Position',
128 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
129 self.gps.release(self)
131 def connect(self, callback):
132 "Send position changed messages to the given callback"
133 do_start = not self.callbacks
134 self.callbacks.add(callback)
136 self._start_listening()
138 def disconnect(self, callback):
139 "Stop sending position changed messages to the given callback"
140 if not self.callbacks: return
141 self.callbacks.discard(callback)
142 if not self.callbacks:
143 self._stop_listening()
146 # For a list of dbus services, look in /etc/dbus-1/system.d/
147 class GPS(zavai.Resource):
148 def __init__(self, registry, name):
149 self.bus = registry.resource("dbus.system_bus")
151 # see mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage
152 self.usage = self.bus.get_object('org.freesmartphone.ousaged', '/org/freesmartphone/Usage')
153 self.usage = dbus.Interface(self.usage, "org.freesmartphone.Usage")
155 # see mdbus -s org.freesmartphone.ogpsd /org/freedesktop/Gypsy
156 gps = self.bus.get_object('org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
157 self.gps = dbus.Interface(gps, "org.freedesktop.Gypsy.Device")
158 self.gps_time = dbus.Interface(gps, "org.freedesktop.Gypsy.Time")
159 self.gps_position = dbus.Interface(gps, 'org.freedesktop.Gypsy.Position')
160 self.gps_ubx = dbus.Interface(gps, 'org.freesmartphone.GPS.UBX')
162 self.monitor = GPSMonitor(self)
163 self.position = GPSPosition(self)
165 self.requestors = set()
167 def request(self, tag):
168 "Request usage of GPS by the subsystem with the given tag"
169 do_start = not self.requestors
170 self.requestors.add(tag)
172 # Request GPS resource
173 self.usage.RequestResource('GPS')
174 zavai.info("Acquired GPS")
176 def release(self, tag):
177 "Release usage of GPS by the subsystem with the given tag"
178 if not self.requestors: return
179 self.requestors.discard(tag)
180 if not self.requestors:
181 self.usage.ReleaseResource('GPS')
182 zavai.info("Released GPS")
186 self.requestors.clear()
187 self.usage.ReleaseResource('GPS')
188 zavai.info("Released GPS")
190 # def wait_for_fix(self, callback):
191 # status = self.gps.GetFixStatus()
192 # if status in [2, 3]:
193 # zavai.info("We already have a fix, good.")
197 # zavai.info("Waiting for a fix...")
198 # self.waiting_for_fix = callback
199 # self.bus.add_signal_receiver(
200 # self.on_fix_status_changed, 'FixStatusChanged', 'org.freedesktop.Gypsy.Device',
201 # 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
204 # def on_fix_status_changed(self, status):
205 # if status not in [2, 3]: return
207 # zavai.info("Got GPS fix")
208 # self.bus.remove_signal_receiver(
209 # self.on_fix_status_changed, 'FixStatusChanged', 'org.freedesktop.Gypsy.Device',
210 # 'org.freesmartphone.ogpsd', '/org/freedesktop/Gypsy')
212 # if self.waiting_for_fix:
213 # self.waiting_for_fix()
214 # self.waiting_for_fix = None
217 # def start_recording(self):
218 # if self.gps_monitor:
219 # self.gps_monitor.stop()
220 # self.gps_monitor = None
226 # gpstime = self.gps.gps_time.GetTime()
227 # subprocess.call(["date", "-s", "@%d" % gpstime])
228 # subprocess.call(["hwclock", "--systohc"])
230 # # Compute basename for output files
231 # self.basename = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime(gpstime))
232 # self.basename = os.path.join(AUDIODIR, self.basename)
234 # # Start recording the GPX track
235 # self.gpx = GPX(self.basename)
236 # self.gps.track_position(self.on_position_changed)
238 # # Start recording in background forking arecord
239 # self.audio.set_basename(self.basename)
240 # self.audio.start_recording()
243 class GPX(zavai.Resource):
244 "Write GPX track and waypoint files"
245 def __init__(self, registry, name):
246 self.registry = registry
250 self.requestors = set()
251 conf = registry.resource("conf")
252 self.trackdir = os.path.expanduser("~/.zavai")
253 if conf.has_section("gps"):
254 if conf.has_option("gps", "trackdir"):
255 self.trackdir = conf.get("gps", "trackdir")
256 if not os.path.isdir(self.trackdir):
257 zavai.info("Creating directory", self.trackdir)
258 os.makedirs(self.trackdir)
259 self.activity_monitors = set()
261 def add_activity_monitor(self, cb):
262 self.activity_monitors.add(cb)
263 cb(self, self.last_pos is not None)
265 def del_activity_monitor(self, cb):
266 self.activity_monitors.discard(cb)
268 def notify_activity_monitors(self):
269 for mon in self.activity_monitors:
270 mon(self, self.last_pos is not None)
272 def request(self, tag):
273 "Request the GPX trace to be taken"
274 do_start = not self.requestors
275 self.requestors.add(tag)
277 zavai.info("Starting GPX trace subsystem")
278 gps = self.registry.resource("gps")
279 gps.position.connect(self.on_position_changed)
281 def release(self, tag):
282 "Release a GPX trace request"
283 if not self.requestors: return
284 self.requestors.discard(tag)
285 if not self.requestors:
286 zavai.info("Stopping GPX trace subsystem")
287 gps = self.registry.resource("gps")
288 gps.position.disconnect(self.on_position_changed)
291 def on_position_changed(self, fields, tstamp, lat, lon, alt):
292 self.last_pos = (fields, tstamp, lat, lon, alt)
295 def start(basename = None, tstamp = None):
297 # Compute basename for output files
298 basename = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime(tstamp))
299 basename = os.path.join(self.trackdir, self.basename)
301 self.trk = open(basename + "-trk.gpx", "wt")
302 print >>self.trk, """<?xml version="1.0" encoding="UTF-8"?>
305 creator="audiomap %s"
306 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
307 xmlns="http://www.topografix.com/GPX/1/0"
308 xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
310 <trkseg>""" % VERSION
312 self.wpt = open(basename + "-wpt.gpx", "wt")
313 print >>self.wpt, """<?xml version="1.0" encoding="UTF-8"?>
316 creator="audiomap %s"
317 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
318 xmlns="http://www.topografix.com/GPX/1/0"
319 xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">""" % VERSION
322 self.notify_activity_monitors()
325 if self.trk is not None:
326 print >>self.trk, "</trkseg></trk></gpx>"
329 if self.wpt is not None:
330 print >>self.wpt, "</gpx>"
334 self.notify_activity_monitors()
339 def trackpoint(self):
341 if self.last_pos is None:
344 fields, tstamp, lat, lon, ele = self.last_pos
349 print >>self.trk, """<trkpt lat="%f" lon="%f">
351 <ele>%f</ele>""" % (lat, lon, time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime(tstamp)), ele)
352 #if course is not None: print >>self.trk, " <course>%f</course>" % course
353 #if speed is not None: print >>self.trk, " <speed>%f</speed>" % speed
354 #if fix is not None: print >>self.trk, " <fix>%f</fix>" % fix
355 #if hdop is not None: print >>self.trk, " <hdop>%f</hdop>" % hdop
356 print >>self.trk, "</trkpt>"
358 def waypoint(self, name = None):
360 if self.last_pos is None:
363 fields, tstamp, lat, lon, ele = self.last_pos
369 name = "wpt_%d" % self.wpt_seq
372 print >>self.wpt, """<wpt lat="%f" lon="%f">
377 lat, lon, name, time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime(tstamp)), ele)
381 # self.audio = Audio(self.make_waypoint)
383 # # Get a fix and start recording
384 # if not self.gps.wait_for_fix(self.start_recording):
385 # self.gps_monitor = GPSMonitor(self.gps)
386 # self.gps_monitor.start()
391 # self.gps_monitor = GPSMonitor(self.gps)
392 # self.gps_monitor.start()
395 # def make_waypoint(self):
396 # if self.gpx is None:
398 # if self.last_pos is None:
399 # self.last_pos = self.gps.gps_position.GetPosition()
400 # (fields, tstamp, lat, lon, alt) = self.last_pos
401 # self.gpx.waypoint(tstamp, lat, lon, alt)
402 # zavai.info("Making waypoint at %s: %f, %f, %f" % (
403 # time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(tstamp)), lat, lon, alt))