using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Web;
using Foresight.Data;
using Foresight.ServiceModel;
using IronIntel.Contractor.Machines;
using Foresight.Fleet.Services.Asset;
using Foresight.Fleet.Services.MapView;
using Foresight.Fleet.Services.JobSite;
using Foresight.Fleet.Services.Device;
using Foresight.Fleet.Services.User;
using System.Threading;
using DocumentFormat.OpenXml.Spreadsheet;
namespace IronIntel.Contractor.MapView
{
public class AssetMapViewManagement : MachineManagement
{
///
/// 根据Contractorid获取机器列表
///
///
public static AssetMapViewPinItem[] GetAssets(string sessionid, string companyid, string useriid, string filtertext, int onroad, MachineAlertViewQueryParameter param, bool IncludeNoLocation, int attachment)
{
if (string.IsNullOrEmpty(companyid))
companyid = SystemParams.CompanyID;
MapViewAssetsQueryParam qp = new MapViewAssetsQueryParam();
qp.FilterString = filtertext;
qp.OnRoad = onroad;
qp.IncludeNoLocation = IncludeNoLocation;
qp.IncludeAssetGroups = true;
qp.IncludeJobSites = true;
if (param != null)
{
qp.ViewId = param.ViewID;
qp.AlertViewQueryParam = param;
}
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
AssetMapViewPinItem[] assets = client.GetAssets(companyid, useriid, qp, attachment);
List result = new List();
foreach (var a in assets)
{
AssetMapViewPinItemClient avi = new AssetMapViewPinItemClient();
Helper.CloneProperty(avi, a);
result.Add(avi);
}
return result.ToArray();
}
///
/// 获取Dealer站点下多个Contractor机器列表
///
///
public static AssetMapViewPinItem[] GetDealerAssets(string sessionid, string companyids, string useriid, string filtertext, int onroad, MachineAlertViewQueryParameter param, bool IncludeNoLocation, int attachment)
{
string[] cids = null;
if (!string.IsNullOrEmpty(companyids))
cids = companyids.Split(',');
var contractors = SystemParams.GetContractors();
if (cids == null || cids.Length == 0)
cids = contractors.Select(c => c.ID).ToArray();
if (cids == null || cids.Length == 0)
return new AssetMapViewPinItem[0];
int requestCount = 0;
Exception lasterror = null;
List results = new List();
foreach (var cid in cids)
{
requestCount++;
Thread th = new Thread((object state) =>
{
try
{
var assets = GetAssets(sessionid, cid, useriid, filtertext, onroad, param, IncludeNoLocation, attachment);
lock (results)
{
foreach (var a in assets)
{
AssetMapViewPinItemClient asset = new AssetMapViewPinItemClient();
Helper.CloneProperty(asset, a);
var c = contractors.FirstOrDefault(t => t.ID.Equals(cid, StringComparison.OrdinalIgnoreCase));
if (c != null)
{
asset.CompanyID = c.ID;
asset.CompanyName = c.Name;
}
results.Add(asset);
}
}
}
catch (Exception ex)
{
lasterror = ex;
}
requestCount--;
});
th.Start();
}
while (true)
{
Thread.Sleep(10);
if (requestCount == 0)
{
break;
}
}
if (lasterror != null)
{
throw lasterror;
}
return results.ToArray();
}
public static AssetDetailViewItem GetAssetDetailItem(string sessionid, string companyid, long machineid, string datasource = null)
{
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
var locclient = FleetServiceClientHelper.CreateClient(companyid, sessionid);
var asset = client.GetAssetDetailInfo(companyid, machineid);
var companyinfo = SystemParams.GetCustomerInfo(companyid);
AssetDetailViewItem mi = new AssetDetailViewItem();
if (companyinfo != null)
{
mi.CompanyID = companyinfo.ID;
mi.CompanyName = companyinfo.Name;
}
mi.ID = asset.ID;
mi.Name = asset.Name;
mi.Name2 = asset.Name2;
mi.VIN = asset.VIN;
mi.MakeYear = asset.MakeYear;
mi.Make = asset.MakeName;
mi.Model = asset.ModelName;
mi.AssetType = asset.TypeName;
mi.GroupNames = asset.GroupNames;
mi.IconUrl = asset.MapViewIconUrl;
mi.AssetIconUrl = asset.AssetIconUrl;
mi.Description = asset.Description;
mi.DisplayName = asset.DisplayName;
if (asset.CurrentHours != null)
{
mi.EngineHours = asset.CurrentHours.Corrected;
mi.EngineHoursDate = asset.CurrentHours.AsofTimeLocal;
}
mi.Location = new LocationViewItem();
var loc = asset.CurrentLocation;
if (!string.IsNullOrWhiteSpace(datasource)
&& (loc == null || string.Compare(datasource, loc.DataSource, true) != 0))
{
AssetLocationInfo[] locs = locclient.GetAssetCurrentLocation(companyid, machineid);
var tempLoc = locs.FirstOrDefault(l => string.Compare(datasource, l.DataSource, true) != 0);
if (tempLoc != null)
{
mi.Location.Latitude = tempLoc.Latitude;
mi.Location.Longitude = tempLoc.Longitude;
mi.Location.LocationTime = tempLoc.AsofTimeLocal;
mi.Location.Speed = tempLoc.Speed;
mi.Location.SpeedUnit = tempLoc.SpeedUnits;
mi.Location.PostedSpeed = tempLoc.PostedSpeedLimit;
mi.Location.PostedSpeedUnit = tempLoc.SpeedLimitUnits;
mi.Location.Street = tempLoc.Street;
//MapView页面 不会走此分支,所以暂时不用对DataSource/SubSource/EventType/MsgUID赋值
}
}
else if (loc != null)
{
mi.Location.Latitude = loc.Latitude;
mi.Location.Longitude = loc.Longitude;
mi.Location.LocationTime = loc.AsofTimeLocal;
mi.Location.Speed = loc.Speed;
mi.Location.SpeedUnit = loc.SpeedUnits;
mi.Location.PostedSpeed = loc.PostedSpeedLimit;
mi.Location.PostedSpeedUnit = loc.SpeedLimitUnits;
mi.Location.Street = loc.Street;
//当前位置没有LogID,通过DataSource/SubSource/EventType/MsgUID 来进行RequestVideo
mi.Location.DataSource = loc.DataSource;
mi.Location.SubSource = loc.SubSource;
mi.Location.EventType = loc.EventType;
mi.Location.MsgUID = loc.MsgUID;
}
var assetDevices = client.GetPairedDevices(companyid, machineid);
var device = assetDevices.FirstOrDefault(d => d.Source.Equals(Foresight.Fleet.Services.Device.DeviceInfo.DEVICESOURCE_SMARTWITNESS, StringComparison.OrdinalIgnoreCase)
&& d.Status == 1);
mi.Location.FromSmartWitness = device == null ? false : true;//11342 通过机器当前是否绑定SmartWitness来判断
if (asset.CurrentOdometer != null)
{
mi.Odometer = asset.CurrentOdometer.Corrected;
mi.OdometerUOM = asset.CurrentOdometer.UOM;
}
return mi;
}
public static AssetGroupViewItem[] GetAssetGroups(string sessionid, string companyid, string useriid, string searchtext)
{
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
AssetGroupInfo[] gs = client.GetAvailableAssetGroups(companyid, useriid, searchtext, false);
List list = new List();
foreach (var g in gs)
{
AssetGroupViewItem ag = new AssetGroupViewItem();
ag.ID = g.Id;
ag.Name = g.Name;
//ag.Assets = g.Assets;
list.Add(ag);
}
return list.ToArray();
}
public static AssetGroupViewItem[] GetDealerAssetGroups(string sessionid, string companyids, string useriid, string searchtext)
{
string[] cids = null;
if (!string.IsNullOrEmpty(companyids))
cids = companyids.Split(',');
var contractors = SystemParams.GetContractors();
if (cids == null || cids.Length == 0)
cids = contractors.Select(c => c.ID).ToArray();
if (cids == null || cids.Length == 0)
return new AssetGroupViewItem[0];
int requestCount = 0;
Exception lasterror = null;
List results = new List();
foreach (var cid in cids)
{
requestCount++;
Thread th = new Thread((object state) =>
{
try
{
var ags = GetAssetGroups(sessionid, cid, useriid, searchtext);
lock (results)
{
foreach (var ag in ags)
{
var c = contractors.FirstOrDefault(t => t.ID.Equals(cid, StringComparison.OrdinalIgnoreCase));
if (c != null)
{
ag.CompanyID = c.ID;
ag.CompanyName = c.Name;
}
}
results.AddRange(ags);
}
}
catch (Exception ex)
{
lasterror = ex;
}
requestCount--;
});
th.Start();
}
while (true)
{
Thread.Sleep(10);
if (requestCount == 0)
{
break;
}
}
if (lasterror != null)
{
throw lasterror;
}
return results.ToArray();
}
public static JobSiteViewItem[] GetJobsites(string sessionid, string companyid, string useriid, string searchtext)
{
if (string.IsNullOrEmpty(companyid))
companyid = SystemParams.CompanyID;
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
MapViewJobSiteInfo[] jss = client.GetAvailableJobSites(companyid, useriid, searchtext, false);
List list = new List();
foreach (var js in jss)
{
JobSiteViewItem ajs = new JobSiteViewItem();
ajs.ID = js.ID;
ajs.Name = js.Name;
ajs.Latitude = js.Latitude;
ajs.Longitude = js.Longitude;
ajs.Radius = js.Radius;
ajs.Radius_UOM = js.RadiusUOM;
if (js.StartDate != null)
ajs.StartDate = js.StartDate.Value;
if (js.EndDate != null)
ajs.EndDate = js.EndDate.Value;
if (js.ProjectedEndDate != null)
ajs.ProjectedEndDate = js.ProjectedEndDate.Value;
//ajs.Assets = js.Assets;
ajs.ColorString = js.Color;
System.Drawing.Color color = System.Drawing.Color.Orange;
try
{
color = System.Drawing.ColorTranslator.FromHtml(js.Color);
}
catch
{
}
ajs.Color = new IIColor() { Alpha = color.A, Red = color.R, Green = color.G, Blue = color.B };
if (js.Polygon != null)
{
List temp = new List();
foreach (var p in js.Polygon)
{
temp.Add(new PostionItem(p.Latitude, p.Longtitude));
}
ajs.Polygon = temp.ToArray();
}
ajs.Notes = js.Notes;
ajs.Code = js.Code;
ajs.RegionId = js.ReginId;
ajs.Region = js.Region;
ajs.Number = js.Number;
ajs.Foreman = js.Foreman;
ajs.Manager = js.Manager;
ajs.Phone = js.Phone;
ajs.Email = js.Email;
ajs.Group = js.Group;
ajs.Address1 = js.Address1;
ajs.Address2 = js.Address2;
ajs.City = js.City;
ajs.State = js.State;
ajs.Zip = js.Zip;
ajs.County = js.County;
ajs.BaseOnMachineID = js.BaseonMachineID;
ajs.Types = new string[] { js.JobSiteTypes };
list.Add(ajs);
}
return list.ToArray();
}
public static JobSiteViewItem[] GetDealerJobsites(string sessionid, string companyids, string useriid, string searchtext)
{
string[] cids = null;
if (!string.IsNullOrEmpty(companyids))
cids = companyids.Split(',');
var contractors = SystemParams.GetContractors();
if (cids == null || cids.Length == 0)
cids = contractors.Select(c => c.ID).ToArray();
if (cids == null || cids.Length == 0)
return new JobSiteViewItem[0];
int requestCount = 0;
Exception lasterror = null;
List results = new List();
foreach (var cid in cids)
{
requestCount++;
Thread th = new Thread((object state) =>
{
try
{
var jss = GetJobsites(sessionid, cid, useriid, searchtext);
lock (results)
{
foreach (var js in jss)
{
var c = contractors.FirstOrDefault(t => t.ID.Equals(cid, StringComparison.OrdinalIgnoreCase));
if (c != null)
{
js.CompanyID = c.ID;
js.CompanyName = c.Name;
}
}
results.AddRange(jss);
}
}
catch (Exception ex)
{
lasterror = ex;
}
requestCount--;
});
th.Start();
}
while (true)
{
Thread.Sleep(10);
if (requestCount == 0)
{
break;
}
}
if (lasterror != null)
{
throw lasterror;
}
return results.ToArray();
}
public static AssetLocationHistoryViewItem GetMachineLocationHistory(string sessionid, string machineid, DateTime startTime, DateTime endTime, string companyid, bool notShow00loc, string datasource)
{
if (string.IsNullOrEmpty(companyid))
companyid = SystemParams.CompanyID;
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
AssetBasicInfo asset = client.GetAssetBasicInfoByID(companyid, Convert.ToInt64(machineid));
//AssetViewItem ai = new AssetViewItem();
//Helper.CloneProperty(ai, asset);
var assetDevices = client.GetPairedDevices(companyid, long.Parse(machineid));
var device = assetDevices.FirstOrDefault(d => d.Source.Equals(Foresight.Fleet.Services.Device.DeviceInfo.DEVICESOURCE_SMARTWITNESS, StringComparison.OrdinalIgnoreCase)
&& d.Status == 1);
var locclient = FleetServiceClientHelper.CreateClient(companyid, sessionid);
AssetLocationInfo[] assetLocs = locclient.GetAssetBasicLocationHistory(companyid, long.Parse(machineid), startTime, endTime, datasource, "", !notShow00loc);
List ls = new List();
foreach (AssetLocationInfo assetLoc in assetLocs)
{
LocationViewItem li = new LocationViewItem();
li.LogId = assetLoc.LogId;
li.Latitude = assetLoc.Latitude;
li.Longitude = assetLoc.Longitude;
li.LocationTime = assetLoc.AsofTimeLocal;
//历史位置通过Logid进行RequestVideo,无需对DataSource/SubSource/EventType/MsgUID 赋值
li.LogId = assetLoc.LogId;
li.Speed = assetLoc.Speed;
li.SpeedUnit = assetLoc.SpeedUnits;
li.PostedSpeed = assetLoc.PostedSpeedLimit;
li.PostedSpeedUnit = assetLoc.SpeedLimitUnits;
li.Street = assetLoc.Street;
li.HarshDringEvent = assetLoc.HarshDringEvent;
li.SpeedingBehavior = assetLoc.SpeedingBehavior;
li.IconURL = GenerateLocationIconUrl(assetLoc, asset.OnRoad);
li.SmartWitnessVideoUrl = assetLoc.SmartWitnessVideoUrl;
li.FromSmartWitness = device == null ? false : true;//11342 通过机器当前是否绑定SmartWitness来判断
//ConvertSpeedUnitToMile(li);
ls.Add(li);
}
AssetLocationHistoryViewItem al = new AssetLocationHistoryViewItem();
al.Machine = asset;
al.Locations = ls.ToArray();
return al;
}
private static string GenerateLocationIconUrl(AssetLocationInfo loc, bool onRoad)
{
//http://iron.soft.rz/admin/machinetypeicon.ashx
//http://iron.soft.rz/admin/machinemovingicon.ashx
string path = SystemParams.MachineTypeMapViewIconUrl.ToLower().Replace("machinetypeicon.ashx", "machinemovingicon.ashx");
const string PARAM = "?tp={0}&bkcolor={1}&heading={2}";
int tp = (int)HarshDrivingEvents.HardAccelerationEvent;
string color = "";
if (onRoad)
{
switch (loc.HarshDringEvent)
{
case HarshDrivingEvents.None:
break;
case HarshDrivingEvents.HardAccelerationEvent:
color = "#ff3f48cc";
break;
case HarshDrivingEvents.HardBrakeEvent:
color = "#ff00a8f3";
break;
case HarshDrivingEvents.HardTurnEvent:
color = "#fffff200";
break;
}
if (string.IsNullOrEmpty(color))
{
if (loc.SpeedingBehavior == SpeedingBehaviors.MinorSpeeding)
color = "#ffff7f27";
else if (loc.SpeedingBehavior == SpeedingBehaviors.SevereSpeeding)
color = "#ffec1c24";
}
}
if (string.IsNullOrEmpty(color))
{
if (loc.MoveStatus == AssetMoveStatus.InMotion)
color = "#ff228B22";
}
if (loc.Speed <= 0 && loc.MoveStatus == AssetMoveStatus.Unknown)
loc.Heading = -1;
if (string.IsNullOrEmpty(color))
{
if (loc.MoveStatus == AssetMoveStatus.StoppedOn)
return path + "?legend=StoppedOn";
else if (loc.MoveStatus == AssetMoveStatus.StoppedOff)
return path + "?legend=StoppedOff";
else if (loc.MoveStatus == AssetMoveStatus.ConnectivityRecovery)
return path + "?legend=CGAIN";
else if (loc.MoveStatus == AssetMoveStatus.ConnectivityLose)
return path + "?legend=CLOSS";
}
color = HttpUtility.UrlEncode(color);
path = path + string.Format(PARAM, tp, color, loc.Heading);
return path;
}
public static MapAlertViewDefinitionItem[] GetMapAlertViews(string sessionid, string companyid, string selectedViewID)
{
if (string.IsNullOrWhiteSpace(companyid))
companyid = SystemParams.CompanyID;
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
AlertViewMapItem[] views = client.GetAlertViewMapItems(companyid);
AlertViewMapItem viewInfo = null;
try
{
if (!string.IsNullOrWhiteSpace(selectedViewID))//获取View下使用的数据源信息
viewInfo = client.GetAlertViewMapItem(companyid, selectedViewID);
}
catch { }
string path = SystemParams.MachineTypeMapViewIconUrl;
List ls = new List();
foreach (AlertViewMapItem ai in views)
{
MapAlertViewDefinitionItem mi = new MapAlertViewDefinitionItem();
mi.ID = ai.ID;
mi.Name = ai.Name;
if (viewInfo != null && viewInfo.ID.Equals(mi.ID, StringComparison.OrdinalIgnoreCase))
{
mi.Layers = new MapAlertLayerDefinitionItem[viewInfo.Layers.Count];
for (int i = 0; i < viewInfo.Layers.Count; i++)
{
var layer = viewInfo.Layers[i];
mi.Layers[i] = new MapAlertLayerDefinitionItem();
mi.Layers[i].ID = layer.LayerId;
mi.Layers[i].Title = layer.Title;
mi.Layers[i].LegendUrl = layer.LegendUrl;
if (layer.Pivots != null && layer.Pivots.Count > 0)
mi.Layers[i].Pivots = ConvertPivotsDefine(layer.Pivots);
}
//mi.Layers = mi.Layers.OrderBy((l) => l.AlertLayerType).ToArray();
mi.LookupDataSources = ConvertLookupData(viewInfo.LookupDataSources);
}
ls.Add(mi);
}
return ls.OrderBy((mal) => mal.Name).ToArray();
}
public static MapAlertViewDefinitionItem[] GetDealerMapAlertViews(string sessionid, string companyids, string selectedViewID)
{
string[] cids = null;
if (!string.IsNullOrEmpty(companyids))
cids = companyids.Split(',');
var contractors = SystemParams.GetContractors();
if (cids == null || cids.Length == 0)
cids = contractors.Select(c => c.ID).ToArray();
if (cids == null || cids.Length == 0)
return new MapAlertViewDefinitionItem[0];
int requestCount = 0;
Exception lasterror = null;
List results = new List();
foreach (var cid in cids)
{
requestCount++;
Thread th = new Thread((object state) =>
{
try
{
var client = FleetServiceClientHelper.CreateClient(cid, sessionid);
AlertViewMapItem[] views = client.GetAlertViewMapItems(cid);
AlertViewMapItem viewInfo = null;
try
{
if (!string.IsNullOrWhiteSpace(selectedViewID))//获取View下使用的数据源信息
viewInfo = client.GetAlertViewMapItem(cid, selectedViewID);
}
catch { }
string path = SystemParams.MachineTypeMapViewIconUrl;
lock (results)
{
foreach (AlertViewMapItem ai in views)
{
MapAlertViewDefinitionItem mi = results.FirstOrDefault(r => r.ID.Equals(ai.ID, StringComparison.OrdinalIgnoreCase));
if (mi == null)
{
mi = new MapAlertViewDefinitionItem();
mi.ID = ai.ID;
mi.Name = ai.Name;
results.Add(mi);
}
if (viewInfo != null && viewInfo.ID.Equals(mi.ID, StringComparison.OrdinalIgnoreCase))
{
mi.Layers = new MapAlertLayerDefinitionItem[viewInfo.Layers.Count];
for (int i = 0; i < viewInfo.Layers.Count; i++)
{
var layer = viewInfo.Layers[i];
mi.Layers[i] = new MapAlertLayerDefinitionItem();
mi.Layers[i].ID = layer.LayerId;
mi.Layers[i].Title = layer.Title;
mi.Layers[i].LegendUrl = layer.LegendUrl;
if (layer.Pivots != null && layer.Pivots.Count > 0)
mi.Layers[i].Pivots = ConvertPivotsDefine(layer.Pivots);
}
//mi.Layers = mi.Layers.OrderBy((l) => l.AlertLayerType).ToArray();
var lookupData = ConvertLookupData(viewInfo.LookupDataSources);
mi.LookupDataSources.AddRange(lookupData);
}
}
}
}
catch (Exception ex)
{
lasterror = ex;
}
requestCount--;
});
th.Start();
}
while (true)
{
Thread.Sleep(10);
if (requestCount == 0)
{
break;
}
}
if (lasterror != null)
{
throw lasterror;
}
return results.OrderBy(r => r.Name).ToArray();
}
private static List ConvertLookupData(List data)
{
List result = new List();
if (data != null)
{
foreach (LookupDataSourceData d in data)
{
LookupDataSourceDataItem item = new LookupDataSourceDataItem();
item.ID = d.ID;
item.Name = d.Name;
item.Items.AddRange(d.Items);
result.Add(item);
}
}
return result;
}
private static AlertLayerPivotViewItem[] ConvertPivotsDefine(List paramerters)
{
List list = new List();
foreach (AlertLayerPivot pd in paramerters)
{
AlertLayerPivotViewItem pi = new AlertLayerPivotViewItem();
Helper.CloneProperty(pi, pd);
if (pi.DataType == DataTypes.Datetime)
{
try
{
pi.DefaultValue = DateTime.Parse(pi.DefaultValue).ToString("M/d/yyyy");
}
catch
{
}
}
list.Add(pi);
}
return list.ToArray();
}
///
/// 根据Contractorid获取Shape列表
///
///
public static ShapeFileItem[] GetShapes(string sessionid, string companyid, string filtertext)
{
if (string.IsNullOrEmpty(companyid))
companyid = SystemParams.CompanyID;
ShapeFileInfo[] files = FleetServiceClientHelper.CreateClient(companyid, sessionid).GetShapeFileInfos(companyid, filtertext);
if (files == null || files.Length == 0)
return new ShapeFileItem[0];
List list = new List();
foreach (ShapeFileInfo fi in files)
{
ShapeFileItem item = new ShapeFileItem();
Helper.CloneProperty(item, fi);
list.Add(item);
}
return list.OrderBy(m => m.Name).ToArray();
}
///
/// 获取Dealer站点下多个Contractor机器列表
///
///
public static ShapeFileItem[] GetDealerShapes(string sessionid, string companyids, string filtertext)
{
string[] cids = null;
if (!string.IsNullOrEmpty(companyids))
cids = companyids.Split(',');
var contractors = SystemParams.GetContractors();
if (cids == null || cids.Length == 0)
cids = contractors.Select(c => c.ID).ToArray();
if (cids == null || cids.Length == 0)
return new ShapeFileItem[0];
int requestCount = 0;
Exception lasterror = null;
List results = new List();
foreach (var cid in cids)
{
requestCount++;
Thread th = new Thread((object state) =>
{
try
{
ShapeFileInfo[] files = FleetServiceClientHelper.CreateClient(cid, sessionid).GetShapeFileInfos(cid, filtertext);
lock (results)
{
foreach (ShapeFileInfo fi in files)
{
ShapeFileItem item = new ShapeFileItem();
Helper.CloneProperty(item, fi);
var c = contractors.FirstOrDefault(t => t.ID.Equals(cid, StringComparison.OrdinalIgnoreCase));
if (c != null)
{
item.CompanyID = c.ID;
item.CompanyName = c.Name;
}
results.Add(item);
}
}
}
catch (Exception ex)
{
lasterror = ex;
}
requestCount--;
});
th.Start();
}
while (true)
{
Thread.Sleep(10);
if (requestCount == 0)
{
break;
}
}
if (lasterror != null)
{
throw lasterror;
}
return results.ToArray();
}
///
/// 根据Contractorid获取Location列表
///
///
public static CompanyLocationViewItem[] GetLocations(string sessionid, string companyid)
{
if (string.IsNullOrEmpty(companyid))
companyid = SystemParams.CompanyID;
var client = FleetServiceClientHelper.CreateClient(companyid, sessionid);
CustomerLocation[] locs = client.GetCompanyLocations(companyid);
List temps = new List();
foreach (var loc in locs)
{
CompanyLocationViewItem l = new CompanyLocationViewItem();
l.ID = loc.ID;
l.Latitude = loc.Latitude;
l.Longitude = loc.Longitude;
l.LocationName = loc.Name;
l.Notes = loc.Notes;
l.IconUrl = loc.IconUrl;
temps.Add(l);
}
return temps.ToArray();
}
///
/// 获取Dealer站点下多个Contractor机器列表
///
///
public static CompanyLocationViewItem[] GetDealerLocations(string sessionid, string companyids)
{
string[] cids = null;
if (!string.IsNullOrEmpty(companyids))
cids = companyids.Split(',');
var contractors = SystemParams.GetContractors();
if (cids == null || cids.Length == 0)
cids = contractors.Select(c => c.ID).ToArray();
if (cids == null || cids.Length == 0)
return new CompanyLocationViewItem[0];
int requestCount = 0;
Exception lasterror = null;
List results = new List();
foreach (var cid in cids)
{
requestCount++;
Thread th = new Thread((object state) =>
{
try
{
var client = FleetServiceClientHelper.CreateClient(cid, sessionid);
CustomerLocation[] locs = client.GetCompanyLocations(cid);
lock (results)
{
foreach (var loc in locs)
{
CompanyLocationViewItem l = new CompanyLocationViewItem();
l.ID = loc.ID;
l.Latitude = loc.Latitude;
l.Longitude = loc.Longitude;
l.LocationName = loc.Name;
l.Notes = loc.Notes;
l.IconUrl = loc.IconUrl;
results.Add(l);
}
}
}
catch (Exception ex)
{
lasterror = ex;
}
requestCount--;
});
th.Start();
}
while (true)
{
Thread.Sleep(10);
if (requestCount == 0)
{
break;
}
}
if (lasterror != null)
{
throw lasterror;
}
return results.ToArray();
}
}
}