1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UPDATER_WIN_PROTOCOL_PARSER_XML_H_
#define CHROME_UPDATER_WIN_PROTOCOL_PARSER_XML_H_
// clang-format off
#include <objbase.h>
#include <msxml2.h>
// clang-format on
#include <cstdint>
#include <optional>
#include <string>
#include "base/containers/flat_map.h"
namespace updater {
struct OfflineManifestSystemRequirements {
std::string platform; // For example, "win".
// Expected host processor architecture that the app is compatible with.
// `arch` can be a single entry, or multiple entries separated with `,`.
// Entries prefixed with a `-` (negative entries) indicate non-compatible
// hosts.
//
// Examples:
// * `arch` == "x86".
// * `arch` == "x64".
// * `arch` == "x86,x64,-arm64": the app will fail installation if the
// underlying host is arm64.
std::string arch;
std::string min_os_version; // major.minor.
};
// Class that parses the XML manifest for offline installers.
//
// Only features that are used by Windows legacy offline installers are parsed.
class ProtocolParserXML final {
public:
struct Manifest {
std::string version;
std::string run;
std::string arguments;
};
struct Data {
std::string install_data_index;
std::string text;
};
struct App {
App();
App(const App& app);
~App();
std::string app_id;
Manifest manifest;
std::vector<Data> data;
};
struct Results {
Results();
Results(const Results& results);
~Results();
OfflineManifestSystemRequirements system_requirements;
std::vector<App> apps;
};
static std::optional<Results> Parse(const std::string& xml);
ProtocolParserXML(const ProtocolParserXML&) = delete;
ProtocolParserXML& operator=(const ProtocolParserXML&) = delete;
private:
ProtocolParserXML() = default;
using ElementHandler = bool (ProtocolParserXML::*)(IXMLDOMNode* node,
Results* results);
using ElementHandlerMap = base::flat_map<std::wstring, ElementHandler>;
std::optional<Results> DoParse(const std::string& response_xml);
// Helper functions to traverse the XML document.
bool ParseElement(const ElementHandlerMap& handler_map,
IXMLDOMNode* node,
Results* results);
bool ParseChildren(const ElementHandlerMap& handler_map,
IXMLDOMNode* node,
Results* results);
// DOM element handlers.
bool ParseAction(IXMLDOMNode* node, Results* results);
bool ParseActions(IXMLDOMNode* node, Results* results);
bool ParseApp(IXMLDOMNode* node, Results* results);
bool ParseData(IXMLDOMNode* node, Results* results);
bool ParseEvent(IXMLDOMNode* node, Results* results);
bool ParseManifest(IXMLDOMNode* node, Results* results);
bool ParseResponse(IXMLDOMNode* node, Results* results);
bool ParseSystemRequirements(IXMLDOMNode* node, Results* results);
bool ParseUpdateCheck(IXMLDOMNode* node, Results* results);
};
} // namespace updater
#endif // CHROME_UPDATER_WIN_PROTOCOL_PARSER_XML_H_
|