/* * Copyright 2014 Google Inc. All rights reserved. * * 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 FRUIT_NORMALIZED_COMPONENT_STORAGE_HOLDER_H #define FRUIT_NORMALIZED_COMPONENT_STORAGE_HOLDER_H #include #include #include #include #include namespace fruit { namespace impl { /** * A wrapper around NormalizedComponentStorage, holding the NormalizedComponentStorage * through a unique_ptr so that we don't need to include NormalizedComponentStorage in * fruit.h. */ class NormalizedComponentStorageHolder { private: std::unique_ptr storage; friend class InjectorStorage; template friend class fruit::Injector; public: // These are just used as tags to select the desired constructor. struct WithUndoableCompression {}; struct WithPermanentCompression {}; NormalizedComponentStorageHolder() noexcept = default; /** * The MemoryPool is only used during construction, the constructed object *can* outlive the memory pool. */ NormalizedComponentStorageHolder(ComponentStorage&& component, const std::vector>& exposed_types, MemoryPool& memory_pool, WithUndoableCompression); NormalizedComponentStorageHolder(NormalizedComponentStorage&&) = delete; NormalizedComponentStorageHolder(const NormalizedComponentStorage&) = delete; NormalizedComponentStorageHolder& operator=(NormalizedComponentStorageHolder&&) = delete; NormalizedComponentStorageHolder& operator=(const NormalizedComponentStorageHolder&) = delete; // We don't use the default destructor because that would require the inclusion of // normalized_component_storage.h. We define this in the cpp file instead. ~NormalizedComponentStorageHolder() noexcept; }; } // namespace impl } // namespace fruit #endif // FRUIT_NORMALIZED_COMPONENT_STORAGE_HOLDER_H