/* * Copyright (c) 2023 Fancy Code. * 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 SIX_FRAME_HANDLE_H #define SIX_FRAME_HANDLE_H #include "IAppManager.h" #include "IAppProtocolHandle.h" #include "StatusCode.h" #include #include #include #include #include #include using ResquesHandleFunc = std::function; class VParseUrl { public: VParseUrl() = default; virtual ~VParseUrl() = default; }; using ParseUrlResultFunc = void(const std::string &, const std::string &, std::shared_ptr &); template class ParseUrl : public VParseUrl { public: ParseUrl() {} virtual ~ParseUrl() = default; public: T mData; }; class SixFrameHandle : public IAppProtocolHandle { public: SixFrameHandle(); virtual ~SixFrameHandle() = default; // virtual void Init(void) {} // virtual void UnInit(void) {} void RequestHandle(const char *url, const unsigned int urlLength, ResponseHandle responseHandle, void *context) override; private: void ExtractParamsFromUrl(const std::string &url, ParseUrlResultFunc resultHandle, std::shared_ptr &context); void RequestHandle2(const std::string command, const std::string &url, ResponseHandle responseHandle, void *context); void DoNothing(const std::string &url, ResponseHandle responseHandle, void *context); void RequestGetProductInfo(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetProductInfo(cJSON *result, const AppGetProductInfo ¶m); void RequestGetDeviceAttr(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetDeviceAttr(cJSON *result, const AppGetDeviceAttr ¶m); void RequestGetMediaInfo(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetMediaInfo(cJSON *result, const AppGetMeidaInfo ¶m); void RequestGetSdCardInfo(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetSdCardInfo(cJSON *result, const AppGetSdCardInfo ¶m); void RequestGetBatteryInfo(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetBatteryInfo(cJSON *result, const AppGetBatteryInfo ¶m); AppParamValue RequestParamValueParse(const std::string &url); void RequestGetParamValue(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetParamValue(cJSON *result, const AppParamValue ¶m); void RequestGetCapability(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetCapability(cJSON *result, const AppGetCapability ¶m); void RequestGetLockVideoStatus(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetLockVideoStatus(cJSON *result, const LockVideoStatus ¶m); void RequestGetStorageInfo(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetStorageInfo(cJSON *result, const std::vector ¶m); AppGetFileInfo RequestGetFileListParse(const std::string &url); void RequestGetFileList(const std::string &url, ResponseHandle responseHandle, void *context); void ResponseGetFileList(cJSON *result, const std::vector ¶m, const AppGetFileInfo &fileInfo); AppSetDateTime RequestSetDateTimeParse(const std::string &url); void RequestSetDateTime(const std::string &url, ResponseHandle responseHandle, void *context); int RequestSetTimeZoneParse(const std::string &url); void RequestSetTimeZone(const std::string &url, ResponseHandle responseHandle, void *context); AppSetParamValue RequestSetParamValueParse(const std::string &url); void RequestSetParamValue(const std::string &url, ResponseHandle responseHandle, void *context); PlayBackEvent RequestPlaybackParse(const std::string &url); void RequestPlayback(const std::string &url, ResponseHandle responseHandle, void *context); void RequestEnterRecorder(const std::string &url, ResponseHandle responseHandle, void *context); void RequestUpload(const std::string &url, ResponseHandle responseHandle, void *context); std::string RequestGetThumbnailParse(const std::string &url); void RequestGetThumbnail(const std::string &url, ResponseHandle responseHandle, void *context); private: cJSON *MakeResponseResult(const ResposeResult result, const bool requestSet = false); void ResponseJsonString(cJSON *json, ResponseHandle responseHandle, void *context); const char *PrintfFileEvent(const AppGetFileInfo &fileInfo); protected: void SetAppMonitor(std::shared_ptr &monitor) override; private: std::map mResquesHandleFunc; std::shared_ptr mAppMonitor; }; #endif