e562e8d442fa5bbf6ded3a01e11210ec69f6bd5e
[gigfinder] / src / opt / gigfinder / locator.py
1 import gobject
2 import location
3
4 class LocationUpdater:
5
6     def __init__(self):
7         self.lat = None
8         self.long = None
9         self.loop = gobject.MainLoop()
10         self.fix_count = 0
11
12         self.control = location.GPSDControl.get_default()
13         self.control.set_properties(preferred_method=location\
14                                             .METHOD_USER_SELECTED,
15                                     preferred_interval=location\
16                                             .INTERVAL_DEFAULT)
17         self.control.connect("error-verbose", self.on_error, self.loop)
18         self.control.connect("gpsd-stopped", self.on_stop, self.loop)
19
20         self.device = location.GPSDevice()
21         self.device.connect("changed", self.on_changed, self.control)
22
23     def update_location(self):
24         """ Run the loop and update lat and long """
25         self.reset()
26         gobject.idle_add(self.start_location, self.control)
27         self.loop.run()
28
29     def on_error(self, control, error, data):
30         """ Handle errors """
31         print "location error: %d... quitting" % error
32         data.quit()
33
34     def on_changed(self, device, data):
35         """ Set long and lat """
36         if not device:
37             return
38         if device.fix:
39             # once fix is found and long, lat available set long lat
40             if device.fix[1] & location.GPS_DEVICE_LATLONG_SET:
41                 self.fix_count += 1
42                 if self.fix_count > 1:
43                     self.lat, self.long = device.fix[4:6]
44                     data.stop()
45
46     def on_stop(self, control, data):
47         """ Stop the location service """
48         print "quitting"
49         data.quit()
50
51     def start_location(self, data):
52         """ Start the location service """
53         self.fix_count = 0
54         data.start()
55         return False
56
57     def reset(self):
58         """ Reset coordinates """
59         self.lat = None
60         self.long = None
61         self.device.reset_last_known()
62