mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
So far only API and tests, and without decoded segments Signed-off-by: mvglasow <michael -at- vonglasow.com>
95 lines
3.3 KiB
C++
95 lines
3.3 KiB
C++
#pragma once
|
|
|
|
#include "traffxml/traff_model.hpp"
|
|
|
|
#include "geometry/rect2d.hpp"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace pugi
|
|
{
|
|
class xml_document;
|
|
class xml_node;
|
|
} // namespace pugi
|
|
|
|
namespace traffxml
|
|
{
|
|
/**
|
|
* @brief Retrieves a TraFF feed from an XML document.
|
|
*
|
|
* The document must conform loosely to the TraFF specification (currently version 0.8).
|
|
*
|
|
* The name of the root element is not verified, but the `message` elements must be its immediate
|
|
* children.
|
|
*
|
|
* Values which cannot be parsed correctly are skipped.
|
|
*
|
|
* Events whose event type does not match their event class are skipped.
|
|
*
|
|
* Messages, events, locations or points which lack mandatory information are skipped.
|
|
*
|
|
* If children are skipped but the parent remains valid, parsing it will report success.
|
|
*
|
|
* Parsing the feed will report failure if all its messages fail to parse, but not if it has no
|
|
* messages.
|
|
*
|
|
* @note Custom elements and attributes which are not part of the TraFF specification are currently
|
|
* ignored. Future versions may process certain custom elements.
|
|
*
|
|
* @param document The XML document from which to retrieve the messages.
|
|
* @param feed Receives the TraFF feed.
|
|
* @return `true` on success, `false` on failure.
|
|
*/
|
|
bool ParseTraff(pugi::xml_document const & document, TraffFeed & feed);
|
|
|
|
/**
|
|
* @brief Generates XML from a TraFF feed.
|
|
*
|
|
* The resulting document largely conforms to the TraFF specification (currently version 0.8), but
|
|
* may contain custom elements.
|
|
*
|
|
* The root element of the generated XML document is `feed`.
|
|
*
|
|
* @note Currently no custom elements are generated. Future versions may add the location decoded
|
|
* into MWM IDs, feature IDs, directions and segments, along with their speed groups.
|
|
*
|
|
* @param feed The TraFF feed to encode.
|
|
* @param document The XML document in which to store the messages.
|
|
*/
|
|
void GenerateTraff(TraffFeed const & feed, pugi::xml_document & document);
|
|
|
|
/**
|
|
* @brief Generates XML from a map of TraFF messages.
|
|
*
|
|
* The resulting document largely conforms to the TraFF specification (currently version 0.8), but
|
|
* may contain custom elements.
|
|
*
|
|
* The root element of the generated XML document is `feed`.
|
|
*
|
|
* @note Currently no custom elements are generated. Future versions may add the location decoded
|
|
* into MWM IDs, feature IDs, directions and segments, along with their speed groups.
|
|
*
|
|
* @param messages A map whose values contain the TraFF messages to encode.
|
|
* @param document The XML document in which to store the messages.
|
|
*/
|
|
void GenerateTraff(std::map<std::string, traffxml::TraffMessage> const & messages,
|
|
pugi::xml_document & document);
|
|
|
|
/**
|
|
* @brief Generates a list of XML `filter` elements from a vector of rects representing bboxes.
|
|
*
|
|
* The resulting string can be placed inside a TraFF XML `filter_list` element or can be passed as
|
|
* an extra to an Android intent.
|
|
*
|
|
* It will have one `filter` element for each element in `bboxRects`, although simplification may
|
|
* be applied to reduce the number of rects (currently not implemented).
|
|
*
|
|
* The `min_road_class` attribute is not used.
|
|
*
|
|
* @param bboxRects The rectangles, each of which represents a bounding box.
|
|
* @return A string of XML `filter` elements.
|
|
*/
|
|
std::string FiltersToXml(std::vector<m2::RectD> & bboxRects);
|
|
} // namespace traffxml
|