blob: a0ad1dadeddf963817f05297d7e2d654cc97563c [file] [log] [blame]
Adam Lesinskicc5609d2016-04-05 12:41:07 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef AAPT_XML_XMLPATTERN_H
18#define AAPT_XML_XMLPATTERN_H
19
Adam Lesinskicc5609d2016-04-05 12:41:07 -070020#include <functional>
21#include <map>
22#include <string>
23#include <vector>
24
Adam Lesinskice5e56e2016-10-21 17:56:45 -070025#include "android-base/macros.h"
26
27#include "Diagnostics.h"
28#include "xml/XmlDom.h"
29
Adam Lesinskicc5609d2016-04-05 12:41:07 -070030namespace aapt {
31namespace xml {
32
33enum class XmlActionExecutorPolicy {
Adam Lesinski63699b12017-05-08 18:36:33 -070034 // Actions are run if elements are matched, errors occur only when actions return false.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070035 kNone,
Adam Lesinskicc5609d2016-04-05 12:41:07 -070036
Izabela Orlowskaad9e1322017-12-19 16:22:42 +000037 // The actions defined must match and run. If an element is found that does not match an action,
38 // an error occurs.
Adam Lesinski63699b12017-05-08 18:36:33 -070039 // Note: namespaced elements are always ignored.
Ryan Mitchell4ea90752020-07-31 08:21:43 -070040 kAllowList,
Izabela Orlowskaad9e1322017-12-19 16:22:42 +000041
42 // The actions defined should match and run. if an element is found that does not match an
43 // action, a warning is printed.
44 // Note: namespaced elements are always ignored.
Ryan Mitchell4ea90752020-07-31 08:21:43 -070045 kAllowListWarning,
Adam Lesinskicc5609d2016-04-05 12:41:07 -070046};
47
Adam Lesinskied37f482017-11-02 12:07:08 -070048// Contains the actions to perform at this XML node. This is a recursive data structure that
49// holds XmlNodeActions for child XML nodes.
Adam Lesinskicc5609d2016-04-05 12:41:07 -070050class XmlNodeAction {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070051 public:
Adam Lesinski63699b12017-05-08 18:36:33 -070052 using ActionFuncWithDiag = std::function<bool(Element*, SourcePathDiagnostics*)>;
Adam Lesinskicacb28f2016-10-19 12:18:14 -070053 using ActionFunc = std::function<bool(Element*)>;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070054
Adam Lesinskied37f482017-11-02 12:07:08 -070055 // Find or create a child XmlNodeAction that will be performed for the child element with the
56 // name `name`.
57 XmlNodeAction& operator[](const std::string& name) {
58 return map_[name];
59 }
Adam Lesinskicc5609d2016-04-05 12:41:07 -070060
Adam Lesinskied37f482017-11-02 12:07:08 -070061 // Add an action to be performed at this XmlNodeAction.
Adam Lesinskice5e56e2016-10-21 17:56:45 -070062 void Action(ActionFunc f);
63 void Action(ActionFuncWithDiag);
Adam Lesinskicc5609d2016-04-05 12:41:07 -070064
Adam Lesinskicacb28f2016-10-19 12:18:14 -070065 private:
66 friend class XmlActionExecutor;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070067
Adam Lesinskied37f482017-11-02 12:07:08 -070068 bool Execute(XmlActionExecutorPolicy policy, std::vector<::android::StringPiece>* bread_crumb,
69 SourcePathDiagnostics* diag, Element* el) const;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070070
Adam Lesinskice5e56e2016-10-21 17:56:45 -070071 std::map<std::string, XmlNodeAction> map_;
72 std::vector<ActionFuncWithDiag> actions_;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070073};
74
Adam Lesinskied37f482017-11-02 12:07:08 -070075// Allows the definition of actions to execute at specific XML elements defined by their hierarchy.
Adam Lesinskicc5609d2016-04-05 12:41:07 -070076class XmlActionExecutor {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070077 public:
78 XmlActionExecutor() = default;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070079
Adam Lesinskied37f482017-11-02 12:07:08 -070080 // Find or create a root XmlNodeAction that will be performed for the root XML element with the
81 // name `name`.
82 XmlNodeAction& operator[](const std::string& name) {
83 return map_[name];
84 }
Adam Lesinskicc5609d2016-04-05 12:41:07 -070085
Adam Lesinskied37f482017-11-02 12:07:08 -070086 // Execute the defined actions for this XmlResource.
87 // Returns true if all actions return true, otherwise returns false.
Adam Lesinski63699b12017-05-08 18:36:33 -070088 bool Execute(XmlActionExecutorPolicy policy, IDiagnostics* diag, XmlResource* doc) const;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070089
Adam Lesinskicacb28f2016-10-19 12:18:14 -070090 private:
Adam Lesinskice5e56e2016-10-21 17:56:45 -070091 std::map<std::string, XmlNodeAction> map_;
Adam Lesinskicc5609d2016-04-05 12:41:07 -070092
Adam Lesinskicacb28f2016-10-19 12:18:14 -070093 DISALLOW_COPY_AND_ASSIGN(XmlActionExecutor);
Adam Lesinskicc5609d2016-04-05 12:41:07 -070094};
95
Adam Lesinskicacb28f2016-10-19 12:18:14 -070096} // namespace xml
97} // namespace aapt
Adam Lesinskicc5609d2016-04-05 12:41:07 -070098
99#endif /* AAPT_XML_XMLPATTERN_H */