1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef OHOS_NAPI_MEDIA_INFO_HOLDER_H 17 #define OHOS_NAPI_MEDIA_INFO_HOLDER_H 18 19 #include "media_info_holder.h" 20 #include "napi/native_api.h" 21 22 namespace OHOS::AVSession { 23 class NapiMediaInfoHolder { 24 public: 25 static napi_status GetValue(napi_env env, napi_value in, MediaInfoHolder& out); 26 static napi_status SetValue(napi_env env, const MediaInfoHolder& in, napi_value& out); 27 28 using GetterType = std::function<napi_status(napi_env, napi_value in, MediaInfoHolder& out)>; 29 using SetterType = std::function<napi_status(napi_env env, const MediaInfoHolder& in, napi_value& out)>; 30 31 private: 32 static napi_status GetCurrentIndex(napi_env env, napi_value in, MediaInfoHolder& out); 33 static napi_status SetCurrentIndex(napi_env env, const MediaInfoHolder& in, napi_value& out); 34 35 static napi_status GetPlayInfos(napi_env env, napi_value in, MediaInfoHolder& out); 36 static napi_status SetPlayInfos(napi_env env, const MediaInfoHolder& in, napi_value& out); 37 38 static std::map<std::string, GetterType> getterMap_; 39 static std::map<int32_t, SetterType> setterMap_; 40 41 static constexpr int GETTER_INDEX = 0; 42 static constexpr int SETTER_INDEX = 1; 43 static constexpr int ENUM_INDEX = 2; 44 }; 45 } 46 #endif // OHOS_NAPI_MEDIA_INFO_HOLDER_H 47