public ApiResp Execute(System.Collections.Hashtable params_ht) { ApiResp resp = new ApiResp(); try { string jsonData = params_ht["json"].ToString(); dynamic jsonObj = DynamicJson.Parse(jsonData); string carId = ""; if (jsonObj.IsDefined("carId")) { carId = jsonObj.carId; } string csq = ""; if (jsonObj.IsDefined("csq")) { csq = jsonObj.csq; } string voltage = ""; if (jsonObj.IsDefined("voltage")) { voltage = jsonObj.voltage; } string dumpEle = ""; if (jsonObj.IsDefined("dumpEle")) { dumpEle = jsonObj.dumpEle; } VehicleManager vm = new VehicleManager(); Hashtable vehicle_ht = vm.GetVehicleInfoByGPSNum(carId); if (vehicle_ht != null && vehicle_ht.Keys.Count > 0) { string strLastUpdateTime = SiteHelper.GetHashTableValueByKey(vehicle_ht, "LastUpdateTime"); int diffSecond = 5; if (!string.IsNullOrEmpty(strLastUpdateTime)) { DateTime lastUpdateTime = DateTime.Parse(strLastUpdateTime); diffSecond = SiteHelper.ExecDateDiffSecond(lastUpdateTime, DateTime.Now); } if (diffSecond > 3) { string vid = vehicle_ht["ID"].ToString(); Hashtable ht = new Hashtable(); if (!string.IsNullOrEmpty(dumpEle)) { double power = -1; double.TryParse(dumpEle, out power); if (power >= 0 && power <= 1) { ht["Electricity"] = (int)(power * 100); } } ht["LastUpdateTime"] = DateTime.Now; bool result = false; if (ht.Keys.Count > 0) { result = vm.AddOrEditVehicleInfo(ht, vid); } resp.Code = result ? "0" : "1"; } else { resp.Code = "3"; } } return(resp); } catch { resp.Code = "1"; return(resp); } }
public ApiResp Execute(System.Collections.Hashtable params_ht) { ApiResp resp = new ApiResp(); try { string carId = SiteHelper.GetHashTableValueByKey(params_ht, "carId"); //车辆ID string latitude = SiteHelper.GetHashTableValueByKey(params_ht, "latitude"); //纬度 string longitude = SiteHelper.GetHashTableValueByKey(params_ht, "longitude"); //经度 string elevation = SiteHelper.GetHashTableValueByKey(params_ht, "elevation"); //海拔 string speed = SiteHelper.GetHashTableValueByKey(params_ht, "speed"); //车速 string direction = SiteHelper.GetHashTableValueByKey(params_ht, "direction"); //方向 string time = SiteHelper.GetHashTableValueByKey(params_ht, "time"); //时间 string surplusPercent = SiteHelper.GetHashTableValueByKey(params_ht, "surplusPercent"); //剩余电量百分比 string surplusDistance = SiteHelper.GetHashTableValueByKey(params_ht, "surplusDistance"); //剩余续航里程 string distance = SiteHelper.GetHashTableValueByKey(params_ht, "distance"); //总行驶里程 VehicleManager vm = new VehicleManager(); Hashtable vehicle_ht = vm.GetVehicleInfoByGPSNum(carId); if (vehicle_ht != null && vehicle_ht.Keys.Count > 0) { string vid = vehicle_ht["ID"].ToString(); Hashtable ht = new Hashtable(); if (!string.IsNullOrEmpty(longitude)) { ht["Longitude"] = string.Format("{0}", decimal.Parse(longitude) / 1000000); } if (!string.IsNullOrEmpty(latitude)) { ht["Latitude"] = string.Format("{0}", decimal.Parse(latitude) / 1000000); } if (!string.IsNullOrEmpty(speed)) { ht["CurrentSpeed"] = speed; } if (!string.IsNullOrEmpty(time)) { ht["GPSTime"] = DateTime.Now; } if (!string.IsNullOrEmpty(surplusPercent)) { ht["Electricity"] = surplusPercent; } if (!string.IsNullOrEmpty(surplusDistance)) { ht["ExpectRange"] = surplusDistance; } if (!string.IsNullOrEmpty(distance)) { ht["Mileage"] = distance; } bool result = vm.AddOrEditVehicleInfo(ht, vid); resp.Code = result ? "0" : "1"; } return(resp); } catch { resp.Code = "1"; return(resp); } }
public ApiResp Execute(System.Collections.Hashtable params_ht) { ApiResp resp = new ApiResp(); try { string jsonData = params_ht["json"].ToString(); dynamic jsonObj = DynamicJson.Parse(jsonData); string carId = ""; if (jsonObj.IsDefined("carId")) { carId = jsonObj.carId;//车辆ID } string latitude = ""; if (jsonObj.IsDefined("body.latitude")) { latitude = jsonObj.body.latitude;//纬度 } string longitude = ""; if (jsonObj.IsDefined("body.longitude")) { longitude = jsonObj.body.longitude;//经度 } string elevation = ""; if (jsonObj.IsDefined("body.elevation")) { elevation = jsonObj.body.elevation;//海拔 } string speed = ""; if (jsonObj.IsDefined("body.speed")) { speed = jsonObj.body.speed;//车速 } string direction = ""; if (jsonObj.IsDefined("body.direction")) { direction = jsonObj.body.direction;//方向 } string time = ""; if (jsonObj.IsDefined("body.time")) { time = jsonObj.body.time;//时间 } string surplusPercent = ""; if (jsonObj.IsDefined("body.surplusPercent")) { surplusPercent = jsonObj.body.surplusPercent;//剩余电量百分比 } string surplusDistance = ""; if (jsonObj.IsDefined("body.surplusDistance")) { surplusDistance = jsonObj.body.surplusDistance;//剩余续航里程 } string distance = ""; if (jsonObj.IsDefined("body.distance")) { distance = jsonObj.body.distance;//总行驶里程 } VehicleManager vm = new VehicleManager(); Hashtable vehicle_ht = vm.GetVehicleInfoByGPSNum(carId); if (vehicle_ht != null && vehicle_ht.Keys.Count > 0) { string vid = vehicle_ht["ID"].ToString(); Hashtable ht = new Hashtable(); if (!string.IsNullOrEmpty(longitude)) { ht["Longitude"] = longitude; } if (!string.IsNullOrEmpty(latitude)) { ht["Latitude"] = latitude; } if (!string.IsNullOrEmpty(speed)) { ht["CurrentSpeed"] = speed; } if (!string.IsNullOrEmpty(time)) { ht["GPSTime"] = DateTime.Now; } if (!string.IsNullOrEmpty(surplusPercent)) { ht["Electricity"] = surplusPercent; } if (!string.IsNullOrEmpty(surplusDistance)) { ht["ExpectRange"] = surplusDistance; } if (!string.IsNullOrEmpty(distance)) { ht["Mileage"] = distance; } bool result = false; if (ht.Keys.Count > 0) { result = vm.AddOrEditVehicleInfo(ht, vid); } resp.Code = result ? "0" : "1"; } return(resp); } catch { resp.Code = "1"; return(resp); } }
public ApiResp Execute(Hashtable params_ht) { int start = DateTime.Now.Millisecond; ApiResp resp = new ApiResp(); ICache cache = null; try { cache = CacheFactory.GetCache(); string jsonData = params_ht["json"].ToString(); dynamic jsonObj = DynamicJson.Parse(jsonData); string carId = ""; if (jsonObj.IsDefined("carId")) { carId = jsonObj.carId; } double distance = 0.00; if (jsonObj.IsDefined("distance")) { distance = jsonObj.distance; } if (jsonObj.IsDefined("data")) { foreach (var item in jsonObj.data) { string acc = ""; if (item.IsDefined("acc")) { acc = item.acc; } double longitude = 0.00; if (item.IsDefined("longitude")) { longitude = item.longitude; } double latitude = 0.00; if (item.IsDefined("latitude")) { latitude = item.latitude; } double speed = 0.00; if (item.IsDefined("speed")) { speed = item.speed; } string defend = ""; if (item.IsDefined("defend")) { defend = item.defend; } VehicleManager vm = new VehicleManager(); Hashtable vehicle_ht = vm.GetVehicleInfoByGPSNum(carId); if (vehicle_ht != null && vehicle_ht.Keys.Count > 0) { string vid = vehicle_ht["ID"].ToString(); //车辆使用状态 1空闲,2预约中,3客户使用中,4运维操作中 string useState = SiteHelper.GetHashTableValueByKey(vehicle_ht, "UseState"); string strLastUpdateTime = SiteHelper.GetHashTableValueByKey(vehicle_ht, "LastUpdateTime"); int diffSecond = 5; if (!string.IsNullOrEmpty(strLastUpdateTime)) { DateTime lastUpdateTime = DateTime.Parse(strLastUpdateTime); diffSecond = SiteHelper.ExecDateDiffSecond(lastUpdateTime, DateTime.Now); } if (diffSecond > 3) { Hashtable ht = new Hashtable(); //车辆开关状态 LockState ,开:unlock,关:lock //acc =1 && defend =0 启动 unlock if (acc.Equals("1") && defend.Equals("0")) { ht["LockState"] = "unlock"; } //defend =1 设防 lock if (defend.Equals("1")) { ht["LockState"] = "lock"; } if (longitude > 0) { ht["Longitude"] = longitude; } if (latitude > 0) { ht["Latitude"] = latitude; } ht["CurrentSpeed"] = speed; ht["Mileage"] = distance / 1000.00; ht["GPSTime"] = DateTime.Now; ht["LastUpdateTime"] = DateTime.Now; bool result = false; if (ht.Keys.Count > 0) { result = vm.AddOrEditVehicleInfo(ht, vid); } Hashtable htAlarm = new Hashtable(); //超速 if (speed > 30) { string overSpeedKey = "over_speed_" + carId; string overSpeedValue = cache.Get <string>(overSpeedKey); if (string.IsNullOrEmpty(overSpeedValue)) { Logger.Warn("超速报警," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); VehicleAlarmManager alarmManager = new VehicleAlarmManager(); htAlarm["ID"] = Guid.NewGuid().ToString(); htAlarm["VehicleID"] = vid; htAlarm["IMEI"] = carId; htAlarm["AlarmType"] = 6; htAlarm["Speed"] = speed; htAlarm["AlarmTime"] = DateTime.Now; htAlarm["AlarmStatus"] = 0; htAlarm["CreateTime"] = DateTime.Now; if (alarmManager.AddOrEdit(htAlarm, null)) { DateTime timeSpan = DateTime.Now.AddMinutes(1); cache.Set(overSpeedKey, 1, timeSpan - DateTime.Now); Logger.Warn("超速报警记录添加成功," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); } else { Logger.Warn("超速报警记录添加失败," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); } } } else { if (speed >= 5 && "1".Equals(useState)) { string moveKey = "move_" + carId; string moveValue = cache.Get <string>(moveKey); if (string.IsNullOrEmpty(moveValue)) { Logger.Warn("无单移动报警," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc + ",useState=" + useState); VehicleAlarmManager alarmManager = new VehicleAlarmManager(); htAlarm["ID"] = Guid.NewGuid().ToString(); htAlarm["VehicleID"] = vid; htAlarm["IMEI"] = carId; htAlarm["AlarmType"] = 1; htAlarm["Speed"] = speed; htAlarm["AlarmTime"] = DateTime.Now; htAlarm["AlarmStatus"] = 0; htAlarm["CreateTime"] = DateTime.Now; if (alarmManager.AddOrEdit(htAlarm, null)) { DateTime timeSpan = DateTime.Now.AddMinutes(10); cache.Set(moveKey, 1, timeSpan - DateTime.Now); Logger.Warn("无单移动报警记录添加成功," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); } else { Logger.Warn("无单移动报警记录添加失败," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); } } } } string outAreaKey = "out_area_" + carId; string outAreaValue = cache.Get <string>(outAreaKey); if (string.IsNullOrEmpty(outAreaValue) && latitude > 0 && longitude > 0) { string serviceAreaKey = "Service_Area_" + vehicle_ht["CITYID"].ToString(); string coordinates = cache.Get <string>(serviceAreaKey); if (string.IsNullOrEmpty(coordinates)) { ServiceAreaManager areaManager = new ServiceAreaManager(); Hashtable area_ht = areaManager.GetServiceAreaByVehicleID(vid); if (area_ht != null && area_ht.Keys.Count > 0) { coordinates = SiteHelper.GetHashTableValueByKey(area_ht, "Coordinates"); if (!string.IsNullOrEmpty(coordinates)) { DateTime timeSpan = DateTime.Now.AddDays(10); cache.Set(serviceAreaKey, coordinates, timeSpan - DateTime.Now); } } } List <LatLng> area_pts = new List <LatLng>(); if (!string.IsNullOrEmpty(coordinates)) { foreach (string str in coordinates.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries)) { string[] pt_arr = str.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries); LatLng pt = new LatLng(double.Parse(pt_arr[1]), double.Parse(pt_arr[0])); area_pts.Add(pt); } LatLng vehicle_pt = new LatLng(latitude, longitude); //车辆GPS坐标转高德坐标 vehicle_pt = SiteHelper.GPSToGCJ02(longitude.ToString(), latitude.ToString()); vehicle_pt = new LatLng(Math.Round(vehicle_pt.latitude, 6), Math.Round(vehicle_pt.longitude, 6)); bool isInPoly = SiteHelper.IsPtInPoly(vehicle_pt, area_pts); if (!isInPoly) { Logger.Warn("越界报警," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); VehicleAlarmManager alarmManager = new VehicleAlarmManager(); htAlarm["ID"] = Guid.NewGuid().ToString(); htAlarm["VehicleID"] = vid; htAlarm["IMEI"] = carId; htAlarm["AlarmType"] = 4; htAlarm["Speed"] = speed; htAlarm["AlarmTime"] = DateTime.Now; htAlarm["AlarmStatus"] = 0; htAlarm["CreateTime"] = DateTime.Now; bool alarmResult = alarmManager.AddOrEdit(htAlarm, null); if (alarmResult) { //越界20分钟内有效 DateTime dt = DateTime.Now.AddMinutes(20); cache.Set(outAreaKey, carId, dt - DateTime.Now); Logger.Warn("越界报警记录添加成功," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); } else { Logger.Warn("越界报警记录添加失败," + vid + "," + carId + ",speed=" + speed + ",defend =" + defend + ",acc=" + acc); } } } } int end = DateTime.Now.Millisecond; Logger.Warn("小安盒子接口网关上报状态信息数据,耗时" + (end - start) + "ms," + vid + "," + carId + ",defend = " + defend + ",acc=" + acc + ",LockState=" + ht["LockState"]); resp.Code = result ? "0" : "1"; resp.Message = result ? "success" : "fail"; } else { resp.Code = "3"; } } } } if (cache != null) { cache.Dispose(); } return(resp); } catch (Exception e) { Logger.Error("盒子上报状态信息报错:" + e); string message = e.Message; if (cache != null) { cache.Dispose(); } resp.Code = "1"; resp.Message = "fail"; return(resp); } }