// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_ANDROID_CONTENT_URI_UTILS_H_ #define BASE_ANDROID_CONTENT_URI_UTILS_H_ #include #include #include #include "base/base_export.h" #include "base/files/file.h" #include "base/files/file_enumerator.h" #include "base/files/file_path.h" namespace base { namespace internal { // Check whether a content URI exists. BASE_EXPORT bool ContentUriExists(const FilePath& content_uri); // Translates File::FLAG_* `open_flags` bitset to Java mode from // ParcelFileDescriptor#parseMode(): ("r", "w", "wt", "wa", "rw" or "rwt"). // Disallows "w" which has been the source of android security issues. // Returns nullopt if `open_flags` are not supported. BASE_EXPORT std::optional TranslateOpenFlagsToJavaMode( uint32_t open_flags); // Opens a content URI and returns the file descriptor to the caller. // `open_flags` is a bitmap of File::FLAG_* values. // Returns -1 if the URI is invalid. int OpenContentUri(const FilePath& content_uri, uint32_t open_flags); // Returns true if file exists and results are populated, else returns false. bool ContentUriGetFileInfo(const FilePath& content_uri, FileEnumerator::FileInfo* results); // Returns list of files in `content_uri` directory. std::vector ListContentUriDirectory( const FilePath& content_uri); // Deletes a content URI. bool DeleteContentUri(const FilePath& content_uri); // Returns whether `content_uri` is a Document URI. bool IsDocumentUri(const FilePath& content_uri); } // namespace internal // Gets MIME type from a content URI. Returns an empty string if the URI is // invalid. BASE_EXPORT std::string GetContentUriMimeType(const FilePath& content_uri); // Gets the display name from a content URI. Returns true if the name was found. BASE_EXPORT bool MaybeGetFileDisplayName(const FilePath& content_uri, std::u16string* file_display_name); // Build URI using tree_uri and encoded_document_id. BASE_EXPORT FilePath ContentUriBuildDocumentUriUsingTree(const FilePath& tree_uri, const std::string& encoded_document_id); // Returns the URI of the matching document, or if document does not exist and // `create` is true then returns a URI that can be used with // ContentUriGetDocumentFromQuery() to create the specified document under // `parent` directory with the specified `display_name` and `mime_type`. BASE_EXPORT FilePath ContentUriGetChildDocumentOrQuery(const FilePath& parent, const std::string& display_name, const std::string& mime_type, bool is_directory, bool create); // Returns whether this is a create-child-document query returned by // ContentUriGetChildDocumentOrQuery(). BASE_EXPORT bool ContentUriIsCreateChildDocumentQuery( const FilePath& content_uri); // Gets a document with the details encoded in `document_query` which must be // the result of calling ContentUriGetChildDocumentOrQuery(). If `create` is // true, the document will be created if it does not exist. BASE_EXPORT FilePath ContentUriGetDocumentFromQuery(const FilePath& document_query, bool create); } // namespace base #endif // BASE_ANDROID_CONTENT_URI_UTILS_H_