43 changed files with 2235 additions and 1795 deletions
@ -0,0 +1,16 @@ |
|||||
|
namespace EC.Util.CameraSDK; |
||||
|
|
||||
|
public class CameraFactory |
||||
|
{ |
||||
|
public static ICameraSDK BuildCameraSdk(CameraInfo info) |
||||
|
{ |
||||
|
ICameraSDK sdk = (info.Manufactor) switch |
||||
|
{ |
||||
|
CameraManufactor.HiK => new HiKSDK(info), |
||||
|
CameraManufactor.DaHua => new DaHuaSDK(info), |
||||
|
CameraManufactor.YuShi => new YuShiSDK(info), |
||||
|
_ => throw new NotSupportedException(), |
||||
|
}; |
||||
|
return sdk; |
||||
|
} |
||||
|
} |
@ -1,439 +1,419 @@ |
|||||
using System; |
/*******************************************************/ |
||||
using System.Collections.Generic; |
|
||||
using System.Linq; |
|
||||
using System.Text; |
|
||||
|
|
||||
/*******************************************************/ |
|
||||
/*Project:基础类库 |
/*Project:基础类库 |
||||
Module :时间函数库 |
Module :时间函数库 |
||||
Description : |
Description : |
||||
Date : 2008-6-3 15:09:12 |
Date : 2008-6-3 15:09:12 |
||||
Create : Lxc |
Create : Lxc |
||||
Update : 2015-12-31 |
Update : 2015-12-31 |
||||
TODO : */ |
TODO : */ |
||||
/*******************************************************/ |
/*******************************************************/ |
||||
|
|
||||
|
namespace EC.Util.Common; |
||||
|
|
||||
namespace System |
/// <summary>
|
||||
|
/// 日期时间操作单元
|
||||
|
/// </summary>
|
||||
|
public partial class DateUnit |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// 日期时间操作单元
|
/// 1970-1-1
|
||||
/// </summary>
|
/// </summary>
|
||||
public partial class DateUnit |
public static DateTime InitDate() |
||||
{ |
{ |
||||
|
return new DateTime(1970, 1, 1); |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 1970-1-1
|
/// 默认当前日期
|
||||
/// </summary>
|
/// </summary>
|
||||
public static DateTime InitDate() |
public static DateTime DefDate() |
||||
{ |
{ |
||||
return new DateTime(1970, 1, 1); |
return DateTime.Now; |
||||
} |
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 格式化后的当前日期
|
||||
|
/// </summary>
|
||||
|
public static string DefFormatDate() |
||||
|
{ |
||||
|
return FormatDate(DefDate()); |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 默认当前日期
|
///格式化当前时间
|
||||
/// </summary>
|
/// </summary>
|
||||
public static DateTime DefDate() |
public static string DefFormatDateTime() |
||||
|
{ |
||||
|
return FormatDateTime(DefDate()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 格式化后的 当前月1号 日期格式yyyy-MM-01
|
||||
|
/// </summary>
|
||||
|
public static string DefMonthBegFormat() |
||||
|
{ |
||||
|
return DefDate().ToString("yyyy-MM-01"); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 字符串格式->格式化为当前日期
|
||||
|
/// </summary>
|
||||
|
/// <param name="Indate"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string FormatDate(string Indate) |
||||
|
{ |
||||
|
DateTime nowDate = DefDate(); |
||||
|
|
||||
|
if (Indate != null && Indate != "") |
||||
{ |
{ |
||||
return DateTime.Now; |
nowDate = ToDate(Indate); |
||||
} |
} |
||||
/// <summary>
|
|
||||
/// 格式化后的当前日期
|
return FormatDate(nowDate); |
||||
/// </summary>
|
} |
||||
public static string DefFormatDate() |
|
||||
|
/// <summary>
|
||||
|
/// 格式化为 日期格式yyyy-MM-dd
|
||||
|
/// </summary>
|
||||
|
/// <param name="Indate"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string FormatDate(DateTime Indate) |
||||
|
{ |
||||
|
if (!Indate.Equals(null)) |
||||
{ |
{ |
||||
return FormatDate(DefDate()); |
return Indate.ToString("yyyy-MM-dd"); |
||||
} |
} |
||||
/// <summary>
|
else |
||||
///格式化当前时间
|
|
||||
/// </summary>
|
|
||||
public static string DefFormatDateTime() |
|
||||
{ |
{ |
||||
return FormatDateTime(DefDate()); |
return DefFormatDate(); |
||||
} |
} |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 格式化后的 当前月1号 日期格式yyyy-MM-01
|
/// 格式化为 日期时间格式yyyy-MM-dd HH:mm:ss
|
||||
/// </summary>
|
/// </summary>
|
||||
public static string DefMonthBegFormat() |
/// <param name="Indate"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string FormatDateTime(DateTime Indate) |
||||
|
{ |
||||
|
if (!Indate.Equals(null)) |
||||
{ |
{ |
||||
return DefDate().ToString("yyyy-MM-01"); |
return Indate.ToString("yyyy-MM-dd HH:mm:ss"); |
||||
} |
} |
||||
/// <summary>
|
else |
||||
/// 字符串格式->格式化为当前日期
|
|
||||
/// </summary>
|
|
||||
/// <param name="Indate"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string FormatDate(string Indate) |
|
||||
{ |
{ |
||||
DateTime nowDate = DefDate(); |
return DefFormatDate(); |
||||
|
|
||||
if (Indate != null && Indate != "") |
|
||||
{ |
|
||||
nowDate = ToDate(Indate); |
|
||||
} |
|
||||
|
|
||||
return FormatDate(nowDate); |
|
||||
|
|
||||
|
|
||||
} |
} |
||||
/// <summary>
|
} |
||||
/// 格式化为 日期格式yyyy-MM-dd
|
|
||||
/// </summary>
|
|
||||
/// <param name="Indate"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string FormatDate(DateTime Indate) |
|
||||
{ |
|
||||
|
|
||||
if (!Indate.Equals(null)) |
|
||||
{ |
|
||||
return Indate.ToString("yyyy-MM-dd"); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
return DefFormatDate(); |
|
||||
} |
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 格式化时间 毫秒
|
||||
|
/// </summary>
|
||||
|
/// <param name="Indate"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string FormatDateTimefff(DateTime Indate) |
||||
|
{ |
||||
|
if (!Indate.Equals(null)) |
||||
|
{ |
||||
|
return Indate.ToString("yyyy-MM-dd HH:mm:ss fff"); |
||||
} |
} |
||||
/// <summary>
|
else |
||||
/// 格式化为 日期时间格式yyyy-MM-dd HH:mm:ss
|
|
||||
/// </summary>
|
|
||||
/// <param name="Indate"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string FormatDateTime(DateTime Indate) |
|
||||
{ |
{ |
||||
|
return DefFormatDate(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
if (!Indate.Equals(null)) |
#region 时间函数
|
||||
{ |
|
||||
return Indate.ToString("yyyy-MM-dd HH:mm:ss"); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
return DefFormatDate(); |
|
||||
} |
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 是不是时间格式
|
||||
|
/// </summary>
|
||||
|
/// <param name="datetm"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsDate(string datetm) |
||||
|
{ |
||||
|
bool result = false; |
||||
|
try |
||||
|
{ |
||||
|
DateTime dateTime = Convert.ToDateTime(datetm); |
||||
|
result = true; |
||||
} |
} |
||||
/// <summary>
|
catch |
||||
/// 格式化时间 毫秒
|
|
||||
/// </summary>
|
|
||||
/// <param name="Indate"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string FormatDateTimefff(DateTime Indate) |
|
||||
{ |
{ |
||||
|
result = false; |
||||
|
} |
||||
|
return result; |
||||
|
} |
||||
|
|
||||
if (!Indate.Equals(null)) |
/// <summary>
|
||||
{ |
/// 将字符串转化成日期,如果输入的字符串不是日期时,则返回1970-1-1
|
||||
return Indate.ToString("yyyy-MM-dd HH:mm:ss fff"); |
/// </summary>
|
||||
} |
/// <param name="str"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static DateTime ToDate(string str) |
||||
|
{ |
||||
|
if (str == null || str == "") |
||||
|
return DefDate(); |
||||
|
else |
||||
|
{ |
||||
|
DateTime dt = DefDate(); |
||||
|
if (DateTime.TryParse(str, out dt) == false) |
||||
|
return DefDate(); |
||||
else |
else |
||||
{ |
return dt; |
||||
return DefFormatDate(); |
|
||||
} |
|
||||
|
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
#region 时间函数
|
/// 将对象转化成日期,如果输入的对象不是日期时,则返回1970-1-1
|
||||
|
/// </summary>
|
||||
/// <summary>
|
/// <param name="obj"></param>
|
||||
/// 是不是时间格式
|
/// <returns></returns>
|
||||
/// </summary>
|
public static DateTime ToDate(object obj) |
||||
/// <param name="datetm"></param>
|
{ |
||||
/// <returns></returns>
|
DateTime Result = DefDate(); |
||||
public static bool IsDate(string datetm) |
if (!obj.Equals(null)) |
||||
{ |
{ |
||||
bool result = false; |
|
||||
try |
try |
||||
{ |
{ |
||||
DateTime dateTime = Convert.ToDateTime(datetm); |
Result = (DateTime)obj; |
||||
result = true; |
|
||||
} |
} |
||||
catch |
catch (Exception ex) |
||||
{ |
{ |
||||
result = false; |
return DefDate(); |
||||
|
|
||||
} |
} |
||||
return result; |
//if (DateTime.TryParse(obj.ToString(), out Result) == false)
|
||||
|
// return DefDate;
|
||||
} |
} |
||||
|
return Result; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
/// <summary>
|
/// 将对象转化成日期,如果输入的对象不是日期时,则返回1900-1-1
|
||||
/// 将字符串转化成日期,如果输入的字符串不是日期时,则返回1970-1-1
|
/// </summary>
|
||||
/// </summary>
|
/// <param name="obj"></param>
|
||||
/// <param name="str"></param>
|
/// <returns></returns>
|
||||
/// <returns></returns>
|
public static DateTime ToDate(System.Nullable<System.DateTime> obj) |
||||
public static DateTime ToDate(string str) |
{ |
||||
|
if (!obj.Equals(null)) |
||||
{ |
{ |
||||
if (str == null || str == "") |
return (DateTime)obj; |
||||
return DefDate(); |
|
||||
else |
|
||||
{ |
|
||||
DateTime dt = DefDate(); |
|
||||
if (DateTime.TryParse(str, out dt) == false) |
|
||||
return DefDate(); |
|
||||
else |
|
||||
return dt; |
|
||||
} |
|
||||
} |
} |
||||
|
else |
||||
/// <summary>
|
|
||||
/// 将对象转化成日期,如果输入的对象不是日期时,则返回1970-1-1
|
|
||||
/// </summary>
|
|
||||
/// <param name="obj"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static DateTime ToDate(object obj) |
|
||||
{ |
{ |
||||
DateTime Result = DefDate(); |
return DefDate(); |
||||
if (!obj.Equals(null)) |
|
||||
{ |
|
||||
try |
|
||||
{ |
|
||||
Result = (DateTime)obj; |
|
||||
} |
|
||||
catch (Exception ex) |
|
||||
{ |
|
||||
return DefDate(); |
|
||||
} |
|
||||
//if (DateTime.TryParse(obj.ToString(), out Result) == false)
|
|
||||
// return DefDate;
|
|
||||
} |
|
||||
return Result; |
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 将对象转化成日期,如果输入的对象不是日期时,则返回1900-1-1
|
/// 20070101-->2007-01-01
|
||||
/// </summary>
|
/// </summary>
|
||||
/// <param name="obj"></param>
|
/// <param name="Str"></param>
|
||||
/// <returns></returns>
|
/// <returns></returns>
|
||||
public static DateTime ToDate(System.Nullable<System.DateTime> obj) |
public static string StrTodate(string Str) |
||||
|
{ |
||||
|
string stryear, strmon, strday; |
||||
|
try |
||||
{ |
{ |
||||
if (!obj.Equals(null)) |
stryear = Str.Remove(4, 4); |
||||
{ |
Str = Str.Remove(0, 4); |
||||
|
strmon = Str.Remove(2, 2); |
||||
return (DateTime)obj; |
strday = Str.Remove(0, 2); |
||||
} |
stryear = stryear + "-" + strmon + "-" + strday; |
||||
else |
return stryear; |
||||
{ |
|
||||
return DefDate(); |
|
||||
} |
|
||||
|
|
||||
} |
} |
||||
|
catch |
||||
|
|
||||
/// <summary>
|
|
||||
/// 20070101-->2007-01-01
|
|
||||
/// </summary>
|
|
||||
/// <param name="Str"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string StrTodate(string Str) |
|
||||
{ |
{ |
||||
string stryear, strmon, strday; |
return DefFormatDate(); |
||||
try |
|
||||
{ |
|
||||
stryear = Str.Remove(4, 4); |
|
||||
Str = Str.Remove(0, 4); |
|
||||
strmon = Str.Remove(2, 2); |
|
||||
strday = Str.Remove(0, 2); |
|
||||
stryear = stryear + "-" + strmon + "-" + strday; |
|
||||
return stryear; |
|
||||
} |
|
||||
catch |
|
||||
{ |
|
||||
return DefFormatDate(); |
|
||||
} |
|
||||
|
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
|
#endregion 时间函数
|
||||
|
|
||||
|
#region 周计算
|
||||
|
|
||||
#endregion
|
/// <summary>
|
||||
|
/// 周几
|
||||
#region 周计算
|
/// </summary>
|
||||
|
/// <param name="curDay"></param>
|
||||
/// <summary>
|
/// <returns></returns>
|
||||
/// 周几
|
public static string DayOfWeek(DateTime curDay) |
||||
/// </summary>
|
{ |
||||
/// <param name="curDay"></param>
|
string[] weekdays = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; |
||||
/// <returns></returns>
|
string week = weekdays[Convert.ToInt32(curDay.DayOfWeek)]; |
||||
public static string DayOfWeek(DateTime curDay) |
|
||||
{ |
|
||||
|
|
||||
|
return week; |
||||
|
} |
||||
|
|
||||
string[] weekdays = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; |
/// <summary>
|
||||
string week = weekdays[Convert.ToInt32(curDay.DayOfWeek)]; |
/// 第几周
|
||||
|
/// </summary>
|
||||
|
/// <param name="curDay"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static int WeekOfYear(DateTime curDay) |
||||
|
{ |
||||
|
int firstdayofweek = Convert.ToInt32(Convert.ToDateTime(curDay.Year.ToString() + "-" + "1-1").DayOfWeek); |
||||
|
|
||||
return week; |
int days = curDay.DayOfYear; |
||||
|
int daysOutOneWeek = days - (7 - firstdayofweek); |
||||
|
|
||||
|
if (daysOutOneWeek <= 0) |
||||
|
{ |
||||
|
return 1; |
||||
} |
} |
||||
|
else |
||||
/// <summary>
|
|
||||
/// 第几周
|
|
||||
/// </summary>
|
|
||||
/// <param name="curDay"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static int WeekOfYear(DateTime curDay) |
|
||||
{ |
{ |
||||
|
int weeks = daysOutOneWeek / 7; |
||||
|
if (daysOutOneWeek % 7 != 0) |
||||
|
weeks++; |
||||
|
|
||||
int firstdayofweek = Convert.ToInt32(Convert.ToDateTime(curDay.Year.ToString() + "-" + "1-1").DayOfWeek); |
return weeks + 1; |
||||
|
|
||||
int days = curDay.DayOfYear; |
|
||||
int daysOutOneWeek = days - (7 - firstdayofweek); |
|
||||
|
|
||||
if (daysOutOneWeek <= 0) |
|
||||
{ |
|
||||
return 1; |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
int weeks = daysOutOneWeek / 7; |
|
||||
if (daysOutOneWeek % 7 != 0) |
|
||||
weeks++; |
|
||||
|
|
||||
return weeks + 1; |
|
||||
} |
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
#region 返回某年某月最后一天
|
#region 返回某年某月最后一天
|
||||
/// <summary>
|
|
||||
/// 返回某年某月最后一天
|
|
||||
/// </summary>
|
|
||||
/// <param name="year">年份</param>
|
|
||||
/// <param name="month">月份</param>
|
|
||||
/// <returns>日</returns>
|
|
||||
public static int GetMonthLastDate(int year, int month) |
|
||||
{ |
|
||||
DateTime lastDay = new DateTime(year, month, new System.Globalization.GregorianCalendar().GetDaysInMonth(year, month)); |
|
||||
int Day = lastDay.Day; |
|
||||
return Day; |
|
||||
} |
|
||||
#endregion
|
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 返回某年某月最后一天
|
||||
|
/// </summary>
|
||||
|
/// <param name="year">年份</param>
|
||||
|
/// <param name="month">月份</param>
|
||||
|
/// <returns>日</returns>
|
||||
|
public static int GetMonthLastDate(int year, int month) |
||||
|
{ |
||||
|
DateTime lastDay = new DateTime(year, month, new System.Globalization.GregorianCalendar().GetDaysInMonth(year, month)); |
||||
|
int Day = lastDay.Day; |
||||
|
return Day; |
||||
|
} |
||||
|
|
||||
#endregion
|
#endregion 返回某年某月最后一天
|
||||
|
|
||||
|
#endregion 周计算
|
||||
|
|
||||
#region 返回时间差
|
#region 返回时间差
|
||||
/// <summary>
|
|
||||
/// 返回时间差 秒
|
|
||||
/// </summary>
|
|
||||
/// <param name="begDateTime"></param>
|
|
||||
/// <param name="endDateTime"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static double DateDiffSeconds(DateTime begDateTime, DateTime endDateTime) |
|
||||
{ |
|
||||
|
|
||||
try |
/// <summary>
|
||||
{ |
/// 返回时间差 秒
|
||||
TimeSpan ts = endDateTime - begDateTime; |
/// </summary>
|
||||
return ts.TotalSeconds; |
/// <param name="begDateTime"></param>
|
||||
} |
/// <param name="endDateTime"></param>
|
||||
catch (Exception) |
/// <returns></returns>
|
||||
{ |
public static double DateDiffSeconds(DateTime begDateTime, DateTime endDateTime) |
||||
return 0; |
{ |
||||
} |
try |
||||
} |
|
||||
/// <summary>
|
|
||||
/// 返回时间差 分钟
|
|
||||
/// </summary>
|
|
||||
/// <param name="begDateTime"></param>
|
|
||||
/// <param name="endDateTime"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static double DateDiffMinutes(DateTime begDateTime, DateTime endDateTime) |
|
||||
{ |
{ |
||||
|
TimeSpan ts = endDateTime - begDateTime; |
||||
try |
return ts.TotalSeconds; |
||||
{ |
|
||||
TimeSpan ts = endDateTime - begDateTime; |
|
||||
return ts.TotalMinutes; |
|
||||
} |
|
||||
catch (Exception) |
|
||||
{ |
|
||||
return 0; |
|
||||
} |
|
||||
} |
} |
||||
public static double DateDiffHours(DateTime begDateTime, DateTime endDateTime) |
catch (Exception) |
||||
{ |
{ |
||||
|
return 0; |
||||
try |
|
||||
{ |
|
||||
TimeSpan ts = endDateTime - begDateTime; |
|
||||
return ts.TotalHours; |
|
||||
} |
|
||||
catch (Exception) |
|
||||
{ |
|
||||
return 0; |
|
||||
} |
|
||||
} |
} |
||||
public static double DateDifDays(DateTime begDateTime, DateTime endDateTime) |
} |
||||
{ |
|
||||
|
|
||||
try |
/// <summary>
|
||||
{ |
/// 返回时间差 分钟
|
||||
TimeSpan ts = endDateTime - begDateTime; |
/// </summary>
|
||||
return ts.TotalDays; |
/// <param name="begDateTime"></param>
|
||||
} |
/// <param name="endDateTime"></param>
|
||||
catch (Exception) |
/// <returns></returns>
|
||||
{ |
public static double DateDiffMinutes(DateTime begDateTime, DateTime endDateTime) |
||||
return 0; |
{ |
||||
} |
try |
||||
|
{ |
||||
|
TimeSpan ts = endDateTime - begDateTime; |
||||
|
return ts.TotalMinutes; |
||||
} |
} |
||||
#endregion
|
catch (Exception) |
||||
|
|
||||
/// <summary>
|
|
||||
/// Unix时间戳
|
|
||||
/// </summary>
|
|
||||
/// <returns>毫秒</returns>
|
|
||||
public static long UnixTime() |
|
||||
{ |
{ |
||||
System.DateTime time = DateTime.Now; |
return 0; |
||||
System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); |
|
||||
long t = (time.Ticks - startTime.Ticks) / 10000; //除10000调整为13位
|
|
||||
return t; |
|
||||
} |
} |
||||
/// <summary>
|
} |
||||
/// 将c# DateTime时间格式转换为Unix时间戳格式
|
|
||||
/// </summary>
|
public static double DateDiffHours(DateTime begDateTime, DateTime endDateTime) |
||||
/// <param name="time">时间</param>
|
{ |
||||
/// <returns> 毫秒</returns>
|
try |
||||
public static long DateTimeToUnixTime(System.DateTime time) |
|
||||
{ |
{ |
||||
System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); |
TimeSpan ts = endDateTime - begDateTime; |
||||
long t = (time.Ticks - startTime.Ticks) / 10000; //除10000调整为13位
|
return ts.TotalHours; |
||||
return t; |
|
||||
} |
} |
||||
/// <summary>
|
catch (Exception) |
||||
/// 时间戳转为C#格式时间
|
|
||||
/// </summary>
|
|
||||
/// <param name="timeStamp"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static DateTime UnixTimeToDateTime(long timeStamp) |
|
||||
{ |
{ |
||||
DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); |
return 0; |
||||
long lTime = timeStamp * 10000; |
|
||||
TimeSpan toNow = new TimeSpan(lTime); |
|
||||
return dtStart.Add(toNow); |
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
/// <summary>
|
public static double DateDifDays(DateTime begDateTime, DateTime endDateTime) |
||||
/// Unix时间戳 时间格式化 为日期
|
{ |
||||
/// </summary>
|
try |
||||
/// <param name="timeStamp"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string FormatDateUnixTime(long timeStamp) |
|
||||
{ |
{ |
||||
DateTime dtStart = UnixTimeToDateTime(timeStamp); |
TimeSpan ts = endDateTime - begDateTime; |
||||
return FormatDate(dtStart); |
return ts.TotalDays; |
||||
} |
} |
||||
/// <summary>
|
catch (Exception) |
||||
/// Unix时间戳 时间格式化 为时间
|
|
||||
/// </summary>
|
|
||||
/// <param name="timeStamp"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string FormatDateTimeUnixTime(long timeStamp) |
|
||||
{ |
{ |
||||
DateTime dtStart = UnixTimeToDateTime(timeStamp); |
return 0; |
||||
return FormatDateTime(dtStart); |
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
|
#endregion 返回时间差
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Unix时间戳
|
||||
|
/// </summary>
|
||||
|
/// <returns>毫秒</returns>
|
||||
|
public static long UnixTime() |
||||
|
{ |
||||
|
System.DateTime time = DateTime.Now; |
||||
|
System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); |
||||
|
long t = (time.Ticks - startTime.Ticks) / 10000; //除10000调整为13位
|
||||
|
return t; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 将c# DateTime时间格式转换为Unix时间戳格式
|
||||
|
/// </summary>
|
||||
|
/// <param name="time">时间</param>
|
||||
|
/// <returns> 毫秒</returns>
|
||||
|
public static long DateTimeToUnixTime(System.DateTime time) |
||||
|
{ |
||||
|
System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); |
||||
|
long t = (time.Ticks - startTime.Ticks) / 10000; //除10000调整为13位
|
||||
|
return t; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 时间戳转为C#格式时间
|
||||
|
/// </summary>
|
||||
|
/// <param name="timeStamp"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static DateTime UnixTimeToDateTime(long timeStamp) |
||||
|
{ |
||||
|
DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); |
||||
|
long lTime = timeStamp * 10000; |
||||
|
TimeSpan toNow = new TimeSpan(lTime); |
||||
|
return dtStart.Add(toNow); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Unix时间戳 时间格式化 为日期
|
||||
|
/// </summary>
|
||||
|
/// <param name="timeStamp"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string FormatDateUnixTime(long timeStamp) |
||||
|
{ |
||||
|
DateTime dtStart = UnixTimeToDateTime(timeStamp); |
||||
|
return FormatDate(dtStart); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Unix时间戳 时间格式化 为时间
|
||||
|
/// </summary>
|
||||
|
/// <param name="timeStamp"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string FormatDateTimeUnixTime(long timeStamp) |
||||
|
{ |
||||
|
DateTime dtStart = UnixTimeToDateTime(timeStamp); |
||||
|
return FormatDateTime(dtStart); |
||||
} |
} |
||||
} |
} |
@ -1,367 +1,359 @@ |
|||||
using System; |
/*******************************************************/ |
||||
using System.Collections.Generic; |
|
||||
using System.Linq; |
|
||||
using System.Text; |
|
||||
using System.IO; |
|
||||
using System.Web; |
|
||||
/*******************************************************/ |
|
||||
/*Project:基础类库 |
/*Project:基础类库 |
||||
Module :文件操作库 |
Module :文件操作库 |
||||
Description : 文本读写,日志 |
Description : 文本读写,日志 |
||||
Date : 2008-6-3 15:09:12 |
Date : 2008-6-3 15:09:12 |
||||
Create : Lxc |
Create : Lxc |
||||
Update : 2014-12-31 |
Update : 2014-12-31 |
||||
TODO : */ |
TODO : */ |
||||
/*******************************************************/ |
/*******************************************************/ |
||||
namespace System |
|
||||
{ |
namespace EC.Util.Common; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 文件操作单元
|
||||
|
/// </summary>
|
||||
|
public partial class FileUnit |
||||
|
{ |
||||
|
private static readonly string AppFilepatch = AppDomain.CurrentDomain.SetupInformation.ApplicationBase; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 文件操作单元
|
/// 创建目录
|
||||
/// </summary>
|
/// </summary>
|
||||
public partial class FileUnit |
/// <param name="fullPath"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool CreateDir(string fullPath) |
||||
{ |
{ |
||||
static readonly string AppFilepatch = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; |
if (!Directory.Exists(fullPath)) |
||||
/// <summary>
|
|
||||
/// 创建目录
|
|
||||
/// </summary>
|
|
||||
/// <param name="fullPath"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static bool CreateDir(string fullPath) |
|
||||
{ |
{ |
||||
if (!Directory.Exists(fullPath)) |
try |
||||
{ |
{ |
||||
try |
Directory.CreateDirectory(fullPath); |
||||
{ |
return true; |
||||
Directory.CreateDirectory(fullPath); |
} |
||||
return true; |
catch (Exception ex) |
||||
} |
{ |
||||
catch (Exception ex) |
return false; |
||||
{ |
|
||||
return false; |
|
||||
} |
|
||||
} |
} |
||||
return true; |
|
||||
} |
|
||||
//删除文件名 获取路径
|
|
||||
public static string GetDirectory(string fullPath) |
|
||||
{ |
|
||||
return Path.GetDirectoryName(fullPath); |
|
||||
//return allFileName.Substring(0, allFileName.LastIndexOf('\\'));
|
|
||||
} |
|
||||
/// <summary>
|
|
||||
/// 得到文件名称
|
|
||||
/// </summary>
|
|
||||
/// <param name="fullPath"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string GetFileName(string fullPath) |
|
||||
{ |
|
||||
return Path.GetFileName(fullPath); |
|
||||
} |
|
||||
/// <summary>
|
|
||||
/// 得到扩展名
|
|
||||
/// </summary>
|
|
||||
/// <param name="fullPath"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string GetFileExt(string fullPath) |
|
||||
{ |
|
||||
return Path.GetExtension(fullPath); |
|
||||
} |
|
||||
/// <summary>
|
|
||||
/// 得到名称没有扩展名
|
|
||||
/// </summary>
|
|
||||
/// <param name="fullPath"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string GetFileNameNoExt(string fullPath) |
|
||||
{ |
|
||||
return Path.GetFileNameWithoutExtension(fullPath); |
|
||||
} |
} |
||||
/// <summary>
|
return true; |
||||
/// 复制文件
|
} |
||||
/// </summary>
|
|
||||
/// <param name="sourceFileName"></param>
|
//删除文件名 获取路径
|
||||
/// <param name="destFileName"></param>
|
public static string GetDirectory(string fullPath) |
||||
/// <returns></returns>
|
{ |
||||
public static string CopyFile(string sourceFileName, string destFileName) |
return Path.GetDirectoryName(fullPath); |
||||
|
//return allFileName.Substring(0, allFileName.LastIndexOf('\\'));
|
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 得到文件名称
|
||||
|
/// </summary>
|
||||
|
/// <param name="fullPath"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string GetFileName(string fullPath) |
||||
|
{ |
||||
|
return Path.GetFileName(fullPath); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 得到扩展名
|
||||
|
/// </summary>
|
||||
|
/// <param name="fullPath"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string GetFileExt(string fullPath) |
||||
|
{ |
||||
|
return Path.GetExtension(fullPath); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 得到名称没有扩展名
|
||||
|
/// </summary>
|
||||
|
/// <param name="fullPath"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string GetFileNameNoExt(string fullPath) |
||||
|
{ |
||||
|
return Path.GetFileNameWithoutExtension(fullPath); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 复制文件
|
||||
|
/// </summary>
|
||||
|
/// <param name="sourceFileName"></param>
|
||||
|
/// <param name="destFileName"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string CopyFile(string sourceFileName, string destFileName) |
||||
|
{ |
||||
|
try |
||||
{ |
{ |
||||
try |
if (File.Exists(sourceFileName)) |
||||
{ |
{ |
||||
if (File.Exists(sourceFileName)) |
string destDirectory = GetDirectory(destFileName);// destFileName.Substring(0, destFileName.LastIndexOf('\\'));//删除文件名 获取路径
|
||||
|
bool createDir = CreateDir(destDirectory); |
||||
|
if (createDir) |
||||
{ |
{ |
||||
string destDirectory = GetDirectory(destFileName);// destFileName.Substring(0, destFileName.LastIndexOf('\\'));//删除文件名 获取路径
|
File.Copy(sourceFileName, destFileName); |
||||
bool createDir = CreateDir(destDirectory); |
|
||||
if (createDir) |
|
||||
{ |
|
||||
File.Copy(sourceFileName, destFileName); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
return "文件路径" + destFileName + "不正确!"; |
|
||||
} |
|
||||
} |
} |
||||
else |
else |
||||
{ |
{ |
||||
return "文件路径" + sourceFileName + "不存在!"; |
return "文件路径" + destFileName + "不正确!"; |
||||
} |
} |
||||
return ""; |
|
||||
} |
} |
||||
catch (Exception ex) |
else |
||||
{ |
{ |
||||
return ex.Message; |
return "文件路径" + sourceFileName + "不存在!"; |
||||
} |
} |
||||
|
return ""; |
||||
|
|
||||
} |
} |
||||
/// <summary>
|
catch (Exception ex) |
||||
/// 得到路径 没有扩展名
|
|
||||
/// </summary>
|
|
||||
/// <param name="rptPath"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static string GetPathNoExt(string rptPath) |
|
||||
{ |
{ |
||||
string rtpDir = GetDirectory(rptPath); |
return ex.Message; |
||||
string disFileName = GetFileNameNoExt(rptPath); |
|
||||
string disPatch = rtpDir + "\\" + disFileName;// +".docx";
|
|
||||
return disPatch; |
|
||||
} |
} |
||||
/// <summary>
|
} |
||||
/// 读取文本
|
|
||||
/// </summary>
|
/// <summary>
|
||||
/// <param name="filename"></param>
|
/// 得到路径 没有扩展名
|
||||
/// <returns></returns>
|
/// </summary>
|
||||
public static string ReadtxtFile(string filename) |
/// <param name="rptPath"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string GetPathNoExt(string rptPath) |
||||
|
{ |
||||
|
string rtpDir = GetDirectory(rptPath); |
||||
|
string disFileName = GetFileNameNoExt(rptPath); |
||||
|
string disPatch = rtpDir + "\\" + disFileName;// +".docx";
|
||||
|
return disPatch; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 读取文本
|
||||
|
/// </summary>
|
||||
|
/// <param name="filename"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static string ReadtxtFile(string filename) |
||||
|
{ |
||||
|
try |
||||
{ |
{ |
||||
|
if (File.Exists(filename)) |
||||
try |
|
||||
{ |
{ |
||||
if (File.Exists(filename)) |
// Create an instance of StreamReader to read from a file.
|
||||
|
// The using statement also closes the StreamReader.
|
||||
|
using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) |
||||
{ |
{ |
||||
// Create an instance of StreamReader to read from a file.
|
return sr.ReadToEnd(); |
||||
// The using statement also closes the StreamReader.
|
|
||||
using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) |
|
||||
{ |
|
||||
return sr.ReadToEnd(); |
|
||||
} |
|
||||
} |
} |
||||
else LogUnit.Error(typeof(FileUnit),"no exists " + filename); |
|
||||
|
|
||||
} |
} |
||||
catch (Exception e) |
else LogUnit.Error(typeof(FileUnit), "no exists " + filename); |
||||
{ |
|
||||
LogUnit.Error(typeof(FileUnit), e.ToString()); |
|
||||
} |
|
||||
return ""; |
|
||||
|
|
||||
} |
} |
||||
|
catch (Exception e) |
||||
|
{ |
||||
|
LogUnit.Error(typeof(FileUnit), e.ToString()); |
||||
|
} |
||||
|
return ""; |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 读取多行文本
|
/// 读取多行文本
|
||||
/// </summary>
|
/// </summary>
|
||||
/// <param name="filename"></param>
|
/// <param name="filename"></param>
|
||||
/// <returns></returns>
|
/// <returns></returns>
|
||||
public static List<string> ReadtxtLinesFile(string filename) |
public static List<string> ReadtxtLinesFile(string filename) |
||||
|
{ |
||||
|
List<string> filtxtLines = new List<string>(); |
||||
|
try |
||||
{ |
{ |
||||
List<string> filtxtLines = new List<string>(); |
if (File.Exists(filename)) |
||||
try |
|
||||
{ |
{ |
||||
if (File.Exists(filename)) |
// Create an instance of StreamReader to read from a file.
|
||||
|
// The using statement also closes the StreamReader.
|
||||
|
using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) |
||||
{ |
{ |
||||
// Create an instance of StreamReader to read from a file.
|
String line; |
||||
// The using statement also closes the StreamReader.
|
// Read and display lines from the file until the end of
|
||||
using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) |
// the file is reached.
|
||||
|
while ((line = sr.ReadLine()) != null) |
||||
{ |
{ |
||||
String line; |
filtxtLines.Add(line); |
||||
// Read and display lines from the file until the end of
|
|
||||
// the file is reached.
|
|
||||
while ((line = sr.ReadLine()) != null) |
|
||||
{ |
|
||||
filtxtLines.Add(line); |
|
||||
} |
|
||||
} |
} |
||||
} |
} |
||||
} |
} |
||||
catch (Exception e) |
|
||||
{ |
|
||||
LogUnit.Error(typeof(FileUnit), e.ToString()); |
|
||||
} |
|
||||
return filtxtLines; |
|
||||
} |
} |
||||
|
catch (Exception e) |
||||
|
{ |
||||
|
LogUnit.Error(typeof(FileUnit), e.ToString()); |
||||
|
} |
||||
|
return filtxtLines; |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 读取多行文本
|
/// 读取多行文本
|
||||
/// </summary>
|
/// </summary>
|
||||
/// <param name="filepatch"></param>
|
/// <param name="filepatch"></param>
|
||||
/// <param name="filename"></param>
|
/// <param name="filename"></param>
|
||||
/// <param name="txtLines"></param>
|
/// <param name="txtLines"></param>
|
||||
/// <returns></returns>
|
/// <returns></returns>
|
||||
public static bool WritetxtFileLine(string filepatch,string filename, List<string> txtLines) |
public static bool WritetxtFileLine(string filepatch, string filename, List<string> txtLines) |
||||
|
{ |
||||
|
List<string> filtxtLines = new List<string>(); |
||||
|
try |
||||
{ |
{ |
||||
|
if (!Directory.Exists(filepatch)) |
||||
List<string> filtxtLines = new List<string>(); |
|
||||
try |
|
||||
{ |
{ |
||||
|
Directory.CreateDirectory(filepatch); |
||||
|
|
||||
if (!Directory.Exists(filepatch)) |
|
||||
{ |
|
||||
Directory.CreateDirectory(filepatch); |
|
||||
} |
|
||||
using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) |
|
||||
{ |
|
||||
foreach (string str in txtLines) |
|
||||
{ |
|
||||
sw.WriteLine(str); |
|
||||
} |
|
||||
sw.Close(); |
|
||||
} |
|
||||
|
|
||||
} |
} |
||||
catch (Exception e) |
using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) |
||||
{ |
{ |
||||
LogUnit.Error(typeof(FileUnit), e.ToString()); |
foreach (string str in txtLines) |
||||
return false; |
{ |
||||
|
sw.WriteLine(str); |
||||
|
} |
||||
|
sw.Close(); |
||||
} |
} |
||||
return true; |
|
||||
} |
} |
||||
/// <summary>
|
catch (Exception e) |
||||
/// 写入文本
|
|
||||
/// </summary>
|
|
||||
/// <param name="filepatch"></param>
|
|
||||
/// <param name="filename"></param>
|
|
||||
/// <param name="text"></param>
|
|
||||
/// <returns></returns>
|
|
||||
public static bool WritetxtFile(string filepatch, string filename, string text) |
|
||||
{ |
{ |
||||
|
LogUnit.Error(typeof(FileUnit), e.ToString()); |
||||
|
return false; |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
List<string> filtxtLines = new List<string>(); |
/// <summary>
|
||||
try |
/// 写入文本
|
||||
|
/// </summary>
|
||||
|
/// <param name="filepatch"></param>
|
||||
|
/// <param name="filename"></param>
|
||||
|
/// <param name="text"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool WritetxtFile(string filepatch, string filename, string text) |
||||
|
{ |
||||
|
List<string> filtxtLines = new List<string>(); |
||||
|
try |
||||
|
{ |
||||
|
if (!Directory.Exists(filepatch)) |
||||
{ |
{ |
||||
|
Directory.CreateDirectory(filepatch); |
||||
if (!Directory.Exists(filepatch)) |
|
||||
{ |
|
||||
Directory.CreateDirectory(filepatch); |
|
||||
} |
|
||||
|
|
||||
using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) |
|
||||
{ |
|
||||
|
|
||||
sw.Write(text); |
|
||||
|
|
||||
sw.Close(); |
|
||||
} |
|
||||
|
|
||||
} |
} |
||||
catch (Exception e) |
|
||||
|
using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) |
||||
{ |
{ |
||||
LogUnit.Error(typeof(FileUnit), e.ToString()); |
sw.Write(text); |
||||
return false; |
|
||||
|
sw.Close(); |
||||
} |
} |
||||
return true; |
|
||||
} |
} |
||||
|
catch (Exception e) |
||||
private static bool Log(string subfilepatch,string logmessage) |
|
||||
{ |
{ |
||||
|
LogUnit.Error(typeof(FileUnit), e.ToString()); |
||||
|
return false; |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
try |
private static bool Log(string subfilepatch, string logmessage) |
||||
|
{ |
||||
|
try |
||||
|
{ |
||||
|
string logfilePath = AppFilepatch + "Log\\" + subfilepatch; |
||||
|
if (!Directory.Exists(logfilePath)) |
||||
{ |
{ |
||||
string logfilePath = AppFilepatch + "Log\\" + subfilepatch ; |
Directory.CreateDirectory(logfilePath); |
||||
if (!Directory.Exists(logfilePath)) |
|
||||
{ |
|
||||
Directory.CreateDirectory(logfilePath); |
|
||||
} |
|
||||
using (StreamWriter sw = new StreamWriter(logfilePath + DateTime.Now.ToString("yyyyMMdd") + ".txt", true, System.Text.Encoding.UTF8)) |
|
||||
{ |
|
||||
sw.WriteLine(DateTime.Now.ToString() + " : " + logmessage); |
|
||||
sw.Close(); |
|
||||
} |
|
||||
} |
} |
||||
catch (Exception e) |
using (StreamWriter sw = new StreamWriter(logfilePath + DateTime.Now.ToString("yyyyMMdd") + ".txt", true, System.Text.Encoding.UTF8)) |
||||
{ |
{ |
||||
return false; |
sw.WriteLine(DateTime.Now.ToString() + " : " + logmessage); |
||||
|
sw.Close(); |
||||
} |
} |
||||
return true; |
|
||||
} |
} |
||||
|
catch (Exception e) |
||||
//支付日志
|
|
||||
public static void PayLog(string log) |
|
||||
{ |
{ |
||||
string path = "PayLog\\"; |
return false; |
||||
Log(path, log); |
|
||||
} |
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
//订单日志
|
//支付日志
|
||||
public static void OrderLog(string log) |
public static void PayLog(string log) |
||||
{ |
{ |
||||
string path = "OrderLog\\"; |
string path = "PayLog\\"; |
||||
Log(path, log); |
Log(path, log); |
||||
} |
} |
||||
|
|
||||
//写入日志
|
//订单日志
|
||||
public static void Log(string log) |
public static void OrderLog(string log) |
||||
{ |
{ |
||||
string path = ""; |
string path = "OrderLog\\"; |
||||
Log(path, log); |
Log(path, log); |
||||
} |
} |
||||
public static void WebLog(string log) |
|
||||
{ |
|
||||
Log(log); |
|
||||
} |
|
||||
|
|
||||
//public static void WebLog(string log)
|
|
||||
//{
|
|
||||
// string path = HttpContext.Current.Server.MapPath(".")+"Web\\";
|
|
||||
// Log(path, log);
|
|
||||
//}
|
|
||||
|
|
||||
public static void ErrLog(string log) |
//写入日志
|
||||
{ |
public static void Log(string log) |
||||
string subpath = "ErrLog\\"; |
{ |
||||
Log(subpath, log); |
string path = ""; |
||||
} |
Log(path, log); |
||||
public static void HisLog(string log) |
} |
||||
{ |
|
||||
string subpath = "HisLog\\"; |
|
||||
Log(subpath, log); |
|
||||
} |
|
||||
|
|
||||
|
public static void WebLog(string log) |
||||
public static void Package(string log) |
{ |
||||
{ |
Log(log); |
||||
string path = "Package\\"; |
} |
||||
Log(path, log); |
|
||||
} |
|
||||
|
|
||||
|
//public static void WebLog(string log)
|
||||
public static void EPS(string log) |
//{
|
||||
{ |
// string path = HttpContext.Current.Server.MapPath(".")+"Web\\";
|
||||
string path = "EPS\\"; |
// Log(path, log);
|
||||
Log(path, log); |
//}
|
||||
} |
|
||||
public static void AllLog(string log) |
public static void ErrLog(string log) |
||||
{ |
{ |
||||
string path = "AllLog\\"; |
string subpath = "ErrLog\\"; |
||||
Log(path, log); |
Log(subpath, log); |
||||
} |
} |
||||
public static bool Exists(string path) |
|
||||
{ |
public static void HisLog(string log) |
||||
return File.Exists(path); |
{ |
||||
} |
string subpath = "HisLog\\"; |
||||
public static void DeleteFile(string path) |
Log(subpath, log); |
||||
|
} |
||||
|
|
||||
|
public static void Package(string log) |
||||
|
{ |
||||
|
string path = "Package\\"; |
||||
|
Log(path, log); |
||||
|
} |
||||
|
|
||||
|
public static void EPS(string log) |
||||
|
{ |
||||
|
string path = "EPS\\"; |
||||
|
Log(path, log); |
||||
|
} |
||||
|
|
||||
|
public static void AllLog(string log) |
||||
|
{ |
||||
|
string path = "AllLog\\"; |
||||
|
Log(path, log); |
||||
|
} |
||||
|
|
||||
|
public static bool Exists(string path) |
||||
|
{ |
||||
|
return File.Exists(path); |
||||
|
} |
||||
|
|
||||
|
public static void DeleteFile(string path) |
||||
|
{ |
||||
|
try |
||||
{ |
{ |
||||
try |
if (File.Exists(path)) |
||||
{ |
{ |
||||
if (File.Exists(path)) |
File.Delete(path); |
||||
{ |
|
||||
File.Delete(path); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
LogUnit.Error(typeof(FileUnit), "路径不存在" + path); |
|
||||
} |
|
||||
} |
} |
||||
catch (Exception ex) |
else |
||||
{ |
{ |
||||
LogUnit.Error(typeof(FileUnit), ex.ToString()); |
LogUnit.Error(typeof(FileUnit), "路径不存在" + path); |
||||
} |
} |
||||
} |
} |
||||
|
catch (Exception ex) |
||||
|
{ |
||||
|
LogUnit.Error(typeof(FileUnit), ex.ToString()); |
||||
|
} |
||||
} |
} |
||||
} |
} |
@ -0,0 +1,176 @@ |
|||||
|
using System.Text.RegularExpressions; |
||||
|
|
||||
|
namespace EC.Util.Common; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证工具类
|
||||
|
/// </summary>
|
||||
|
public class VerifyUtil |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 验证是否为空
|
||||
|
/// </summary>
|
||||
|
/// <param name="str"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsEmpty(string str) |
||||
|
{ |
||||
|
return string.IsNullOrEmpty(str); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为邮件
|
||||
|
/// </summary>
|
||||
|
/// <param name="emailStr"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsEmail(string emailStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(emailStr)) return false; |
||||
|
string match = @"^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$"; |
||||
|
Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); |
||||
|
return r.IsMatch(emailStr.Trim()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为数字
|
||||
|
/// </summary>
|
||||
|
/// <param name="numberStr"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsNumber(string numberStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(numberStr)) return false; |
||||
|
string match = @"^(0|[1-9][0-9]*)$"; |
||||
|
Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); |
||||
|
return r.IsMatch(numberStr.Trim()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为浮点数
|
||||
|
/// </summary>
|
||||
|
/// <param name="decimalStr"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsDecimal(string decimalStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(decimalStr)) return false; |
||||
|
string match = @"^(-?\d+)(\.\d+)?$"; |
||||
|
Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); |
||||
|
return r.IsMatch(decimalStr.Trim()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为手机号码
|
||||
|
/// </summary>
|
||||
|
/// <param name="mobileStr"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsMobile(string mobileStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(mobileStr)) return false; |
||||
|
string match = @"^[1]+[3,5,7,8]+\d{9}"; |
||||
|
Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); |
||||
|
return r.IsMatch(mobileStr.Trim()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为电话号码
|
||||
|
/// </summary>
|
||||
|
/// <param name="telStr"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsTel(string telStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(telStr)) return false; |
||||
|
string match = @"^(\+86\s{1,1})?((\d{3,4}\-)\d{7,8})$"; |
||||
|
Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); |
||||
|
return r.IsMatch(telStr.Trim()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为Ip地址
|
||||
|
/// </summary>
|
||||
|
/// <param name="ipStr"></param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool IsIp(string ipStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(ipStr)) return false; |
||||
|
string match = @"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$"; |
||||
|
Regex r = new(match); |
||||
|
return r.IsMatch(ipStr.Trim()); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 验证是否为身份证
|
||||
|
/// </summary>
|
||||
|
/// <param name="idcardStr">身份证号</param>
|
||||
|
/// <returns></returns>
|
||||
|
public static bool CheckIDCard(string idcardStr) |
||||
|
{ |
||||
|
if (string.IsNullOrEmpty(idcardStr)) return false; |
||||
|
if (idcardStr.Length == 18) return CheckIDCard18(idcardStr); |
||||
|
else if (idcardStr.Length == 15) return CheckIDCard15(idcardStr); |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 18位身份证验证
|
||||
|
/// </summary>
|
||||
|
/// <param name="Id">身份证号</param>
|
||||
|
/// <returns></returns>
|
||||
|
private static bool CheckIDCard18(string Id) |
||||
|
{ |
||||
|
long n = 0; |
||||
|
if (long.TryParse(Id.Remove(17), out n) == false || n < Math.Pow(10, 16) || long.TryParse(Id.Replace('x', '0').Replace('X', '0'), out n) == false) |
||||
|
{ |
||||
|
return false;//数字验证
|
||||
|
} |
||||
|
string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91"; |
||||
|
if (address.IndexOf(Id.Remove(2)) == -1) |
||||
|
{ |
||||
|
return false;//省份验证
|
||||
|
} |
||||
|
string birth = Id.Substring(6, 8).Insert(6, "-").Insert(4, "-"); |
||||
|
DateTime time = new DateTime(); |
||||
|
if (DateTime.TryParse(birth, out time) == false) |
||||
|
{ |
||||
|
return false;//生日验证
|
||||
|
} |
||||
|
string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(','); |
||||
|
string[] Wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(','); |
||||
|
char[] Ai = Id.Remove(17).ToCharArray(); |
||||
|
int sum = 0; |
||||
|
for (int i = 0; i < 17; i++) |
||||
|
{ |
||||
|
sum += int.Parse(Wi[i]) * int.Parse(Ai[i].ToString()); |
||||
|
} |
||||
|
int y = -1; |
||||
|
Math.DivRem(sum, 11, out y); |
||||
|
if (arrVarifyCode[y] != Id.Substring(17, 1).ToLower()) |
||||
|
{ |
||||
|
return false;//校验码验证
|
||||
|
} |
||||
|
return true;//符合GB11643-1999标准
|
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 15位身份证验证
|
||||
|
/// </summary>
|
||||
|
/// <param name="Id">身份证号</param>
|
||||
|
/// <returns></returns>
|
||||
|
private static bool CheckIDCard15(string Id) |
||||
|
{ |
||||
|
long n = 0; |
||||
|
if (long.TryParse(Id, out n) == false || n < Math.Pow(10, 14)) |
||||
|
{ |
||||
|
return false;//数字验证
|
||||
|
} |
||||
|
string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91"; |
||||
|
if (address.IndexOf(Id.Remove(2)) == -1) |
||||
|
{ |
||||
|
return false;//省份验证
|
||||
|
} |
||||
|
string birth = Id.Substring(6, 6).Insert(4, "-").Insert(2, "-"); |
||||
|
DateTime time = new DateTime(); |
||||
|
if (DateTime.TryParse(birth, out time) == false) |
||||
|
{ |
||||
|
return false;//生日验证
|
||||
|
} |
||||
|
return true;//符合15位身份证标准
|
||||
|
} |
||||
|
} |
@ -1,39 +1,39 @@ |
|||||
using System; |
namespace EC.Util.Net; |
||||
using System.Collections.Generic; |
|
||||
using System.Linq; |
|
||||
using System.Text; |
|
||||
using System.Threading.Tasks; |
|
||||
|
|
||||
namespace EC.Util.Net |
public class APICallBack |
||||
{ |
{ |
||||
public class APICallBack |
public string reqCode { get; set; } |
||||
{ |
|
||||
public string reqCode { get; set; } |
/// <summary>
|
||||
/// <summary>
|
/// 任务单号
|
||||
/// 任务单号
|
/// </summary>
|
||||
/// </summary>
|
public string taskCode { get; set; } |
||||
public string taskCode { get; set; } |
|
||||
/// <summary>
|
/// <summary>
|
||||
/// AGV状态指令
|
/// AGV状态指令
|
||||
/// </summary>
|
/// </summary>
|
||||
public string method { get; set; } |
public string method { get; set; } |
||||
public string reqTime { get; set; } |
|
||||
public string wbCode { get; set; } |
public string reqTime { get; set; } |
||||
/// <summary>
|
public string wbCode { get; set; } |
||||
/// AGV编号
|
|
||||
/// </summary>
|
/// <summary>
|
||||
public string robotCode { get; set; } |
/// AGV编号
|
||||
/// <summary>
|
/// </summary>
|
||||
/// 请求AGV接口后返回的成功失败或其他消息
|
public string robotCode { get; set; } |
||||
/// </summary>
|
|
||||
public string message { get; set; } |
/// <summary>
|
||||
/// <summary>
|
/// 请求AGV接口后返回的成功失败或其他消息
|
||||
/// 请求AGV接口后返回的任务单号
|
/// </summary>
|
||||
/// </summary>
|
public string message { get; set; } |
||||
public string data { get; set; } |
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 请求AGV接口后返回的任务状态
|
/// 请求AGV接口后返回的任务单号
|
||||
/// </summary>
|
/// </summary>
|
||||
public string code { get; set; } |
public string data { get; set; } |
||||
} |
|
||||
} |
/// <summary>
|
||||
|
/// 请求AGV接口后返回的任务状态
|
||||
|
/// </summary>
|
||||
|
public string code { get; set; } |
||||
|
} |
@ -1,362 +1,358 @@ |
|||||
|
using EC.Util.Common; |
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.IO; |
|
||||
using System.Linq; |
|
||||
using System.Net; |
using System.Net; |
||||
using System.Text; |
using System.Text; |
||||
using System.Threading; |
|
||||
using System.Threading.Tasks; |
|
||||
|
|
||||
namespace EC.Util.Net |
namespace EC.Util.Net; |
||||
|
|
||||
|
public class HttpServer |
||||
{ |
{ |
||||
public class HttpServer |
public event EventHandler<APICallBack> OnRecData; //定义一个委托类型的事件
|
||||
|
|
||||
|
#region
|
||||
|
|
||||
|
public string Host { get; set; } |
||||
|
public string port { get; set; } |
||||
|
private string _webHomeDir = ""; |
||||
|
private HttpListener listener; |
||||
|
private Thread listenThread; |
||||
|
private string directorySeparatorChar = Path.DirectorySeparatorChar.ToString(); |
||||
|
public string ImageUploadPath { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 设置监听端口,重启服务生效
|
||||
|
/// </summary>
|
||||
|
//public string Port
|
||||
|
//{
|
||||
|
// get { return this.port; }
|
||||
|
// set
|
||||
|
// {
|
||||
|
// int p;
|
||||
|
// if (string.IsNullOrEmpty(value) || !int.TryParse(value, out p))
|
||||
|
// {
|
||||
|
// throw new Exception("给http监听器赋值的端口号无效!");
|
||||
|
// }
|
||||
|
// this.port = value;
|
||||
|
// }
|
||||
|
//}
|
||||
|
/// <summary>
|
||||
|
/// http服务根目录
|
||||
|
/// </summary>
|
||||
|
public string WebHomeDir |
||||
{ |
{ |
||||
|
get { return this._webHomeDir; } |
||||
public event EventHandler<APICallBack> OnRecData; //定义一个委托类型的事件
|
set |
||||
#region
|
|
||||
|
|
||||
public string Host { get; set; } |
|
||||
public string port { get; set; } |
|
||||
private string _webHomeDir = ""; |
|
||||
private HttpListener listener; |
|
||||
private Thread listenThread; |
|
||||
private string directorySeparatorChar = Path.DirectorySeparatorChar.ToString(); |
|
||||
public string ImageUploadPath { get; set; } |
|
||||
|
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 设置监听端口,重启服务生效
|
|
||||
/// </summary>
|
|
||||
//public string Port
|
|
||||
//{
|
|
||||
// get { return this.port; }
|
|
||||
// set
|
|
||||
// {
|
|
||||
// int p;
|
|
||||
// if (string.IsNullOrEmpty(value) || !int.TryParse(value, out p))
|
|
||||
// {
|
|
||||
// throw new Exception("给http监听器赋值的端口号无效!");
|
|
||||
// }
|
|
||||
// this.port = value;
|
|
||||
// }
|
|
||||
//}
|
|
||||
/// <summary>
|
|
||||
/// http服务根目录
|
|
||||
/// </summary>
|
|
||||
public string WebHomeDir |
|
||||
{ |
|
||||
get { return this._webHomeDir; } |
|
||||
set |
|
||||
{ |
|
||||
if (!Directory.Exists(value)) |
|
||||
throw new Exception("http服务器设置的根目录不存在!"); |
|
||||
this._webHomeDir = value; |
|
||||
} |
|
||||
} |
|
||||
/// <summary>
|
|
||||
/// 服务器是否在运行
|
|
||||
/// </summary>
|
|
||||
public bool IsRunning |
|
||||
{ |
{ |
||||
get { return (listener == null) ? false : listener.IsListening; } |
if (!Directory.Exists(value)) |
||||
|
throw new Exception("http服务器设置的根目录不存在!"); |
||||
|
this._webHomeDir = value; |
||||
} |
} |
||||
#endregion
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 服务器是否在运行
|
||||
|
/// </summary>
|
||||
|
public bool IsRunning |
||||
|
{ |
||||
|
get { return (listener == null) ? false : listener.IsListening; } |
||||
|
} |
||||
|
|
||||
|
#endregion
|
||||
|
|
||||
|
#region
|
||||
|
|
||||
#region
|
public HttpServer(string host, string port, string webHomeDir, string imageUploadPath) |
||||
public HttpServer( string host, string port, string webHomeDir, string imageUploadPath) |
{ |
||||
|
this.Host = host; |
||||
|
this.port = port; |
||||
|
this._webHomeDir = webHomeDir; |
||||
|
ImageUploadPath = imageUploadPath; |
||||
|
listener = new HttpListener(); |
||||
|
} |
||||
|
|
||||
|
public bool AddPrefixes(string uriPrefix) |
||||
|
{ |
||||
|
string uri = "http://" + uriPrefix + ":" + this.port + "/"; |
||||
|
if (listener.Prefixes.Contains(uri)) return false; |
||||
|
listener.Prefixes.Add(uri); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 启动服务
|
||||
|
/// </summary>
|
||||
|
public void Start() |
||||
|
{ |
||||
|
try |
||||
{ |
{ |
||||
|
if (listener.IsListening) |
||||
this.Host = host; |
return; |
||||
this.port = port; |
if (!string.IsNullOrEmpty(Host) && Host.Length > 0) |
||||
this._webHomeDir = webHomeDir; |
listener.Prefixes.Add("http://" + Host + ":" + this.port + "/"); //AGV/AGVAPI/agvCallback/
|
||||
ImageUploadPath = imageUploadPath; |
else if (listener.Prefixes == null || listener.Prefixes.Count == 0) |
||||
listener = new HttpListener(); |
listener.Prefixes.Add("http://localhost:" + this.port + "/"); |
||||
} |
listener.Start(); |
||||
|
|
||||
public bool AddPrefixes(string uriPrefix) |
listenThread = new Thread(AcceptClient); |
||||
|
listenThread.Name = "signserver"; |
||||
|
listenThread.Start(); |
||||
|
Log("开启接口监听服务:" + this.port); |
||||
|
} |
||||
|
catch (Exception ex) |
||||
{ |
{ |
||||
string uri = "http://" + uriPrefix + ":" + this.port + "/"; |
LogUnit.Error(ex.Message); |
||||
if (listener.Prefixes.Contains(uri)) return false; |
|
||||
listener.Prefixes.Add(uri); |
|
||||
return true; |
|
||||
} |
} |
||||
|
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 启动服务
|
/// 停止服务
|
||||
/// </summary>
|
/// </summary>
|
||||
public void Start() |
public void Stop() |
||||
|
{ |
||||
|
try |
||||
{ |
{ |
||||
try |
if (listener != null) |
||||
{ |
|
||||
if (listener.IsListening) |
|
||||
return; |
|
||||
if (!string.IsNullOrEmpty(Host) && Host.Length > 0) |
|
||||
listener.Prefixes.Add("http://" + Host + ":" + this.port + "/"); //AGV/AGVAPI/agvCallback/
|
|
||||
else if (listener.Prefixes == null || listener.Prefixes.Count == 0) |
|
||||
listener.Prefixes.Add("http://localhost:" + this.port + "/"); |
|
||||
listener.Start(); |
|
||||
|
|
||||
listenThread = new Thread(AcceptClient); |
|
||||
listenThread.Name = "signserver"; |
|
||||
listenThread.Start(); |
|
||||
Log("开启接口监听服务:"+ this.port); |
|
||||
|
|
||||
} |
|
||||
catch (Exception ex) |
|
||||
{ |
{ |
||||
LogUnit.Error(ex.Message); |
//listener.Close();
|
||||
|
//listener.Abort();
|
||||
|
listener.Stop(); |
||||
} |
} |
||||
|
} |
||||
|
catch (Exception ex) |
||||
|
{ |
||||
|
LogUnit.Error(ex.Message); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// /接受客户端请求
|
||||
|
/// </summary>
|
||||
|
private void AcceptClient() |
||||
|
{ |
||||
|
//int maxThreadNum, portThreadNum;
|
||||
|
////线程池
|
||||
|
//int minThreadNum;
|
||||
|
//ThreadPool.GetMaxThreads(out maxThreadNum, out portThreadNum);
|
||||
|
//ThreadPool.GetMinThreads(out minThreadNum, out portThreadNum);
|
||||
|
//Console.WriteLine("最大线程数:{0}", maxThreadNum);
|
||||
|
//Console.WriteLine("最小空闲线程数:{0}", minThreadNum);
|
||||
|
|
||||
} |
while (listener.IsListening) |
||||
/// <summary>
|
|
||||
/// 停止服务
|
|
||||
/// </summary>
|
|
||||
public void Stop() |
|
||||
{ |
{ |
||||
try |
try |
||||
{ |
{ |
||||
if (listener != null) |
HttpListenerContext context = listener.GetContext(); |
||||
{ |
//new Thread(HandleRequest).Start(context);
|
||||
//listener.Close();
|
ThreadPool.QueueUserWorkItem(new WaitCallback(HandleRequest), context); |
||||
//listener.Abort();
|
|
||||
listener.Stop(); |
|
||||
|
|
||||
} |
|
||||
} |
} |
||||
catch (Exception ex) |
catch |
||||
{ |
{ |
||||
LogUnit.Error(ex.Message); |
|
||||
} |
} |
||||
} |
} |
||||
|
} |
||||
|
|
||||
/// <summary>
|
#endregion
|
||||
/// /接受客户端请求
|
|
||||
/// </summary>
|
|
||||
void AcceptClient() |
|
||||
{ |
|
||||
//int maxThreadNum, portThreadNum;
|
|
||||
////线程池
|
|
||||
//int minThreadNum;
|
|
||||
//ThreadPool.GetMaxThreads(out maxThreadNum, out portThreadNum);
|
|
||||
//ThreadPool.GetMinThreads(out minThreadNum, out portThreadNum);
|
|
||||
//Console.WriteLine("最大线程数:{0}", maxThreadNum);
|
|
||||
//Console.WriteLine("最小空闲线程数:{0}", minThreadNum);
|
|
||||
|
|
||||
while (listener.IsListening) |
|
||||
{ |
|
||||
try |
|
||||
{ |
|
||||
HttpListenerContext context = listener.GetContext(); |
|
||||
//new Thread(HandleRequest).Start(context);
|
|
||||
ThreadPool.QueueUserWorkItem(new WaitCallback(HandleRequest), context); |
|
||||
} |
|
||||
catch |
|
||||
{ |
|
||||
|
|
||||
} |
#region HandleRequest
|
||||
} |
|
||||
|
|
||||
} |
//处理客户端请求
|
||||
#endregion
|
private void HandleRequest(object ctx) |
||||
|
{ |
||||
#region HandleRequest
|
HttpListenerContext context = ctx as HttpListenerContext; |
||||
//处理客户端请求
|
HttpListenerResponse response = context.Response; |
||||
private void HandleRequest(object ctx) |
HttpListenerRequest request = context.Request; |
||||
|
try |
||||
{ |
{ |
||||
HttpListenerContext context = ctx as HttpListenerContext; |
context.Request.Headers.Add("Access-Control-Allow-Origin", "*"); |
||||
HttpListenerResponse response = context.Response; |
context.Response.Headers.Add("Access-Control-Allow-Origin", "*"); |
||||
HttpListenerRequest request = context.Request; |
string rawUrl = System.Web.HttpUtility.UrlDecode(request.RawUrl); |
||||
try |
int paramStartIndex = rawUrl.IndexOf('?'); |
||||
|
if (paramStartIndex > 0) |
||||
|
rawUrl = rawUrl.Substring(0, paramStartIndex); |
||||
|
else if (paramStartIndex == 0) |
||||
|
rawUrl = ""; |
||||
|
if (rawUrl.EndsWith("agvCallback")) |
||||
{ |
{ |
||||
context.Request.Headers.Add("Access-Control-Allow-Origin", "*"); |
APICallBack apiCallBack = new APICallBack(); |
||||
context.Response.Headers.Add("Access-Control-Allow-Origin", "*"); |
|
||||
string rawUrl = System.Web.HttpUtility.UrlDecode(request.RawUrl); |
|
||||
int paramStartIndex = rawUrl.IndexOf('?'); |
|
||||
if (paramStartIndex > 0) |
|
||||
rawUrl = rawUrl.Substring(0, paramStartIndex); |
|
||||
else if (paramStartIndex == 0) |
|
||||
rawUrl = ""; |
|
||||
if ( rawUrl.EndsWith("agvCallback") ) { |
|
||||
|
|
||||
APICallBack apiCallBack = new APICallBack(); |
|
||||
|
|
||||
apiCallBack.reqCode = context.Request.QueryString["reqCode"]; |
|
||||
apiCallBack.taskCode = context.Request.QueryString["taskCode"]; |
|
||||
apiCallBack.method = context.Request.QueryString["method"]; |
|
||||
apiCallBack.wbCode = context.Request.QueryString["wbCode"]; |
|
||||
apiCallBack.robotCode = context.Request.QueryString["robotCode"]; |
|
||||
|
|
||||
//接收POST参数 2020-5-30
|
|
||||
Stream stream = context.Request.InputStream; |
|
||||
System.IO.StreamReader reader = new System.IO.StreamReader(stream, Encoding.UTF8); |
|
||||
//整理应该是接收到的值
|
|
||||
string body = reader.ReadToEnd(); |
|
||||
//FileUnit.Log(body);
|
|
||||
//if (JsonUtil.JSONToObject<APICallBack>(body)!=null)
|
|
||||
//{
|
|
||||
// apiCallBack = JsonUnit.JSONToObject<APICallBack>(body);
|
|
||||
//}
|
|
||||
|
|
||||
response.ContentType = "text/html;charset=utf-8"; |
|
||||
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
|
||||
{ |
|
||||
OnRecData?.Invoke(this, apiCallBack); |
|
||||
|
|
||||
string str = Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data = "调用成功", Message = "成功", ReqCode = apiCallBack.reqCode }); |
|
||||
writer.Write(str); |
|
||||
} |
|
||||
|
|
||||
////Response
|
apiCallBack.reqCode = context.Request.QueryString["reqCode"]; |
||||
//context.Response.StatusCode = 200;
|
apiCallBack.taskCode = context.Request.QueryString["taskCode"]; |
||||
//context.Response.Headers.Add("Access-Control-Allow-Origin", "*");
|
apiCallBack.method = context.Request.QueryString["method"]; |
||||
//context.Response.ContentType = "application/json";
|
apiCallBack.wbCode = context.Request.QueryString["wbCode"]; |
||||
//context.Response.ContentEncoding = Encoding.UTF8;
|
apiCallBack.robotCode = context.Request.QueryString["robotCode"]; |
||||
//byte[] buffer = System.Text.Encoding.UTF8.GetBytes(Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data= "调用成功", Message = "成功" , ReqCode ="",}));
|
|
||||
//context.Response.ContentLength64 = buffer.Length;
|
|
||||
//var output = context.Response.OutputStream;
|
|
||||
//output.Write(buffer, 0, buffer.Length);
|
|
||||
//output.Close();
|
|
||||
|
|
||||
} |
|
||||
else if (string.Compare(rawUrl, "/ImageUpload", true) == 0) |
|
||||
{ |
|
||||
#region 上传图片
|
|
||||
string fileName = context.Request.QueryString["name"]; |
|
||||
string filePath = ImageUploadPath + "\\" + DateTime.Now.ToString("yyMMdd_HHmmss_ffff") |
|
||||
+ Path.GetExtension(fileName).ToLower(); |
|
||||
using (var stream = request.InputStream) |
|
||||
{ |
|
||||
using (var br = new BinaryReader(stream)) |
|
||||
{ |
|
||||
WriteStreamToFile(br, filePath, request.ContentLength64); |
|
||||
} |
|
||||
} |
|
||||
response.ContentType = "text/html;charset=utf-8"; |
|
||||
|
|
||||
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
//接收POST参数 2020-5-30
|
||||
{ |
Stream stream = context.Request.InputStream; |
||||
writer.WriteLine("接收完成!"); |
System.IO.StreamReader reader = new System.IO.StreamReader(stream, Encoding.UTF8); |
||||
} |
//整理应该是接收到的值
|
||||
|
string body = reader.ReadToEnd(); |
||||
|
//FileUnit.Log(body);
|
||||
|
//if (JsonUtil.JSONToObject<APICallBack>(body)!=null)
|
||||
|
//{
|
||||
|
// apiCallBack = JsonUnit.JSONToObject<APICallBack>(body);
|
||||
|
//}
|
||||
|
|
||||
#endregion
|
response.ContentType = "text/html;charset=utf-8"; |
||||
|
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
||||
|
{ |
||||
|
OnRecData?.Invoke(this, apiCallBack); |
||||
|
|
||||
|
string str = Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data = "调用成功", Message = "成功", ReqCode = apiCallBack.reqCode }); |
||||
|
writer.Write(str); |
||||
} |
} |
||||
else |
|
||||
|
////Response
|
||||
|
//context.Response.StatusCode = 200;
|
||||
|
//context.Response.Headers.Add("Access-Control-Allow-Origin", "*");
|
||||
|
//context.Response.ContentType = "application/json";
|
||||
|
//context.Response.ContentEncoding = Encoding.UTF8;
|
||||
|
//byte[] buffer = System.Text.Encoding.UTF8.GetBytes(Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data= "调用成功", Message = "成功" , ReqCode ="",}));
|
||||
|
//context.Response.ContentLength64 = buffer.Length;
|
||||
|
//var output = context.Response.OutputStream;
|
||||
|
//output.Write(buffer, 0, buffer.Length);
|
||||
|
//output.Close();
|
||||
|
} |
||||
|
else if (string.Compare(rawUrl, "/ImageUpload", true) == 0) |
||||
|
{ |
||||
|
#region 上传图片
|
||||
|
string fileName = context.Request.QueryString["name"]; |
||||
|
string filePath = ImageUploadPath + "\\" + DateTime.Now.ToString("yyMMdd_HHmmss_ffff") |
||||
|
+ Path.GetExtension(fileName).ToLower(); |
||||
|
using (var stream = request.InputStream) |
||||
{ |
{ |
||||
#region 网页请求
|
using (var br = new BinaryReader(stream)) |
||||
string InputStream = ""; |
|
||||
using (var streamReader = new StreamReader(request.InputStream)) |
|
||||
{ |
|
||||
InputStream = streamReader.ReadToEnd(); |
|
||||
} |
|
||||
string filePath = ""; |
|
||||
if (string.IsNullOrEmpty(rawUrl) || rawUrl.Length == 0 || rawUrl == "/") |
|
||||
filePath = WebHomeDir + directorySeparatorChar + "Index.html"; |
|
||||
else |
|
||||
filePath = WebHomeDir + rawUrl.Replace("/", directorySeparatorChar); |
|
||||
if (!File.Exists(filePath)) |
|
||||
{ |
|
||||
response.ContentLength64 = 0; |
|
||||
response.StatusCode = 404; |
|
||||
response.Abort(); |
|
||||
} |
|
||||
else |
|
||||
{ |
{ |
||||
response.StatusCode = 200; |
WriteStreamToFile(br, filePath, request.ContentLength64); |
||||
string exeName = Path.GetExtension(filePath); |
|
||||
response.ContentType = GetContentType(exeName); |
|
||||
FileStream fileStream = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read, FileShare.ReadWrite); |
|
||||
int byteLength = (int)fileStream.Length; |
|
||||
byte[] fileBytes = new byte[byteLength]; |
|
||||
fileStream.Read(fileBytes, 0, byteLength); |
|
||||
fileStream.Close(); |
|
||||
fileStream.Dispose(); |
|
||||
response.ContentLength64 = byteLength; |
|
||||
response.OutputStream.Write(fileBytes, 0, byteLength); |
|
||||
response.OutputStream.Close(); |
|
||||
} |
} |
||||
#endregion
|
|
||||
} |
} |
||||
} |
response.ContentType = "text/html;charset=utf-8"; |
||||
catch (Exception ex) |
|
||||
{ |
|
||||
LogUnit.Error(ex.Message); |
|
||||
response.StatusCode = 200; |
|
||||
response.ContentType = "text/plain"; |
|
||||
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
||||
{ |
{ |
||||
writer.WriteLine("接收完成!"); |
writer.WriteLine("接收完成!"); |
||||
} |
} |
||||
|
|
||||
|
#endregion
|
||||
} |
} |
||||
try |
else |
||||
{ |
{ |
||||
response.Close(); |
#region 网页请求
|
||||
|
string InputStream = ""; |
||||
|
using (var streamReader = new StreamReader(request.InputStream)) |
||||
|
{ |
||||
|
InputStream = streamReader.ReadToEnd(); |
||||
|
} |
||||
|
string filePath = ""; |
||||
|
if (string.IsNullOrEmpty(rawUrl) || rawUrl.Length == 0 || rawUrl == "/") |
||||
|
filePath = WebHomeDir + directorySeparatorChar + "Index.html"; |
||||
|
else |
||||
|
filePath = WebHomeDir + rawUrl.Replace("/", directorySeparatorChar); |
||||
|
if (!File.Exists(filePath)) |
||||
|
{ |
||||
|
response.ContentLength64 = 0; |
||||
|
response.StatusCode = 404; |
||||
|
response.Abort(); |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
response.StatusCode = 200; |
||||
|
string exeName = Path.GetExtension(filePath); |
||||
|
response.ContentType = GetContentType(exeName); |
||||
|
FileStream fileStream = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read, FileShare.ReadWrite); |
||||
|
int byteLength = (int)fileStream.Length; |
||||
|
byte[] fileBytes = new byte[byteLength]; |
||||
|
fileStream.Read(fileBytes, 0, byteLength); |
||||
|
fileStream.Close(); |
||||
|
fileStream.Dispose(); |
||||
|
response.ContentLength64 = byteLength; |
||||
|
response.OutputStream.Write(fileBytes, 0, byteLength); |
||||
|
response.OutputStream.Close(); |
||||
|
} |
||||
|
#endregion
|
||||
} |
} |
||||
catch (Exception ex) |
} |
||||
|
catch (Exception ex) |
||||
|
{ |
||||
|
LogUnit.Error(ex.Message); |
||||
|
response.StatusCode = 200; |
||||
|
response.ContentType = "text/plain"; |
||||
|
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
||||
{ |
{ |
||||
LogUnit.Error(ex.Message); |
writer.WriteLine("接收完成!"); |
||||
} |
} |
||||
} |
} |
||||
#endregion
|
try |
||||
|
|
||||
#region GetContentType
|
|
||||
/// <summary>
|
|
||||
/// 获取文件对应MIME类型
|
|
||||
/// </summary>
|
|
||||
/// <param name="fileExtention">文件扩展名,如.jpg</param>
|
|
||||
/// <returns></returns>
|
|
||||
protected string GetContentType(string fileExtention) |
|
||||
{ |
{ |
||||
if (string.Compare(fileExtention, ".html", true) == 0 |
response.Close(); |
||||
|| string.Compare(fileExtention, ".htm", true) == 0) |
|
||||
return "text/html;charset=utf-8"; |
|
||||
else if (string.Compare(fileExtention, ".js", true) == 0) |
|
||||
return "application/javascript"; |
|
||||
else if (string.Compare(fileExtention, ".css", true) == 0) |
|
||||
return "text/css"; |
|
||||
else if (string.Compare(fileExtention, ".png", true) == 0) |
|
||||
return "image/png"; |
|
||||
else if (string.Compare(fileExtention, ".jpg", true) == 0 || string.Compare(fileExtention, ".jpeg", true) == 0) |
|
||||
return "image/jpeg"; |
|
||||
else if (string.Compare(fileExtention, ".gif", true) == 0) |
|
||||
return "image/gif"; |
|
||||
else if (string.Compare(fileExtention, ".swf", true) == 0) |
|
||||
return "application/x-shockwave-flash"; |
|
||||
else if (string.Compare(fileExtention, ".pdf", true) == 0) |
|
||||
return "application/pdf"; |
|
||||
else |
|
||||
return "";//application/octet-stream
|
|
||||
} |
} |
||||
#endregion
|
catch (Exception ex) |
||||
|
{ |
||||
|
LogUnit.Error(ex.Message); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#endregion
|
||||
|
|
||||
|
#region GetContentType
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 获取文件对应MIME类型
|
||||
|
/// </summary>
|
||||
|
/// <param name="fileExtention">文件扩展名,如.jpg</param>
|
||||
|
/// <returns></returns>
|
||||
|
protected string GetContentType(string fileExtention) |
||||
|
{ |
||||
|
if (string.Compare(fileExtention, ".html", true) == 0 |
||||
|
|| string.Compare(fileExtention, ".htm", true) == 0) |
||||
|
return "text/html;charset=utf-8"; |
||||
|
else if (string.Compare(fileExtention, ".js", true) == 0) |
||||
|
return "application/javascript"; |
||||
|
else if (string.Compare(fileExtention, ".css", true) == 0) |
||||
|
return "text/css"; |
||||
|
else if (string.Compare(fileExtention, ".png", true) == 0) |
||||
|
return "image/png"; |
||||
|
else if (string.Compare(fileExtention, ".jpg", true) == 0 || string.Compare(fileExtention, ".jpeg", true) == 0) |
||||
|
return "image/jpeg"; |
||||
|
else if (string.Compare(fileExtention, ".gif", true) == 0) |
||||
|
return "image/gif"; |
||||
|
else if (string.Compare(fileExtention, ".swf", true) == 0) |
||||
|
return "application/x-shockwave-flash"; |
||||
|
else if (string.Compare(fileExtention, ".pdf", true) == 0) |
||||
|
return "application/pdf"; |
||||
|
else |
||||
|
return "";//application/octet-stream
|
||||
|
} |
||||
|
|
||||
|
#endregion
|
||||
|
|
||||
|
#region WriteStreamToFile
|
||||
|
|
||||
#region WriteStreamToFile
|
//const int ChunkSize = 1024 * 1024;
|
||||
//const int ChunkSize = 1024 * 1024;
|
private void WriteStreamToFile(BinaryReader br, string fileName, long length) |
||||
private void WriteStreamToFile(BinaryReader br, string fileName, long length) |
{ |
||||
|
byte[] fileContents = new byte[] { }; |
||||
|
var bytes = new byte[length]; |
||||
|
int i = 0; |
||||
|
while ((i = br.Read(bytes, 0, (int)length)) != 0) |
||||
{ |
{ |
||||
byte[] fileContents = new byte[] { }; |
byte[] arr = new byte[fileContents.LongLength + i]; |
||||
var bytes = new byte[length]; |
fileContents.CopyTo(arr, 0); |
||||
int i = 0; |
Array.Copy(bytes, 0, arr, fileContents.Length, i); |
||||
while ((i = br.Read(bytes, 0, (int)length)) != 0) |
fileContents = arr; |
||||
{ |
} |
||||
byte[] arr = new byte[fileContents.LongLength + i]; |
|
||||
fileContents.CopyTo(arr, 0); |
|
||||
Array.Copy(bytes, 0, arr, fileContents.Length, i); |
|
||||
fileContents = arr; |
|
||||
} |
|
||||
|
|
||||
using (var fs = new FileStream(fileName, FileMode.Create)) |
using (var fs = new FileStream(fileName, FileMode.Create)) |
||||
|
{ |
||||
|
using (var bw = new BinaryWriter(fs)) |
||||
{ |
{ |
||||
using (var bw = new BinaryWriter(fs)) |
bw.Write(fileContents); |
||||
{ |
|
||||
bw.Write(fileContents); |
|
||||
} |
|
||||
} |
} |
||||
} |
} |
||||
#endregion
|
|
||||
public void Log(string msg, bool isErr = false) |
|
||||
{ |
|
||||
//(msg, isErr);
|
|
||||
} |
|
||||
} |
} |
||||
} |
|
||||
|
#endregion
|
||||
|
|
||||
|
public void Log(string msg, bool isErr = false) |
||||
|
{ |
||||
|
//(msg, isErr);
|
||||
|
} |
||||
|
} |
File diff suppressed because it is too large
@ -0,0 +1,14 @@ |
|||||
|
namespace JiLinApp.Docking.Military; |
||||
|
|
||||
|
public class MilitaryConfig |
||||
|
{ |
||||
|
public string Url { get; set; } |
||||
|
|
||||
|
public string UserName { get; set; } |
||||
|
|
||||
|
public string Password { get; set; } |
||||
|
|
||||
|
public int RequestRetryTime { get; set; } |
||||
|
|
||||
|
public int RequestRetryInterval { get; set; } |
||||
|
} |
@ -0,0 +1,18 @@ |
|||||
|
namespace JiLinApp.Docking.Military; |
||||
|
|
||||
|
public class CameraLinkageInfo |
||||
|
{ |
||||
|
#region Fields
|
||||
|
|
||||
|
public string Id { get; set; } |
||||
|
|
||||
|
public string DeviceId { get; set; } |
||||
|
|
||||
|
public string SensorId { get; set; } |
||||
|
|
||||
|
public string CameraId { get; set; } |
||||
|
|
||||
|
public int[] PresetIds { get; set; } |
||||
|
|
||||
|
#endregion Fields
|
||||
|
} |
@ -0,0 +1,158 @@ |
|||||
|
using EC.Util.CameraSDK; |
||||
|
using EC.Util.Common; |
||||
|
using Flurl.Http; |
||||
|
using Newtonsoft.Json.Linq; |
||||
|
|
||||
|
namespace JiLinApp.Docking.Military; |
||||
|
|
||||
|
public class MilitaryService |
||||
|
{ |
||||
|
#region Fields
|
||||
|
|
||||
|
private MilitaryConfig Config { get; } |
||||
|
|
||||
|
private string Token { get; set; } |
||||
|
|
||||
|
#endregion Fields
|
||||
|
|
||||
|
public MilitaryService(MilitaryConfig config) |
||||
|
{ |
||||
|
Config = config; |
||||
|
Token = Login(); |
||||
|
} |
||||
|
|
||||
|
#region Base
|
||||
|
|
||||
|
private string GetUrl() |
||||
|
{ |
||||
|
return Config.Url; |
||||
|
} |
||||
|
|
||||
|
#endregion Base
|
||||
|
|
||||
|
#region Cmd
|
||||
|
|
||||
|
public string Login() |
||||
|
{ |
||||
|
string url = $"{GetUrl()}/sys/login"; |
||||
|
object data = new |
||||
|
{ |
||||
|
username = Config.UserName, |
||||
|
password = Config.Password, |
||||
|
}; |
||||
|
JObject response = new(); |
||||
|
for (int i = 0; i < Config.RequestRetryTime; i++) |
||||
|
{ |
||||
|
response = url.PostJsonAsync(data).ReceiveJson<JObject>().Result; |
||||
|
bool success = response["success"].ToBoolean(); |
||||
|
if (!success) |
||||
|
{ |
||||
|
Thread.Sleep(Config.RequestRetryInterval); |
||||
|
continue; |
||||
|
} |
||||
|
string? token = response["result"]?["token"]?.ToString(); |
||||
|
return token ?? string.Empty; |
||||
|
} |
||||
|
string? message = response["message"]?.ToString(); |
||||
|
throw new Exception(message); |
||||
|
} |
||||
|
|
||||
|
public List<CameraInfo> GetCameraList() |
||||
|
{ |
||||
|
string url = $"{GetUrl()}/camera/setting/list"; |
||||
|
JObject response = new(); |
||||
|
for (int i = 0; i < Config.RequestRetryTime; i++) |
||||
|
{ |
||||
|
response = url.GetAsync().ReceiveJson<JObject>().Result; |
||||
|
bool success = response["success"].ToBoolean(); |
||||
|
if (!success) |
||||
|
{ |
||||
|
Thread.Sleep(Config.RequestRetryInterval); |
||||
|
continue; |
||||
|
} |
||||
|
JToken records = response?["result"]?["records"] ?? new JObject(); |
||||
|
List<CameraInfo> list = new(); |
||||
|
foreach (var item in records) |
||||
|
{ |
||||
|
CameraManufactor manufactor; |
||||
|
string factory = item?["factory_dictText"]?.ToString() ?? string.Empty; |
||||
|
if (factory.Contains("海康威视")) manufactor = CameraManufactor.HiK; |
||||
|
else if (factory.Contains("大华")) manufactor = CameraManufactor.DaHua; |
||||
|
else if (factory.Contains("宇视")) manufactor = CameraManufactor.YuShi; |
||||
|
else continue; |
||||
|
string id = item?["id"]?.ToString() ?? string.Empty; |
||||
|
string ip = item?["ip"]?.ToString() ?? string.Empty; |
||||
|
string username = item?["user"]?.ToString() ?? string.Empty; |
||||
|
string password = item?["password"]?.ToString() ?? string.Empty; |
||||
|
if (VerifyUtil.IsEmpty(id) || !VerifyUtil.IsIp(ip) || VerifyUtil.IsEmpty(username) || VerifyUtil.IsEmpty(password)) continue; |
||||
|
CameraInfo info = CameraInfo.New(manufactor, ip, username, password); |
||||
|
info.Id = id; |
||||
|
list.Add(info); |
||||
|
} |
||||
|
return list; |
||||
|
} |
||||
|
string? message = response["message"]?.ToString(); |
||||
|
throw new Exception(message); |
||||
|
} |
||||
|
|
||||
|
public List<object> GetFencesInfoList() |
||||
|
{ |
||||
|
string url = $"{GetUrl()}/msFencesInfo/list"; |
||||
|
JObject response = new(); |
||||
|
for (int i = 0; i < Config.RequestRetryTime; i++) |
||||
|
{ |
||||
|
response = url.WithHeader("X-Access-Token", Token).GetAsync().ReceiveJson<JObject>().Result; |
||||
|
bool success = response["success"].ToBoolean(); |
||||
|
if (!success) |
||||
|
{ |
||||
|
Thread.Sleep(Config.RequestRetryInterval); |
||||
|
continue; |
||||
|
} |
||||
|
return new List<object>(); |
||||
|
} |
||||
|
string? message = response["message"]?.ToString(); |
||||
|
throw new Exception(message); |
||||
|
} |
||||
|
|
||||
|
public List<CameraLinkageInfo> GetCameraLinkageList() |
||||
|
{ |
||||
|
string url = $"{GetUrl()}/military/MsCameraLinkage/list"; |
||||
|
JObject response = new(); |
||||
|
for (int i = 0; i < Config.RequestRetryTime; i++) |
||||
|
{ |
||||
|
response = url.GetAsync().ReceiveJson<JObject>().Result; |
||||
|
bool success = response["success"].ToBoolean(); |
||||
|
if (!success) |
||||
|
{ |
||||
|
Thread.Sleep(Config.RequestRetryInterval); |
||||
|
continue; |
||||
|
} |
||||
|
JToken records = response?["result"]?["records"] ?? new JObject(); |
||||
|
List<CameraLinkageInfo> list = new(); |
||||
|
foreach (var item in records) |
||||
|
{ |
||||
|
string id = item?["id"]?.ToString() ?? string.Empty; |
||||
|
//string deviceId = item?["deviceId"]?.ToString() ?? string.Empty;
|
||||
|
string deviceId = "0"; |
||||
|
string sensorId = item?["objCode"]?.ToString() ?? string.Empty; |
||||
|
string cameraId = item?["cameraId"]?.ToString() ?? string.Empty; |
||||
|
string placements = item?["placements"]?.ToString() ?? string.Empty; |
||||
|
int[] presetIds = Array.ConvertAll(placements.Split(","), int.Parse); |
||||
|
if (VerifyUtil.IsEmpty(id) || VerifyUtil.IsEmpty(sensorId) || VerifyUtil.IsEmpty(cameraId)) continue; |
||||
|
list.Add(new() |
||||
|
{ |
||||
|
Id = id, |
||||
|
DeviceId = deviceId, |
||||
|
SensorId = sensorId, |
||||
|
CameraId = cameraId, |
||||
|
PresetIds = presetIds |
||||
|
}); |
||||
|
} |
||||
|
return list; |
||||
|
} |
||||
|
string? message = response["message"]?.ToString(); |
||||
|
throw new Exception(message); |
||||
|
} |
||||
|
|
||||
|
#endregion Cmd
|
||||
|
} |
Loading…
Reference in new issue