| // Copyright 2024 The Cobalt Authors. 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 STARBOARD_ANDROID_SHARED_ASSET_MANAGER_H_ |
| #define STARBOARD_ANDROID_SHARED_ASSET_MANAGER_H_ |
| |
| #include <map> |
| #include <set> |
| #include <string> |
| |
| #include "starboard/common/mutex.h" |
| |
| namespace starboard { |
| namespace android { |
| namespace shared { |
| |
| // This class handles opening/closing Android asset files as POSIX filehandles. |
| class AssetManager { |
| public: |
| static AssetManager* GetInstance(); |
| int Open(const char* path); |
| int Close(int fd); |
| bool IsAssetFd(int fd) const; |
| |
| private: |
| AssetManager(); |
| ~AssetManager() { ClearTempDir(); } |
| uint64_t AcquireInternalFd(); |
| std::string TempFilepath(uint64_t internal_fd) const; |
| void ClearTempDir(); |
| |
| std::string tmp_root_; |
| mutable Mutex mutex_; |
| uint64_t internal_fd_ = 0; // Guarded by |mutex_|. |
| std::set<uint64_t> in_use_internal_fd_set_; // Guarded by |mutex_|. |
| std::map<int, uint64_t> fd_to_internal_fd_map_; // Guarded by |mutex_|. |
| }; |
| |
| } // namespace shared |
| } // namespace android |
| } // namespace starboard |
| |
| #endif // STARBOARD_ANDROID_SHARED_ASSET_MANAGER_H_ |