#include #include #include #include #include namespace mbgl { template StyleDifference diff(const std::vector& a, const std::vector& b, const Eq& eq) { std::vector lcs; longest_common_subsequence(a.begin(), a.end(), b.begin(), b.end(), std::back_inserter(lcs), eq); auto aIt = a.begin(); auto bIt = b.begin(); auto lIt = lcs.begin(); StyleDifference result; while (aIt != a.end() || bIt != b.end()) { if (aIt != a.end() && (lIt == lcs.end() || !eq(*lIt, *aIt))) { result.removed.emplace((*aIt)->id, *aIt); aIt++; } else if (bIt != b.end() && (lIt == lcs.end() || !eq(*lIt, *bIt))) { result.added.emplace((*bIt)->id, *bIt); bIt++; } else { if (aIt->get() != bIt->get()) { result.changed.emplace((*bIt)->id, std::array {{ *aIt, *bIt }}); } aIt++; bIt++; lIt++; } } return result; } ImageDifference diffImages(const std::vector& a, const std::vector& b) { return diff(a, b, [] (const ImmutableImage& lhs, const ImmutableImage& rhs) { return lhs->id == rhs->id; }); } SourceDifference diffSources(const std::vector& a, const std::vector& b) { return diff(a, b, [] (const ImmutableSource& lhs, const ImmutableSource& rhs) { return std::tie(lhs->id, lhs->type) == std::tie(rhs->id, rhs->type); }); } LayerDifference diffLayers(const std::vector& a, const std::vector& b) { return diff(a, b, [] (const ImmutableLayer& lhs, const ImmutableLayer& rhs) { return std::tie(lhs->id, lhs->type) == std::tie(rhs->id, rhs->type); }); } bool hasLayoutDifference(const LayerDifference& layerDiff, const std::string& layerID) { if (layerDiff.added.count(layerID)) return true; const auto it = layerDiff.changed.find(layerID); if (it == layerDiff.changed.end()) return false; return it->second[0]->hasLayoutDifference(*it->second[1]); } } // namespace mbgl