/*
 * 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 NATIVE_XCOMPONENT_PLUGIN_MANAGER_H
#define NATIVE_XCOMPONENT_PLUGIN_MANAGER_H

#include <ace/xcomponent/native_interface_xcomponent.h>
#include <cstdint>
#include <js_native_api.h>
#include <js_native_api_types.h>
#include <napi/native_api.h>
#include <string>
#include <unordered_map>
#include "../render/egl_core.h"
#include "render/EGLRender.h"
#include "arkui/native_node.h"
#include "arkui/native_node_napi.h"

#include "../render/plugin_render.h"
// [Start plugin_manager_h_part]
// plugin_manager.h
namespace NativeXComponentSample {
// [StartExclude plugin_manager_h_part]
constexpr const int FIRST_ARG = 1;
constexpr const int SECOND_ARG = 2;
constexpr const int THIRD_ARG = 3;
constexpr const int FRAME_COUNT = 50;
// [Start plugin_manager_h]
// 在头文件中定义PluginManager类
// [EndExclude plugin_manager_h_part]
class PluginManager {
public:
    // [StartExclude plugin_manager_h_part]
    static OH_NativeXComponent_Callback callback_;
    PluginManager();
    ~PluginManager();

    static PluginManager* GetInstance()
    {
        return &PluginManager::pluginManager_;
    }
    static napi_value createNativeNode(napi_env env, napi_callback_info info);
    static napi_value GetXComponentStatus(napi_env env, napi_callback_info info);
    static napi_value NapiDrawPattern(napi_env env, napi_callback_info info);
    // [StartExclude plugin_manager_h]
    static napi_value GetContext(napi_env env, napi_callback_info info);
    // [EndExclude plugin_manager_h_part]
    static napi_value BindNode(napi_env env, napi_callback_info info);
    static napi_value UnbindNode(napi_env env, napi_callback_info info);
    static napi_value SetFrameRate(napi_env env, napi_callback_info info);
    static napi_value SetNeedSoftKeyboard(napi_env env, napi_callback_info info);
    // [StartExclude plugin_manager_h_part]
    static napi_value Initialize(napi_env env, napi_callback_info info);
    static napi_value Finalize(napi_env env, napi_callback_info info);
    static napi_value DrawStar(napi_env env, napi_callback_info info);
    // [EndExclude plugin_manager_h]
    // CApi XComponent
    void OnSurfaceChanged(OH_NativeXComponent* component, void* window);
    void OnSurfaceDestroyed(OH_NativeXComponent* component, void* window);
    void DispatchTouchEvent(OH_NativeXComponent* component, void* window);
    void OnSurfaceCreated(OH_NativeXComponent* component, void* window);
    // [StartExclude plugin_manager_h]
    void SetNativeXComponent(std::string& id, OH_NativeXComponent* nativeXComponent);
    PluginRender* GetRender(std::string& id);
    void Export(napi_env env, napi_value exports);
    // [EndExclude plugin_manager_h]

private:
    static PluginManager pluginManager_;

    std::unordered_map<std::string, OH_NativeXComponent*> nativeXComponentMap_;
    // [StartExclude plugin_manager_h]
    std::unordered_map<std::string, PluginRender*> pluginRenderMap_;
    // [EndExclude plugin_manager_h]
    std::unordered_map<std::string, PluginManager*> pluginManagerMap_;
    // [EndExclude plugin_manager_h_part]

public:
    // [StartExclude plugin_manager_h_part]
    EGLCore *eglcore_;
    uint64_t width_;
    uint64_t height_;
    OH_NativeXComponent_TouchEvent touchEvent_;
    static int32_t hasDraw_;
    static int32_t hasChangeColor_;
    // [EndExclude plugin_manager_h_part]
    // [StartExclude plugin_manager_h]
    static std::unordered_map<std::string, ArkUI_NodeHandle> nodeHandleMap_;
    static std::unordered_map<void *, OH_ArkUI_SurfaceCallback *> callbackMap_;
    static std::unordered_map<void *, OH_ArkUI_SurfaceHolder *> surfaceHolderMap_;
    static ArkUI_AccessibilityProvider *provider_;
    // [EndExclude plugin_manager_h]
};
// [End plugin_manager_h]
} // namespace NativeXComponentSample
// [End plugin_manager_h_part]
#endif // NATIVE_XCOMPONENT_PLUGIN_MANAGER_H