aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/Caps.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/Capabilities/Caps.cs')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/Caps.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs
index a65a3f1..2eff9c2 100644
--- a/OpenSim/Framework/Communications/Capabilities/Caps.cs
+++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs
@@ -100,6 +100,7 @@ namespace OpenSim.Region.Capabilities
100 private int m_eventQueueCount = 1; 100 private int m_eventQueueCount = 1;
101 private Queue<string> m_capsEventQueue = new Queue<string>(); 101 private Queue<string> m_capsEventQueue = new Queue<string>();
102 private bool m_dumpAssetsToFile; 102 private bool m_dumpAssetsToFile;
103 private string m_regionName;
103 104
104 // These are callbacks which will be setup by the scene so that we can update scene data when we 105 // These are callbacks which will be setup by the scene so that we can update scene data when we
105 // receive capability calls 106 // receive capability calls
@@ -110,7 +111,7 @@ namespace OpenSim.Region.Capabilities
110 public GetClientDelegate GetClient = null; 111 public GetClientDelegate GetClient = null;
111 112
112 public Caps(AssetCache assetCache, BaseHttpServer httpServer, string httpListen, uint httpPort, string capsPath, 113 public Caps(AssetCache assetCache, BaseHttpServer httpServer, string httpListen, uint httpPort, string capsPath,
113 LLUUID agent, bool dumpAssetsToFile) 114 LLUUID agent, bool dumpAssetsToFile, string regionName)
114 { 115 {
115 m_assetCache = assetCache; 116 m_assetCache = assetCache;
116 m_capsObjectPath = capsPath; 117 m_capsObjectPath = capsPath;
@@ -120,6 +121,7 @@ namespace OpenSim.Region.Capabilities
120 m_agentID = agent; 121 m_agentID = agent;
121 m_dumpAssetsToFile = dumpAssetsToFile; 122 m_dumpAssetsToFile = dumpAssetsToFile;
122 m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort); 123 m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort);
124 m_regionName = regionName;
123 } 125 }
124 126
125 /// <summary> 127 /// <summary>
@@ -199,6 +201,7 @@ namespace OpenSim.Region.Capabilities
199 /// <returns></returns> 201 /// <returns></returns>
200 public string CapsRequest(string request, string path, string param) 202 public string CapsRequest(string request, string path, string param)
201 { 203 {
204 m_log.Debug("[CAPS]: Seed Caps Request in region: " + m_regionName);
202 //Console.WriteLine("caps request " + request); 205 //Console.WriteLine("caps request " + request);
203 string result = LLSDHelpers.SerialiseLLSDReply(m_capsHandlers.CapsDetails); 206 string result = LLSDHelpers.SerialiseLLSDReply(m_capsHandlers.CapsDetails);
204 //m_log.DebugFormat("[CAPS] CapsRequest {0}", result); 207 //m_log.DebugFormat("[CAPS] CapsRequest {0}", result);
@@ -225,6 +228,7 @@ namespace OpenSim.Region.Capabilities
225 string unmodifiedRequest = request.ToString(); 228 string unmodifiedRequest = request.ToString();
226 229
227 //m_log.DebugFormat("[AGENT INVENTORY]: Received CAPS fetch inventory request {0}", unmodifiedRequest); 230 //m_log.DebugFormat("[AGENT INVENTORY]: Received CAPS fetch inventory request {0}", unmodifiedRequest);
231 m_log.Debug("[CAPS]: Inventory Request in region: " + m_regionName);
228 232
229 Hashtable hash = new Hashtable(); 233 Hashtable hash = new Hashtable();
230 try 234 try
@@ -366,6 +370,7 @@ namespace OpenSim.Region.Capabilities
366 /// <returns></returns> 370 /// <returns></returns>
367 public LLSDMapLayerResponse GetMapLayer(LLSDMapRequest mapReq) 371 public LLSDMapLayerResponse GetMapLayer(LLSDMapRequest mapReq)
368 { 372 {
373 m_log.Debug("[CAPS]: MapLayer Request in region: " + m_regionName);
369 LLSDMapLayerResponse mapResponse = new LLSDMapLayerResponse(); 374 LLSDMapLayerResponse mapResponse = new LLSDMapLayerResponse();
370 mapResponse.LayerData.Array.Add(GetLLSDMapLayerResponse()); 375 mapResponse.LayerData.Array.Add(GetLLSDMapLayerResponse());
371 return mapResponse; 376 return mapResponse;
@@ -472,6 +477,7 @@ namespace OpenSim.Region.Capabilities
472 { 477 {
473 try 478 try
474 { 479 {
480 m_log.Debug("[CAPS]: ScriptTaskInventory Request in region: " + m_regionName);
475 //m_log.DebugFormat("[CAPS]: request: {0}, path: {1}, param: {2}", request, path, param); 481 //m_log.DebugFormat("[CAPS]: request: {0}, path: {1}, param: {2}", request, path, param);
476 482
477 Hashtable hash = (Hashtable) LLSD.LLSDDeserialize(Helpers.StringToField(request)); 483 Hashtable hash = (Hashtable) LLSD.LLSDDeserialize(Helpers.StringToField(request));
@@ -523,6 +529,7 @@ namespace OpenSim.Region.Capabilities
523 /// <returns></returns> 529 /// <returns></returns>
524 public string NoteCardAgentInventory(string request, string path, string param) 530 public string NoteCardAgentInventory(string request, string path, string param)
525 { 531 {
532 m_log.Debug("[CAPS]: NoteCardAgentInventory Request in region: " + m_regionName);
526 //libsecondlife.StructuredData.LLSDMap hash = (libsecondlife.StructuredData.LLSDMap)libsecondlife.StructuredData.LLSDParser.DeserializeBinary(Helpers.StringToField(request)); 533 //libsecondlife.StructuredData.LLSDMap hash = (libsecondlife.StructuredData.LLSDMap)libsecondlife.StructuredData.LLSDParser.DeserializeBinary(Helpers.StringToField(request));
527 Hashtable hash = (Hashtable) LLSD.LLSDDeserialize(Helpers.StringToField(request)); 534 Hashtable hash = (Hashtable) LLSD.LLSDDeserialize(Helpers.StringToField(request));
528 LLSDItemUpdate llsdRequest = new LLSDItemUpdate(); 535 LLSDItemUpdate llsdRequest = new LLSDItemUpdate();