* Copyright (C) 2025 Huawei Device Co., Ltd.
* 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 FRAMEWORKS_ANI_SRC_INCLUDE_FILE_ASSET_ANI_H
#define FRAMEWORKS_ANI_SRC_INCLUDE_FILE_ASSET_ANI_H
#include <memory>
#include <string>
#include "ani_error.h"
#include "datashare_predicates.h"
#include "datashare_values_bucket.h"
#include "file_asset.h"
#include "pixel_map.h"
#include "thumbnail_manager_ani.h"
namespace OHOS {
namespace Media {
constexpr int64_t SECONDS_LEVEL_LIMIT = 1e10;
static const std::string MEDIA_FILEMODE = "mode";
struct FileAssetContext : public AniError {
std::shared_ptr<FileAsset> objectPtr;
OHOS::DataShare::DataShareValuesBucket valuesBucket;
ani_ref callbackRef;
int32_t beginStamp;
int32_t type;
Size size;
int32_t changedRows;
int32_t fd;
int32_t analysisType = AnalysisType::ANALYSIS_INVALID;
int64_t assetId = 0;
std::string title;
bool isFavorite = false;
bool isHidden = false;
bool hasEdit = false;
bool isPending = false;
std::string analysisData;
std::string path;
std::shared_ptr<PixelMap> pixelmap;
ResultNapiType resultNapiType;
std::string userComment;
std::string uri;
char* editDataBuffer;
std::string extension;
uint32_t businessCode = 0;
std::string uniqueId;
};
struct FileAssetAniMethod {
ani_class cls;
ani_method ctor;
ani_method setUri;
ani_method setPhotoType;
ani_method setDisplayName;
};
class FileAssetAni {
public:
explicit FileAssetAni(std::shared_ptr<FileAsset> fileAsset);
FileAssetAni();
~FileAssetAni();
std::shared_ptr<FileAsset> GetFileAssetInstance() const;
static FileAssetAni* CreatePhotoAsset(ani_env *env, std::shared_ptr<FileAsset> &fileAsset);
static FileAssetAni* CreateFileAsset(ani_env *env, std::unique_ptr<FileAsset> &fileAsset);
static ani_status UserFileMgrInit(ani_env *env);
static ani_status PhotoAccessHelperInit(ani_env *env);
static void Destructor([[maybe_unused]] ani_env env, void *nativeObject, void *finalize_hint);
static ani_object Wrap(ani_env *env, FileAssetAni *fileAssetAni, const FileAssetAniMethod &fileAssetAniMethod);
static FileAssetAni* Unwrap(ani_env *env, ani_object object);
static ani_status InitFileAssetAniMethod(ani_env *env, ResultNapiType classType,
FileAssetAniMethod &fileAssetAniMethod);
static void Set(ani_env *env, ani_object object, ani_string member, ani_string value);
static ani_object Get(ani_env *env, ani_object object, ani_string member);
static void PhotoAccessHelperCommitModify(ani_env *env, ani_object object);
static ani_double PhotoAccessHelperOpen(ani_env *env, ani_object object, ani_string mode);
static void PhotoAccessHelperClose(ani_env *env, ani_object object, ani_double fd);
static ani_object PhotoAccessHelperGetThumbnail(ani_env *env, ani_object object, ani_object size);
static void PhotoAccessHelperSetUserComment(ani_env *env, ani_object object, ani_string userComment);
static ani_string PhotoAccessHelperGetAnalysisData(ani_env *env, ani_object object, ani_enum_item analysisType);
static ani_string PhotoAccessHelperRequestEditData(ani_env *env, ani_object object);
static ani_object PhotoAccessHelperGetEditData(ani_env *env, ani_object object);
static ani_object PhotoAccessHelperCloneAsset(ani_env *env, ani_object object, ani_string title);
static ani_object PhotoAccessHelperConvertFormat(ani_env *env, ani_object object, ani_string title,
ani_enum_item imageFormat);
static ani_int PhotoAccessHelperRequestSource(ani_env *env, ani_object object);
static void PhotoAccessHelperCommitEditedAsset(ani_env *env, ani_object object,
ani_string editData, ani_string uri);
static void PhotoAccessHelperRevertToOriginal(ani_env *env, ani_object object);
static ani_string PhotoAccessHelperRequestPhoto(ani_env *env, ani_object object, ani_fn_object callbackOn,
ani_object option);
static void PhotoAccessHelperCancelPhotoRequest(ani_env *env, ani_object object, ani_string requestId);
static ani_object PhotoAccessHelperGetKeyFrameThumbnail(ani_env *env, ani_object object,
ani_long beginFrameTimeMs, ani_enum_item type);
static void PhotoAccessHelperSetHidden(ani_env *env, ani_object object, ani_boolean hiddenState);
static void PhotoAccessHelperSetFavorite(ani_env *env, ani_object object, ani_boolean favoriteState);
static ani_boolean PhotoAccessHelperIsEdited(ani_env *env, ani_object object);
static ani_object PhotoAccessHelperGetThumbnailData(ani_env *env, ani_object object, ani_enum_item type);
static ani_string GetExif(ani_env *env, ani_object object);
static ani_status PhotoAccessHelperSetPending(ani_env *env, ani_object object, ani_boolean pendingState);
static ani_string PhotoAccessHelperGenerateUniqueIdSync(ani_env *env, ani_object object);
std::string GetFileDisplayName() const;
std::string GetFileUri() const;
int32_t GetFileId() const;
static ani_ref TransferToDynamicPhotoAsset(ani_env *env, [[maybe_unused]] ani_class, ani_object input);
static ani_object TransferToStaticPhotoAsset(ani_env *env, [[maybe_unused]] ani_class, ani_object input);
private:
static thread_local std::shared_ptr<FileAsset> sFileAsset_;
std::shared_ptr<FileAsset> fileAssetPtr = nullptr;
static std::shared_ptr<ThumbnailManagerAni> thumbnailManager_;
};
}
}
#endif