/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef AAPT_RESOURCE_TABLE_RESOLVER_H #define AAPT_RESOURCE_TABLE_RESOLVER_H #include "Maybe.h" #include "Resolver.h" #include "Resource.h" #include "ResourceTable.h" #include "ResourceValues.h" #include #include #include #include namespace aapt { /** * Encapsulates the search of library sources as well as the local ResourceTable. */ class ResourceTableResolver : public IResolver { public: /** * Creates a resolver with a local ResourceTable and an AssetManager * loaded with library packages. */ ResourceTableResolver( std::shared_ptr table, const std::vector>& sources); ResourceTableResolver(const ResourceTableResolver&) = delete; // Not copyable. virtual Maybe findId(const ResourceName& name) override; virtual Maybe findAttribute(const ResourceName& name) override; virtual Maybe findName(ResourceId resId) override; private: struct CacheEntry { ResourceId id; std::unique_ptr attr; }; const CacheEntry* buildCacheEntry(const ResourceName& name); std::shared_ptr mTable; std::vector> mSources; std::map mCache; std::unordered_set mIncludedPackages; }; } // namespace aapt #endif // AAPT_RESOURCE_TABLE_RESOLVER_H