|
|
@@ -0,0 +1,357 @@ |
|
|
|
using System; |
|
|
|
using System.Runtime.InteropServices; |
|
|
|
|
|
|
|
namespace AlarmCSharpDemo |
|
|
|
{ |
|
|
|
/// <summary> |
|
|
|
/// CHCNetSDK 的摘要说明。 |
|
|
|
/// </summary> |
|
|
|
public class CHCNetSDK |
|
|
|
{ |
|
|
|
public CHCNetSDK() |
|
|
|
{ |
|
|
|
// |
|
|
|
// TODO: 在此处添加构造函数逻辑 |
|
|
|
// |
|
|
|
} |
|
|
|
//常量 |
|
|
|
public const int SERIALNO_LEN = 48;//序列号长度 |
|
|
|
public const int NAME_LEN = 32;//用户名长度 |
|
|
|
public const int PASSWD_LEN = 16;//密码长度 |
|
|
|
public const int MACADDR_LEN = 6;//mac地址长度 |
|
|
|
public const int MAX_NAMELEN = 16;//DVR本地登陆名 |
|
|
|
public const int ACS_CARD_NO_LEN = 32; //门禁卡号长度 |
|
|
|
|
|
|
|
public delegate void LOGINRESULTCALLBACK(int lUserID, int dwResult, IntPtr lpDeviceInfo, IntPtr pUser); |
|
|
|
/********************************************************* |
|
|
|
Function: EXCEPYIONCALLBACK |
|
|
|
Desc: (回调函数) |
|
|
|
Input: |
|
|
|
Output: |
|
|
|
Return: |
|
|
|
**********************************************************/ |
|
|
|
public delegate void EXCEPYIONCALLBACK(uint dwType, int lUserID, int lHandle, IntPtr pUser); |
|
|
|
public delegate bool MSGCallBack_V31(int lCommand, ref NET_DVR_ALARMER pAlarmer, IntPtr pAlarmInfo, uint dwBufLen, IntPtr pUser); |
|
|
|
|
|
|
|
//报警设备信息 |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential, CharSet = CharSet.Ansi)] |
|
|
|
public struct NET_DVR_ALARMER |
|
|
|
{ |
|
|
|
public byte byUserIDValid;/* userid是否有效 0-无效,1-有效 */ |
|
|
|
public byte bySerialValid;/* 序列号是否有效 0-无效,1-有效 */ |
|
|
|
public byte byVersionValid;/* 版本号是否有效 0-无效,1-有效 */ |
|
|
|
public byte byDeviceNameValid;/* 设备名字是否有效 0-无效,1-有效 */ |
|
|
|
public byte byMacAddrValid; /* MAC地址是否有效 0-无效,1-有效 */ |
|
|
|
public byte byLinkPortValid;/* login端口是否有效 0-无效,1-有效 */ |
|
|
|
public byte byDeviceIPValid;/* 设备IP是否有效 0-无效,1-有效 */ |
|
|
|
public byte bySocketIPValid;/* socket ip是否有效 0-无效,1-有效 */ |
|
|
|
public int lUserID; /* NET_DVR_Login()返回值, 布防时有效 */ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = SERIALNO_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sSerialNumber;/* 序列号 */ |
|
|
|
public uint dwDeviceVersion;/* 版本信息 高16位表示主版本,低16位表示次版本*/ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NAME_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sDeviceName;/* 设备名字 */ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = MACADDR_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byMacAddr;/* MAC地址 */ |
|
|
|
public ushort wLinkPort; /* link port */ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 128, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sDeviceIP;/* IP地址 */ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 128, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sSocketIP;/* 报警主动上传时的socket IP地址 */ |
|
|
|
public byte byIpProtocol; /* Ip协议 0-IPV4, 1-IPV6 */ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 11, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes2; |
|
|
|
} |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_LOCAL_GENERAL_CFG |
|
|
|
{ |
|
|
|
public byte byExceptionCbDirectly; //0-通过线程池异常回调,1-直接异常回调给上层 |
|
|
|
public byte byNotSplitRecordFile; //回放和预览中保存到本地录像文件不切片 0-默认切片,1-不切片 |
|
|
|
public byte byResumeUpgradeEnable; //断网续传升级使能,0-关闭(默认),1-开启 |
|
|
|
public byte byAlarmJsonPictureSeparate; //控制JSON透传报警数据和图片是否分离,0-不分离,1-分离(分离后走COMM_ISAPI_ALARM回调返回) |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 4, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes; //保留 |
|
|
|
public Int64 i64FileSize; //单位:Byte |
|
|
|
public uint dwResumeUpgradeTimeout; //断网续传重连超时时间,单位毫秒 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 236, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes1; //预留 |
|
|
|
} |
|
|
|
|
|
|
|
public const int NET_DVR_DEV_ADDRESS_MAX_LEN = 129; |
|
|
|
public const int NET_DVR_LOGIN_USERNAME_MAX_LEN = 64; |
|
|
|
public const int NET_DVR_LOGIN_PASSWD_MAX_LEN = 64; |
|
|
|
[StructLayout(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_USER_LOGIN_INFO |
|
|
|
{ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NET_DVR_DEV_ADDRESS_MAX_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sDeviceAddress; |
|
|
|
public byte byUseTransport; |
|
|
|
public ushort wPort; |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NET_DVR_LOGIN_USERNAME_MAX_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sUserName; |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NET_DVR_LOGIN_PASSWD_MAX_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sPassword; |
|
|
|
public LOGINRESULTCALLBACK cbLoginResult; |
|
|
|
public IntPtr pUser; |
|
|
|
public bool bUseAsynLogin; |
|
|
|
public byte byProxyType; //0:不使用代理,1:使用标准代理,2:使用EHome代理 |
|
|
|
public byte byUseUTCTime; //0-不进行转换,默认,1-接口上输入输出全部使用UTC时间,SDK完成UTC时间与设备时区的转换,2-接口上输入输出全部使用平台本地时间,SDK完成平台本地时间与设备时区的转换 |
|
|
|
public byte byLoginMode; //0-Private, 1-ISAPI, 2-自适应 |
|
|
|
public byte byHttps; //0-不适用tls,1-使用tls 2-自适应 |
|
|
|
public int iProxyID; //代理服务器序号,添加代理服务器信息时,相对应的服务器数组下表值 |
|
|
|
public byte byVerifyMode; //认证方式,0-不认证,1-双向认证,2-单向认证;认证仅在使用TLS的时候生效; |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 119, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes3; |
|
|
|
} |
|
|
|
//NET_DVR_Login_V30()参数结构 |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_DEVICEINFO_V30 |
|
|
|
{ |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = SERIALNO_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sSerialNumber; //序列号 |
|
|
|
public byte byAlarmInPortNum; //报警输入个数 |
|
|
|
public byte byAlarmOutPortNum; //报警输出个数 |
|
|
|
public byte byDiskNum; //硬盘个数 |
|
|
|
public byte byDVRType; //设备类型, 1:DVR 2:ATM DVR 3:DVS ...... |
|
|
|
public byte byChanNum; //模拟通道个数 |
|
|
|
public byte byStartChan; //起始通道号,例如DVS-1,DVR - 1 |
|
|
|
public byte byAudioChanNum; //语音通道数 |
|
|
|
public byte byIPChanNum; //最大数字通道个数,低位 |
|
|
|
public byte byZeroChanNum; //零通道编码个数 //2010-01-16 |
|
|
|
public byte byMainProto; //主码流传输协议类型 0-private, 1-rtsp,2-同时支持private和rtsp |
|
|
|
public byte bySubProto; //子码流传输协议类型0-private, 1-rtsp,2-同时支持private和rtsp |
|
|
|
public byte bySupport; //能力,位与结果为0表示不支持,1表示支持, |
|
|
|
//bySupport & 0x1, 表示是否支持智能搜索 |
|
|
|
//bySupport & 0x2, 表示是否支持备份 |
|
|
|
//bySupport & 0x4, 表示是否支持压缩参数能力获取 |
|
|
|
//bySupport & 0x8, 表示是否支持多网卡 |
|
|
|
//bySupport & 0x10, 表示支持远程SADP |
|
|
|
//bySupport & 0x20, 表示支持Raid卡功能 |
|
|
|
//bySupport & 0x40, 表示支持IPSAN 目录查找 |
|
|
|
//bySupport & 0x80, 表示支持rtp over rtsp |
|
|
|
public byte bySupport1; // 能力集扩充,位与结果为0表示不支持,1表示支持 |
|
|
|
//bySupport1 & 0x1, 表示是否支持snmp v30 |
|
|
|
//bySupport1 & 0x2, 支持区分回放和下载 |
|
|
|
//bySupport1 & 0x4, 是否支持布防优先级 |
|
|
|
//bySupport1 & 0x8, 智能设备是否支持布防时间段扩展 |
|
|
|
//bySupport1 & 0x10, 表示是否支持多磁盘数(超过33个) |
|
|
|
//bySupport1 & 0x20, 表示是否支持rtsp over http |
|
|
|
//bySupport1 & 0x80, 表示是否支持车牌新报警信息2012-9-28, 且还表示是否支持NET_DVR_IPPARACFG_V40结构体 |
|
|
|
public byte bySupport2; /*能力,位与结果为0表示不支持,非0表示支持 |
|
|
|
bySupport2 & 0x1, 表示解码器是否支持通过URL取流解码 |
|
|
|
bySupport2 & 0x2, 表示支持FTPV40 |
|
|
|
bySupport2 & 0x4, 表示支持ANR |
|
|
|
bySupport2 & 0x8, 表示支持CCD的通道参数配置 |
|
|
|
bySupport2 & 0x10, 表示支持布防报警回传信息(仅支持抓拍机报警 新老报警结构) |
|
|
|
bySupport2 & 0x20, 表示是否支持单独获取设备状态子项 |
|
|
|
bySupport2 & 0x40, 表示是否是码流加密设备*/ |
|
|
|
public ushort wDevType; //设备型号 |
|
|
|
public byte bySupport3; //能力集扩展,位与结果为0表示不支持,1表示支持 |
|
|
|
//bySupport3 & 0x1, 表示是否多码流 |
|
|
|
// bySupport3 & 0x4 表示支持按组配置, 具体包含 通道图像参数、报警输入参数、IP报警输入、输出接入参数、 |
|
|
|
// 用户参数、设备工作状态、JPEG抓图、定时和时间抓图、硬盘盘组管理 |
|
|
|
//bySupport3 & 0x8为1 表示支持使用TCP预览、UDP预览、多播预览中的"延时预览"字段来请求延时预览(后续都将使用这种方式请求延时预览)。而当bySupport3 & 0x8为0时,将使用 "私有延时预览"协议。 |
|
|
|
//bySupport3 & 0x10 表示支持"获取报警主机主要状态(V40)"。 |
|
|
|
//bySupport3 & 0x20 表示是否支持通过DDNS域名解析取流 |
|
|
|
|
|
|
|
public byte byMultiStreamProto;//是否支持多码流,按位表示,0-不支持,1-支持,bit1-码流3,bit2-码流4,bit7-主码流,bit-8子码流 |
|
|
|
public byte byStartDChan; //起始数字通道号,0表示无效 |
|
|
|
public byte byStartDTalkChan; //起始数字对讲通道号,区别于模拟对讲通道号,0表示无效 |
|
|
|
public byte byHighDChanNum; //数字通道个数,高位 |
|
|
|
public byte bySupport4; |
|
|
|
public byte byLanguageType;// 支持语种能力,按位表示,每一位0-不支持,1-支持 |
|
|
|
// byLanguageType 等于0 表示 老设备 |
|
|
|
// byLanguageType & 0x1表示支持中文 |
|
|
|
// byLanguageType & 0x2表示支持英文 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 9, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes2; //保留 |
|
|
|
} |
|
|
|
[StructLayout(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_DEVICEINFO_V40 |
|
|
|
{ |
|
|
|
public NET_DVR_DEVICEINFO_V30 struDeviceV30; |
|
|
|
public byte bySupportLock; //设备支持锁定功能,该字段由SDK根据设备返回值来赋值的。bySupportLock为1时,dwSurplusLockTime和byRetryLoginTime有效 |
|
|
|
public byte byRetryLoginTime; //剩余可尝试登陆的次数,用户名,密码错误时,此参数有效 |
|
|
|
public byte byPasswordLevel; //admin密码安全等级0-无效,1-默认密码,2-有效密码,3-风险较高的密码。当用户的密码为出厂默认密码(12345)或者风险较高的密码时,上层客户端需要提示用户更改密码。 |
|
|
|
public byte byProxyType;//代理类型,0-不使用代理, 1-使用socks5代理, 2-使用EHome代理 |
|
|
|
public uint dwSurplusLockTime; //剩余时间,单位秒,用户锁定时,此参数有效 |
|
|
|
public byte byCharEncodeType; //字符编码类型 |
|
|
|
public byte bySupportDev5;//支持v50版本的设备参数获取,设备名称和设备类型名称长度扩展为64字节 |
|
|
|
public byte bySupport; //能力集扩展,位与结果:0- 不支持,1- 支持 |
|
|
|
// bySupport & 0x1: 保留 |
|
|
|
// bySupport & 0x2: 0-不支持变化上报 1-支持变化上报 |
|
|
|
public byte byLoginMode; //登录模式 0-Private登录 1-ISAPI登录 |
|
|
|
public int dwOEMCode; |
|
|
|
public int iResidualValidity; //该用户密码剩余有效天数,单位:天,返回负值,表示密码已经超期使用,例如“-3表示密码已经超期使用3天” |
|
|
|
public byte byResidualValidity; // iResidualValidity字段是否有效,0-无效,1-有效 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 243, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes2; |
|
|
|
} |
|
|
|
//报警布防参数结构体 |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_SETUPALARM_PARAM |
|
|
|
{ |
|
|
|
public uint dwSize; |
|
|
|
public byte byLevel;//布防优先级:0- 一等级(高),1- 二等级(中),2- 三等级(低,保留) |
|
|
|
public byte byAlarmInfoType;//上传报警信息类型(智能交通摄像机支持):0- 老报警信息(NET_DVR_PLATE_RESULT),1- 新报警信息(NET_ITS_PLATE_RESULT) |
|
|
|
public byte byRetAlarmTypeV40; |
|
|
|
public byte byRetDevInfoVersion; |
|
|
|
public byte byRetVQDAlarmType; |
|
|
|
public byte byFaceAlarmDetection; |
|
|
|
public byte bySupport; |
|
|
|
public byte byBrokenNetHttp; |
|
|
|
public ushort wTaskNo; |
|
|
|
public byte byDeployType; //布防类型:0-客户端布防,1-实时布防 |
|
|
|
public byte bySubScription; //订阅,按位表示,未开启订阅不上报 //占位 //Bit7-移动侦测人车分类是否传图;0-不传图(V30上报),1-传图(V40上报) |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 2, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes1; |
|
|
|
public byte byAlarmTypeURL; |
|
|
|
//bit0-表示人脸抓拍报警上传(INTER_FACESNAP_RESULT);0-表示二进制传输,1-表示URL传输(设备支持的情况下,设备支持能力根据具体报警能力集判断,同时设备需要支持URL的相关服务,当前是”云存储“) |
|
|
|
//bit1-表示EVENT_JSON中图片数据长传类型;0-表示二进制传输,1-表示URL传输(设备支持的情况下,设备支持能力根据具体报警能力集判断) |
|
|
|
//bit2 - 人脸比对(报警类型为COMM_SNAP_MATCH_ALARM)中图片数据上传类型:0 - 二进制传输,1 - URL传输 |
|
|
|
//bit3 - 行为分析(报警类型为COMM_ALARM_RULE)中图片数据上传类型:0 - 二进制传输,1 - URL传输,本字段设备是否支持,对应软硬件能力集中<isSupportBehaviorUploadByCloudStorageURL>节点是否返回且为true |
|
|
|
public byte byCustomCtrl;//Bit0- 表示支持副驾驶人脸子图上传: 0-不上传,1-上传 |
|
|
|
} |
|
|
|
//校时结构参数 |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_TIME |
|
|
|
{ |
|
|
|
public uint dwYear; |
|
|
|
public uint dwMonth; |
|
|
|
public uint dwDay; |
|
|
|
public uint dwHour; |
|
|
|
public uint dwMinute; |
|
|
|
public uint dwSecond; |
|
|
|
} |
|
|
|
/*IP地址*/ |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential, CharSet = CharSet.Ansi)] |
|
|
|
public struct NET_DVR_IPADDR |
|
|
|
{ |
|
|
|
|
|
|
|
/// char[16] |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 16, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sIpV4; |
|
|
|
|
|
|
|
/// BYTE[128] |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 128, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes; |
|
|
|
|
|
|
|
public void Init() |
|
|
|
{ |
|
|
|
byRes = new byte[128]; |
|
|
|
} |
|
|
|
} |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_ACS_EVENT_INFO |
|
|
|
{ |
|
|
|
public uint dwSize; |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = ACS_CARD_NO_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byCardNo; //卡号,为0无效 |
|
|
|
public byte byCardType; //卡类型,1-普通卡,2-残疾人卡,3-黑名单卡,4-巡更卡,5-胁迫卡,6-超级卡,7-来宾卡,为0无效 |
|
|
|
public byte byWhiteListNo; //白名单单号,1-8,为0无效 |
|
|
|
public byte byReportChannel; //报告上传通道,1-布防上传,2-中心组1上传,3-中心组2上传,为0无效 |
|
|
|
public byte byCardReaderKind; //读卡器属于哪一类,0-无效,1-IC读卡器,2-身份证读卡器,3-二维码读卡器,4-指纹头 |
|
|
|
public uint dwCardReaderNo; //读卡器编号,为0无效 |
|
|
|
public uint dwDoorNo; //门编号(楼层编号),为0无效 |
|
|
|
public uint dwVerifyNo; //多重卡认证序号,为0无效 |
|
|
|
public uint dwAlarmInNo; //报警输入号,为0无效 |
|
|
|
public uint dwAlarmOutNo; //报警输出号,为0无效 |
|
|
|
public uint dwCaseSensorNo; //事件触发器编号 |
|
|
|
public uint dwRs485No; //RS485通道号,为0无效 |
|
|
|
public uint dwMultiCardGroupNo; //群组编号 |
|
|
|
public ushort wAccessChannel; //人员通道号 |
|
|
|
public byte byDeviceNo; //设备编号,为0无效 |
|
|
|
public byte byDistractControlNo;//分控器编号,为0无效 |
|
|
|
public uint dwEmployeeNo; //工号,为0无效 |
|
|
|
public ushort wLocalControllerID; //就地控制器编号,0-门禁主机,1-64代表就地控制器 |
|
|
|
public byte byInternetAccess; //网口ID:(1-上行网口1,2-上行网口2,3-下行网口1) |
|
|
|
public byte byType; //防区类型,0:即时防区,1-24小时防区,2-延时防区 ,3-内部防区,4-钥匙防区 5-火警防区 6-周界防区 7-24小时无声防区 8-24小时辅助防区,9-24小时震动防区,10-门禁紧急开门防区,11-门禁紧急关门防区 0xff-无 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = MACADDR_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byMACAddr; //物理地址,为0无效 |
|
|
|
public byte bySwipeCardType;//刷卡类型,0-无效,1-二维码 |
|
|
|
public byte byMask;//是否带口罩:0-保留,1-未知,2-不戴口罩,3-戴口罩 |
|
|
|
public uint dwSerialNo; //事件流水号,为0无效 |
|
|
|
public byte byChannelControllerID; //通道控制器ID,为0无效,1-主通道控制器,2-从通道控制器 |
|
|
|
public byte byChannelControllerLampID; //通道控制器灯板ID,为0无效(有效范围1-255) |
|
|
|
public byte byChannelControllerIRAdaptorID; //通道控制器红外转接板ID,为0无效(有效范围1-255) |
|
|
|
public byte byChannelControllerIREmitterID; //通道控制器红外对射ID,为0无效(有效范围1-255) |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 4, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes; |
|
|
|
} |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_ACS_ALARM_INFO |
|
|
|
{ |
|
|
|
public uint dwSize; |
|
|
|
public uint dwMajor; //报警主类型,参考宏定义 |
|
|
|
public uint dwMinor; //报警次类型,参考宏定义 |
|
|
|
public NET_DVR_TIME struTime; //时间 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = MAX_NAMELEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] sNetUser;//网络操作的用户名 |
|
|
|
public NET_DVR_IPADDR struRemoteHostAddr;//远程主机地址 |
|
|
|
public NET_DVR_ACS_EVENT_INFO struAcsEventInfo; //详细参数 |
|
|
|
public uint dwPicDataLen; //图片数据大小,不为0是表示后面带数据 |
|
|
|
public IntPtr pPicData; |
|
|
|
public ushort wInductiveEventType; //归纳事件类型,0-无效,客户端判断该值为非0值后,报警类型通过归纳事件类型区分,否则通过原有报警主次类型(dwMajor、dwMinor)区分 |
|
|
|
public byte byPicTransType; //图片数据传输方式: 0-二进制;1-url |
|
|
|
public byte byRes1; //保留字节 |
|
|
|
public uint dwIOTChannelNo; //IOT通道号 |
|
|
|
public IntPtr pAcsEventInfoExtend; //byAcsEventInfoExtend为1时,表示指向一个NET_DVR_ACS_EVENT_INFO_EXTEND结构体 |
|
|
|
public byte byAcsEventInfoExtend; //pAcsEventInfoExtend是否有效:0-无效,1-有效 |
|
|
|
public byte byTimeType; //时间类型:0-设备本地时间,1-UTC时间(struTime的时间) |
|
|
|
public byte byRes2; //保留字节 |
|
|
|
public byte byAcsEventInfoExtendV20; //pAcsEventInfoExtendV20是否有效:0-无效,1-有效 |
|
|
|
public IntPtr pAcsEventInfoExtendV20; //byAcsEventInfoExtendV20为1时,表示指向一个NET_DVR_ACS_EVENT_INFO_EXTEND_V20结构体 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 4, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes; |
|
|
|
} |
|
|
|
public const int NET_SDK_EMPLOYEE_NO_LEN = 32; //工号长度 |
|
|
|
public const int NET_SDK_UUID_LEN = 36; //UUID长度 |
|
|
|
public const int NET_DEV_NAME_LEN = 64; //设备名称长度 |
|
|
|
[StructLayoutAttribute(LayoutKind.Sequential)] |
|
|
|
public struct NET_DVR_ACS_EVENT_INFO_EXTEND |
|
|
|
{ |
|
|
|
public int dwFrontSerialNo; //事件流水号,为0无效(若该字段为0,平台根据dwSerialNo判断是否丢失事件;若该字段不为0,平台根据该字段和dwSerialNo字段共同判断是否丢失事件)(主要用于解决报警订阅后导致dwSerialNo不连续的情况) |
|
|
|
public byte byUserType; //人员类型:0-无效,1-普通人(主人),2-来宾(访客),3-黑名单人,4-管理员 |
|
|
|
public byte byCurrentVerifyMode; //读卡器当前验证方式:0-无效,1-休眠,2-刷卡+密码,3-刷卡,4-刷卡或密码,5-指纹,6-指纹+密码,7-指纹或刷卡,8-指纹+刷卡,9-指纹+刷卡+密码,10-人脸或指纹或刷卡或密码,11-人脸+指纹,12-人脸+密码,13-人脸+刷卡,14-人脸,15-工号+密码,16-指纹或密码,17-工号+指纹,18-工号+指纹+密码,19-人脸+指纹+刷卡,20-人脸+密码+指纹,21-工号+人脸,22-人脸或人脸+刷卡,23-指纹或人脸,24-刷卡或人脸或密码,25-刷卡或人脸,26-刷卡或人脸或指纹,27-刷卡或指纹或密码 |
|
|
|
public byte byCurrentEvent; //是否为实时事件:0-无效,1-是(实时事件),2-否(离线事件) |
|
|
|
public byte byPurePwdVerifyEnable; //设备是否支持纯密码认证, 0-不支持,1-支持 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NET_SDK_EMPLOYEE_NO_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byEmployeeNo; //工号(人员ID)(对于设备来说,如果使用了工号(人员ID)字段,byEmployeeNo一定要传递,如果byEmployeeNo可转换为dwEmployeeNo,那么该字段也要传递;对于上层平台或客户端来说,优先解析byEmployeeNo字段,如该字段为空,再考虑解析dwEmployeeNo字段) |
|
|
|
public byte byAttendanceStatus; //考勤状态:0-未定义,1-上班,2-下班,3-开始休息,4-结束休息,5-开始加班,6-结束加班 |
|
|
|
public byte byStatusValue; //考勤状态值 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 2, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes2; |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NET_SDK_UUID_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byUUID; //UUID(该字段仅在对接萤石平台过程中才会使用) |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = NET_DEV_NAME_LEN, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byDeviceName; //设备序列号 |
|
|
|
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 24, ArraySubType = UnmanagedType.I1)] |
|
|
|
public byte[] byRes; |
|
|
|
} |
|
|
|
|
|
|
|
/********************************************************* |
|
|
|
Function: NET_DVR_Init |
|
|
|
Desc: 初始化SDK,调用其他SDK函数的前提。 |
|
|
|
Input: |
|
|
|
Output: |
|
|
|
Return: TRUE表示成功,FALSE表示失败。 |
|
|
|
**********************************************************/ |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern bool NET_DVR_Init(); |
|
|
|
//启用日志文件写入接口 |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern bool NET_DVR_SetLogToFile(int bLogEnable, string strLogDir, bool bAutoDel); |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern bool NET_DVR_SetSDKLocalCfg(int enumType, IntPtr lpInBuff); |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern uint NET_DVR_GetLastError(); |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern bool NET_DVR_SetExceptionCallBack_V30(uint nMessage, IntPtr hWnd, EXCEPYIONCALLBACK fExceptionCallBack, IntPtr pUser); |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern bool NET_DVR_SetDVRMessageCallBack_V31(MSGCallBack_V31 fMessageCallBack, IntPtr pUser); |
|
|
|
[DllImport(@"HCNetSDK.dll")] |
|
|
|
public static extern int NET_DVR_Login_V40(ref NET_DVR_USER_LOGIN_INFO pLoginInfo, ref NET_DVR_DEVICEINFO_V40 lpDeviceInfo); |
|
|
|
[DllImport(@"..\bin\HCNetSDK.dll")] |
|
|
|
public static extern int NET_DVR_SetupAlarmChan_V41(int lUserID, ref NET_DVR_SETUPALARM_PARAM lpSetupParam); |
|
|
|
} |
|
|
|
} |