IResourceTableConsumer.h revision 1ab598f46c3ff520a67f9d80194847741f3467ab
1/*
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_PROCESS_IRESOURCETABLECONSUMER_H
18#define AAPT_PROCESS_IRESOURCETABLECONSUMER_H
19
20#include "Diagnostics.h"
21#include "NameMangler.h"
22#include "Resource.h"
23#include "ResourceValues.h"
24#include "Source.h"
25
26#include <iostream>
27#include <list>
28#include <sstream>
29
30namespace aapt {
31
32class ResourceTable;
33struct ISymbolTable;
34
35struct IAaptContext {
36    virtual ~IAaptContext() = default;
37
38    virtual ISymbolTable* getExternalSymbols() = 0;
39    virtual IDiagnostics* getDiagnostics() = 0;
40    virtual StringPiece16 getCompilationPackage() = 0;
41    virtual uint8_t getPackageId() = 0;
42    virtual NameMangler* getNameMangler() = 0;
43};
44
45struct IResourceTableConsumer {
46    virtual ~IResourceTableConsumer() = default;
47
48    virtual bool consume(IAaptContext* context, ResourceTable* table) = 0;
49};
50
51namespace xml {
52struct Node;
53}
54
55struct XmlResource {
56    ResourceFile file;
57    std::unique_ptr<xml::Node> root;
58};
59
60struct IXmlResourceConsumer {
61    virtual ~IXmlResourceConsumer() = default;
62
63    virtual bool consume(IAaptContext* context, XmlResource* resource) = 0;
64};
65
66struct IPackageDeclStack {
67    virtual ~IPackageDeclStack() = default;
68
69    virtual Maybe<ResourceName> transformPackage(const ResourceName& name,
70                                                 const StringPiece16& localPackage) const = 0;
71};
72
73} // namespace aapt
74
75#endif /* AAPT_PROCESS_IRESOURCETABLECONSUMER_H */
76