""" gpscap - GPS/AIS capability dictionary class. This file is Copyright (c) 2010 by the GPSD project SPDX-License-Identifier: BSD-2-clause """ # This code runs compatibly under Python 2 and 3.x for x >= 2. # Preserve this property! from __future__ import absolute_import, print_function, division try: import configparser except ImportError: import ConfigParser as configparser class GPSDictionary(configparser.RawConfigParser): def __init__(self, *files): "Initialize the capability dictionary" configparser.RawConfigParser.__init__(self) if not files: files = ["gpscap.ini", "/usr/share/gpsd/gpscap.ini"] try: self.read(files, encoding='utf-8') except TypeError: self.read(files) # For Python 2.6 # Resolve uses= members while True: keepgoing = False for section in self.sections(): if self.has_option(section, "uses"): parent = self.get(section, "uses") if self.has_option(parent, "uses"): continue # Found a parent section without a uses = part. for heritable in self.options(parent): if not self.has_option(section, heritable): self.set(section, heritable, self.get(parent, heritable)) keepgoing = True self.remove_option(section, "uses") if not keepgoing: break # Sanity check: All items must have a type field. for section in self.sections(): if not self.has_option(section, "type"): raise configparser.Error("%s has no type" % section) elif (self.get(section, "type") not in ("engine", "vendor", "device")): raise configparser.Error("%s has invalid type" % section) # Sanity check: All devices must point at a vendor object. # Side effect: build the lists of vendors and devices. self.vendors = [] self.devices = [] for section in self.sections(): if self.get(section, "type") == "vendor": self.vendors.append(section) if self.get(section, "type") == "device": self.devices.append(section) self.vendors.sort() for section in self.sections(): if self.get(section, "type") == "device": if not self.has_option(section, "vendor"): raise configparser.Error("%s has no vendor" % section) if self.get(section, "vendor") not in self.vendors: raise configparser.Error("%s has invalid vendor" % section) def HTMLDump(self, ofp): thead = """
Name | Packaging | Engine | Interface | Tested with | NMEA version | PPS | Notes | ||
---|---|---|---|---|---|---|---|---|---|
" \ "%s | |||||||||
" \
"%s %s | |||||||||
%s | \n" % namefield) ofp.write("%s | \n" % self.get(dev, "packaging")) engine = self.get(dev, "engine") if self.has_option(engine, "techdoc"): engine = "%s" \ % (self.get(engine, "techdoc"), engine) if self.has_option(dev, "subtype"): engine += " (" + self.get(dev, "subtype") + ")" ofp.write("%s | \n" % engine) interfaces = self.get(dev, "interfaces") if self.has_option(dev, "pps"): interfaces += ",PPS" ofp.write("%s | \n" % interfaces) testfield = "" if self.has_option(dev, "tested"): tested = self.get(dev, "tested") if tested == "regression": testfield += "%s | \n" % testfield) nmea = " " if self.has_option(dev, "nmea"): nmea = self.get(dev, "nmea") ofp.write("%s | \n" % nmea) if ((self.has_option(dev, "pps") and self.get(dev, "pps") == "True")): pps_accuracy = time_offset = "" if self.has_option(dev, "pps_accuracy"): pps_accuracy = self.get(dev, "pps_accuracy") if self.has_option(dev, "time_offset"): time_offset = self.get(dev, "time_offset") if pps_accuracy and time_offset: ofp.write("%s %s | \n"
% (pps_accuracy, time_offset))
else:
ofp.write("? \n") else: ofp.write(" | No | \n") if self.has_option(dev, "notes"): notes = self.get(dev, "notes") else: notes = "" if self.has_option(dev, "submitter"): notes += " Reported by %s." % self.get( dev, "submitter").replace("@", "@").replace( "<", "<").replace(">", ">") ofp.write("%s | \n" % notes) ofp.write("