blob: d8d592b41c2c270d15901e3900ac86c8a71f3cbc [file] [log] [blame]
Adam Lesinski1ab598f2015-08-14 14:26:04 -07001/*
2 * Copyright (C) 2015 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_FLATTEN_XMLFLATTENER_H
18#define AAPT_FLATTEN_XMLFLATTENER_H
19
Adam Lesinski1ab598f2015-08-14 14:26:04 -070020#include "process/IResourceTableConsumer.h"
Adam Lesinski467f1712015-11-16 17:35:44 -080021#include "util/BigBuffer.h"
22#include "xml/XmlDom.h"
Adam Lesinski1ab598f2015-08-14 14:26:04 -070023
24namespace aapt {
25
Adam Lesinski1ab598f2015-08-14 14:26:04 -070026struct XmlFlattenerOptions {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070027 /**
28 * Keep attribute raw string values along with typed values.
29 */
30 bool keepRawValues = false;
Adam Lesinski1ab598f2015-08-14 14:26:04 -070031
Adam Lesinskicacb28f2016-10-19 12:18:14 -070032 /**
33 * If set, the max SDK level of attribute to flatten. All others are ignored.
34 */
35 Maybe<size_t> maxSdkLevel;
Adam Lesinski1ab598f2015-08-14 14:26:04 -070036};
37
38class XmlFlattener : public IXmlResourceConsumer {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070039 public:
40 XmlFlattener(BigBuffer* buffer, XmlFlattenerOptions options)
41 : mBuffer(buffer), mOptions(options) {}
Adam Lesinski1ab598f2015-08-14 14:26:04 -070042
Adam Lesinskicacb28f2016-10-19 12:18:14 -070043 bool consume(IAaptContext* context, xml::XmlResource* resource) override;
Adam Lesinski1ab598f2015-08-14 14:26:04 -070044
Adam Lesinskicacb28f2016-10-19 12:18:14 -070045 private:
46 BigBuffer* mBuffer;
47 XmlFlattenerOptions mOptions;
Adam Lesinski1ab598f2015-08-14 14:26:04 -070048
Adam Lesinskicacb28f2016-10-19 12:18:14 -070049 bool flatten(IAaptContext* context, xml::Node* node);
Adam Lesinski1ab598f2015-08-14 14:26:04 -070050};
51
Adam Lesinskicacb28f2016-10-19 12:18:14 -070052} // namespace aapt
Adam Lesinski1ab598f2015-08-14 14:26:04 -070053
54#endif /* AAPT_FLATTEN_XMLFLATTENER_H */