Merge branch 'master' into careminster-presence-refactor
commit
e9382c2939
|
@ -1131,6 +1131,12 @@ namespace OpenSim.Client.MXP.ClientStack
|
|||
// SL Specific, Ignore. (Remove from IClient)
|
||||
}
|
||||
|
||||
public void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
public void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit, int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent, float PriceObjectScaleFactor, int PriceParcelClaim, float PriceParcelClaimFactor, int PriceParcelRent, int PricePublicObjectDecay, int PricePublicObjectDelete, int PriceRentLight, int PriceUpload, int TeleportMinPrice, float TeleportPriceExponent)
|
||||
{
|
||||
// SL Specific, Ignore. (Remove from IClient)
|
||||
|
|
|
@ -675,6 +675,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
|
|||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public virtual void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit, int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent, float PriceObjectScaleFactor, int PriceParcelClaim, float PriceParcelClaimFactor, int PriceParcelRent, int PricePublicObjectDecay, int PricePublicObjectDelete, int PriceRentLight, int PriceUpload, int TeleportMinPrice, float TeleportPriceExponent)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
|
|
|
@ -1062,6 +1062,8 @@ namespace OpenSim.Framework
|
|||
|
||||
void SendXferPacket(ulong xferID, uint packet, byte[] data);
|
||||
|
||||
void SendAbortXferPacket(ulong xferID);
|
||||
|
||||
void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit,
|
||||
int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent,
|
||||
float PriceObjectScaleFactor,
|
||||
|
|
|
@ -2097,6 +2097,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
OutPacket(sendXfer, ThrottleOutPacketType.Asset);
|
||||
}
|
||||
|
||||
public void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
AbortXferPacket xferItem = (AbortXferPacket)PacketPool.Instance.GetPacket(PacketType.AbortXfer);
|
||||
xferItem.XferID.ID = xferID;
|
||||
OutPacket(xferItem, ThrottleOutPacketType.Asset);
|
||||
}
|
||||
|
||||
public void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit,
|
||||
int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent, float PriceObjectScaleFactor,
|
||||
int PriceParcelClaim, float PriceParcelClaimFactor, int PriceParcelRent, int PricePublicObjectDecay,
|
||||
|
|
|
@ -97,6 +97,7 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
|
|||
NewFiles.Add(fileName, data);
|
||||
}
|
||||
}
|
||||
string filename = string.Empty;
|
||||
|
||||
if (Requests.ContainsKey(fileName))
|
||||
{
|
||||
|
@ -113,6 +114,7 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
|
|||
{
|
||||
client.OnRequestXfer += RequestXfer;
|
||||
client.OnConfirmXfer += AckPacket;
|
||||
client.OnAbortXfer += AbortXfer;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -125,6 +127,17 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
|
|||
{
|
||||
lock (NewFiles)
|
||||
{
|
||||
if (RequestTime.Count > 0)
|
||||
{
|
||||
TimeSpan ts = new TimeSpan(DateTime.UtcNow.Ticks - RequestTime[0].timeStamp.Ticks);
|
||||
if (ts.TotalSeconds > 30)
|
||||
{
|
||||
ulong zxferid = RequestTime[0].xferID;
|
||||
remoteClient.SendAbortXferPacket(zxferid);
|
||||
RemoveXferData(zxferid);
|
||||
}
|
||||
}
|
||||
|
||||
if (NewFiles.ContainsKey(fileName))
|
||||
{
|
||||
if (!Transfers.ContainsKey(xferID))
|
||||
|
@ -137,7 +150,7 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
|
|||
|
||||
if (transaction.StartSend())
|
||||
{
|
||||
Transfers.Remove(xferID);
|
||||
RemoveXferData(xferID);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -150,6 +163,8 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
|
|||
{
|
||||
Requests.Remove(RequestTime[0].fileName);
|
||||
RequestTime.RemoveAt(0);
|
||||
// Do we want to abort this here?
|
||||
//remoteClient.SendAbortXfer(xferID);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -165,22 +180,69 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public void AckPacket(IClientAPI remoteClient, ulong xferID, uint packet)
|
||||
{
|
||||
if (Transfers.ContainsKey(xferID))
|
||||
lock (NewFiles) // This is actually to lock Transfers
|
||||
{
|
||||
if (Transfers[xferID].AckPacket(packet))
|
||||
if (Transfers.ContainsKey(xferID))
|
||||
{
|
||||
XferDownLoad dl = Transfers[xferID];
|
||||
if (Transfers[xferID].AckPacket(packet))
|
||||
{
|
||||
Transfers.Remove(xferID);
|
||||
{
|
||||
RemoveXferData(xferID);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
if (Requests.ContainsKey(dl.FileName))
|
||||
{
|
||||
//
|
||||
XferRequest req = Requests[dl.FileName];
|
||||
req.timeStamp = DateTime.UtcNow;
|
||||
Requests[dl.FileName] = req;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void RemoveXferData(ulong xferID)
|
||||
{
|
||||
// NewFiles must be locked!
|
||||
if (Transfers.ContainsKey(xferID))
|
||||
{
|
||||
// Qualifier distinguishes between the OpenMetaverse version and the nested class
|
||||
|
||||
XferModule.XferDownLoad xferItem = Transfers[xferID];
|
||||
//string filename = xferItem.FileName;
|
||||
Transfers.Remove(xferID);
|
||||
xferItem.Data = new byte[0]; // Clear the data
|
||||
xferItem.DataPointer = 0;
|
||||
|
||||
// If the abort comes in
|
||||
if (NewFiles.ContainsKey(xferItem.FileName))
|
||||
NewFiles.Remove(xferItem.FileName);
|
||||
|
||||
if (Requests.ContainsKey(xferItem.FileName))
|
||||
Requests.Remove(xferItem.FileName);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public void AbortXfer(IClientAPI remoteClient, ulong xferID)
|
||||
{
|
||||
lock (NewFiles)
|
||||
{
|
||||
RemoveXferData(xferID);
|
||||
}
|
||||
}
|
||||
|
||||
#region Nested type: XferDownLoad
|
||||
|
||||
public class XferDownLoad
|
||||
|
|
|
@ -602,6 +602,12 @@ namespace OpenSim.Region.Examples.SimpleModule
|
|||
{
|
||||
}
|
||||
|
||||
public virtual void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
public virtual void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit,
|
||||
int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent, float PriceObjectScaleFactor,
|
||||
int PriceParcelClaim, float PriceParcelClaimFactor, int PriceParcelRent, int PricePublicObjectDecay,
|
||||
|
|
|
@ -1123,6 +1123,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
|
|||
|
||||
}
|
||||
|
||||
public void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit, int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent, float PriceObjectScaleFactor, int PriceParcelClaim, float PriceParcelClaimFactor, int PriceParcelRent, int PricePublicObjectDecay, int PricePublicObjectDelete, int PriceRentLight, int PriceUpload, int TeleportMinPrice, float TeleportPriceExponent)
|
||||
{
|
||||
|
||||
|
|
|
@ -686,6 +686,10 @@ namespace OpenSim.Region.OptionalModules.World.NPC
|
|||
|
||||
public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data)
|
||||
{
|
||||
}
|
||||
public virtual void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public virtual void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit,
|
||||
|
|
|
@ -696,6 +696,11 @@ namespace OpenSim.Tests.Common.Mock
|
|||
{
|
||||
}
|
||||
|
||||
public virtual void SendAbortXferPacket(ulong xferID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public virtual void SendEconomyData(float EnergyEfficiency, int ObjectCapacity, int ObjectCount, int PriceEnergyUnit,
|
||||
int PriceGroupCreate, int PriceObjectClaim, float PriceObjectRent, float PriceObjectScaleFactor,
|
||||
int PriceParcelClaim, float PriceParcelClaimFactor, int PriceParcelRent, int PricePublicObjectDecay,
|
||||
|
|
Loading…
Reference in New Issue