DeviceHK.h 3.98 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * MIT License
xzl committed
3
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
xiongziliang committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
xzl committed
25 26 27 28 29 30 31 32 33 34 35 36 37
 */

#ifndef DEVICE_DEVICEHK_H_
#define DEVICE_DEVICEHK_H_

#include <sys/time.h>
#include "HCNetSDK.h"
#include "PlayM4.h"
#include "Device/Device.h"
#include "Util/onceToken.h"
#include "Util/logger.h"
#include "Util/TimeTicker.h"

xiongziliang committed
38
using namespace toolkit;
xzl committed
39

xiongziliang committed
40
namespace mediakit {
xzl committed
41 42 43

class connectInfo {
public:
44 45 46 47 48 49 50 51 52 53 54 55 56
    connectInfo(const char *_strDevIp,
                uint16_t _ui16DevPort,
                const char *_strUserName,
                const char *_strPwd) {
        strDevIp = _strDevIp;
        ui16DevPort = _ui16DevPort;
        strUserName = _strUserName;
        strPwd = _strPwd;
    }
    string strDevIp;
    uint16_t ui16DevPort;
    string strUserName;
    string strPwd;
xzl committed
57 58 59 60
};

class connectResult {
public:
61 62 63
    string strDevName;
    uint16_t ui16ChnStart;
    uint16_t ui16ChnCount;
xzl committed
64 65 66 67 68 69 70
};

typedef function<void(bool success, const connectResult &)> connectCB;
typedef function<void(bool success)> relustCB;

class Device: public enable_shared_from_this<Device> {
public:
71 72 73 74 75
    typedef std::shared_ptr<Device> Ptr;
    Device() {
    }
    virtual ~Device(){ disconnect([](bool bSuccess){
    });};
xzl committed
76

77
    virtual void connectDevice(const connectInfo &info, const connectCB &cb, int iTimeOut = 3)=0;
xzl committed
78

79 80
    virtual void disconnect(const relustCB &cb) {
    }
xzl committed
81

82
    virtual void addChannel(int iChnIndex, bool bMainStream = true)=0;
xzl committed
83

84
    virtual void delChannel(int iChnIndex)=0;
xzl committed
85

86
    virtual void addAllChannel(bool bMainStream = true)=0;
xzl committed
87 88

protected:
89 90 91 92
    void onConnected() {
    }
    void onDisconnected(bool bSelfDisconnect) {
    }
xzl committed
93 94 95 96 97 98 99

};


class DevChannelHK;
class DeviceHK: public Device {
public:
100 101 102
    typedef std::shared_ptr<DeviceHK> Ptr;
    DeviceHK();
    virtual ~DeviceHK();
xzl committed
103

104 105
    void connectDevice(const connectInfo &info, const connectCB &cb, int iTimeOut = 3) override;
    void disconnect(const relustCB &cb) override;
xzl committed
106

107 108 109
    void addChannel(int iChnIndex, bool bMainStream = true) override;
    void delChannel(int iChnIndex) override;
    void addAllChannel(bool bMainStream = true) override;
xzl committed
110
private:
111 112 113 114
    map<int, std::shared_ptr<DevChannel> > m_mapChannels;
    int64_t m_i64LoginId = -1;
    NET_DVR_DEVICEINFO_V30 m_deviceInfo;
    void onConnected(LONG lUserID, LPNET_DVR_DEVICEINFO_V30 lpDeviceInfo);
xzl committed
115 116 117 118
};

class DevChannelHK: public DevChannel {
public:
119 120 121
    typedef std::shared_ptr<DevChannel> Ptr;
    DevChannelHK(int64_t i64LoginId, const char *pcDevName, int iChn, bool bMainStream = true);
    virtual ~DevChannelHK();
xzl committed
122
protected:
123 124 125 126 127 128 129
    int64_t m_i64LoginId = -1;
    int64_t m_i64PreviewHandle = -1;
    int m_iPlayHandle = -1;
    void onPreview(DWORD dwDataType, BYTE *pBuffer, DWORD dwBufSize);
    void onGetDecData(char * pBuf, int nSize, FRAME_INFO * pFrameInfo);
    bool m_bVideoSeted = false;
    bool m_bAudioSeted = false;
xzl committed
130 131
};

xiongziliang committed
132
} /* namespace mediakit */
xzl committed
133 134

#endif /* DEVICE_DEVICEHK_H_ */