houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.demo.module;
H 2
3 import java.io.File;
4
5 import com.netsdk.lib.NetSDKLib;
6 import com.netsdk.lib.NetSDKLib.LLong;
7 import com.netsdk.lib.NetSDKLib.NET_IN_LOGIN_WITH_HIGHLEVEL_SECURITY;
8 import com.netsdk.lib.NetSDKLib.NET_OUT_LOGIN_WITH_HIGHLEVEL_SECURITY;
9 import com.netsdk.lib.ToolKits;
10
11 import com.sun.jna.ptr.IntByReference;
12
13 /**
14  * 登陆接口实现
15  * 主要有 :初始化、登陆、登出功能
16  */
17 public class LoginModule {
18
19     public static NetSDKLib netsdk         = NetSDKLib.NETSDK_INSTANCE;
20     public static NetSDKLib configsdk     = NetSDKLib.CONFIG_INSTANCE; 
21     
22     // 设备信息
23     public static NetSDKLib.NET_DEVICEINFO_Ex m_stDeviceInfo = new NetSDKLib.NET_DEVICEINFO_Ex();
24     
25     // 登陆句柄
26     public static LLong m_hLoginHandle = new LLong(0);   
27     
28     private static boolean bInit    = false;
29     private static boolean bLogopen = false;
30     
31     /**
32      * \if ENGLISH_LANG
33      * Init
34      * \else
35      * 初始化
36      * \endif
37      */
38     public static boolean init(NetSDKLib.fDisConnect disConnect, NetSDKLib.fHaveReConnect haveReConnect) {    
39         bInit = netsdk.CLIENT_Init(disConnect, null);
40         if(!bInit) {
41             System.out.println("Initialize SDK failed");
42             return false;
43         }
44
45         //打开日志,可选
46         NetSDKLib.LOG_SET_PRINT_INFO setLog = new NetSDKLib.LOG_SET_PRINT_INFO();
47         File path = new File("./sdklog/");
48         if (!path.exists()) {
49             path.mkdir();
50         }
51         String logPath = path.getAbsoluteFile().getParent() + "\\sdklog\\" + ToolKits.getDate() + ".log";
52         setLog.nPrintStrategy = 0;
53         setLog.bSetFilePath = 1;
54         System.arraycopy(logPath.getBytes(), 0, setLog.szLogFilePath, 0, logPath.getBytes().length);
55         System.out.println(logPath);
56         setLog.bSetPrintStrategy = 1;
57         bLogopen = netsdk.CLIENT_LogOpen(setLog);
58         if(!bLogopen ) {
59             System.err.println("Failed to open NetSDK log");
60         }
61         
62         // 设置断线重连回调接口,设置过断线重连成功回调函数后,当设备出现断线情况,SDK内部会自动进行重连操作
63         // 此操作为可选操作,但建议用户进行设置
64         netsdk.CLIENT_SetAutoReconnect(haveReConnect, null);
65         
66         //设置登录超时时间和尝试次数,可选
67         int waitTime = 5000; //登录请求响应超时时间设置为5S
68         int tryTimes = 1;    //登录时尝试建立链接1次
69         netsdk.CLIENT_SetConnectTime(waitTime, tryTimes);
70         
71         
72         // 设置更多网络参数,NET_PARAM的nWaittime,nConnectTryNum成员与CLIENT_SetConnectTime 
73         // 接口设置的登录设备超时时间和尝试次数意义相同,可选
74         NetSDKLib.NET_PARAM netParam = new NetSDKLib.NET_PARAM();
75         netParam.nConnectTime = 10000;      // 登录时尝试建立链接的超时时间
76         netParam.nGetConnInfoTime = 3000;   // 设置子连接的超时时间
77         netParam.nGetDevInfoTime = 3000;//获取设备信息超时时间,为0默认1000ms
78         netsdk.CLIENT_SetNetworkParam(netParam);    
79         
80         return true;
81     }
82     
83     /**
84      * \if ENGLISH_LANG
85      * CleanUp
86      * \else
87      * 清除环境
88      * \endif
89      */
90     public static void cleanup() {
91         if(bLogopen) {
92             netsdk.CLIENT_LogClose();
93         }
94         
95         if(bInit) {
96             netsdk.CLIENT_Cleanup();
97         }
98     }
99
100     /**
101      * \if ENGLISH_LANG
102      * Login Device
103      * \else
104      * 登录设备
105      * \endif
106      */
107     public static boolean login(String m_strIp, int m_nPort, String m_strUser, String m_strPassword) {    
108         //IntByReference nError = new IntByReference(0);
109         //入参
110         NET_IN_LOGIN_WITH_HIGHLEVEL_SECURITY pstInParam=new NET_IN_LOGIN_WITH_HIGHLEVEL_SECURITY();
111         pstInParam.nPort=m_nPort;
112         pstInParam.szIP=m_strIp.getBytes();
113         pstInParam.szPassword=m_strPassword.getBytes();
114         pstInParam.szUserName=m_strUser.getBytes();
115         //出参
116         NET_OUT_LOGIN_WITH_HIGHLEVEL_SECURITY pstOutParam=new NET_OUT_LOGIN_WITH_HIGHLEVEL_SECURITY();
117         pstOutParam.stuDeviceInfo=m_stDeviceInfo;
118         //m_hLoginHandle = netsdk.CLIENT_LoginEx2(m_strIp, m_nPort, m_strUser, m_strPassword, 0, null, m_stDeviceInfo, nError);        
119         m_hLoginHandle=netsdk.CLIENT_LoginWithHighLevelSecurity(pstInParam, pstOutParam);
120         if(m_hLoginHandle.longValue() == 0) {
121             System.err.printf("Login Device[%s] Port[%d]Failed. %s\n", m_strIp, m_nPort, ToolKits.getErrorCodePrint());
122         } else {
123             System.out.println("Login Success [ " + m_strIp + " ]");
124         }    
125         
126         return m_hLoginHandle.longValue() == 0? false:true;
127     }
128     
129     /**
130      * \if ENGLISH_LANG
131      * Logout Device
132      * \else
133      * 登出设备
134      * \endif
135      */
136     public static boolean logout() {
137         if(m_hLoginHandle.longValue() == 0) {
138             return false;
139         }
140         
141         boolean bRet = netsdk.CLIENT_Logout(m_hLoginHandle);
142         if(bRet) {            
143             m_hLoginHandle.setValue(0);    
144         }
145         
146         return bRet;
147     }
148 }