aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2009-07-231-6/+6
|
* Thank you, patnad, for a patch to advance the UrlModule's functionality.Melanie Thielker2009-07-221-6/+9
| | | | | | Mantis #3712
* Committing the interface change and the addition to the modules to getMelanie Thielker2009-07-101-0/+5
| | | | | | the ball rolling on replacable modules. No user functionality yet
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* * minor: remove one mono warningJustin Clarke Casey2009-06-121-1/+1
|
* Formatting cleanup. Ignore some generated files.Jeff Ames2009-06-091-2/+2
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-06-091-30/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change addresses two issues: [1] It adds a flag field to the blendface call which allows the caller to indicate whether or not the generated asset is temporary, and whether or not the asset being replaced should be explicitly retired fromt the memory cache. The decimal values correspond to: 0 - Permanent asset, do not expire old asset 1 - Permanent asset, expire old asset 2 - Temporary asset, do not expire old asset 3 - Temporary asset, expire old asset '3' corresponds to the default behavior seen today, and is the continued behavior of the non-blendface calls. [2] The dynamic texture routines are highly-asynchronous and can be scheduled simultaneously on a multi-core machine. The nature of the texture management interfaece is such that updates may be lost, and the nature of asynchornous operation means that they may be processed out of order. A lock has been added to ensure that updates are at least atomic. No attempt has been made to enforce ordering. The lock applies to the SceneObjectPart being updated and is held for the lifetime of the TextureEntry used to carry texture updates (the one instance carries all faces supported by the prim). Users of these services should remember that the dynamic texture call is asynchronous and control will be returned *before* the texture update has actually occurred. As a result, a isubsequent GetTexture call may not return the expected asset id. A script must wait for the corresponding TEXTURE_CHANGED event before retrieving any texture information.
* Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames2009-06-041-1/+1
|
* From: Chris Yeoh <yeohc@au1.ibm.com>Dr Scofield2009-06-031-7/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fixes wild swings in memory usage related to usage of GetDrawStringSize() We've been seeing wild swings in memory usage and a large chunk of memory leak. From analysing this it's pretty clear that the mono garbage collector is rather buggy! When exercised heavily it looks like it frees more than its meant to resulting in crashes. GetDrawStringSize() measures the size in pixels of text. To do this memory for an image is allocated and used to call the GDI text measure functions. Although no reference to the temporary memory for the measuring is kept, it takes quite a while for the mono garbage collector to clean up - so if lots calls to GetDrawStringSize() are made at once there can be a spike in memory usage. If the garbage collector is not fast enough then the GDI layer runs out of memory. It also looks like the garbage collector is not always reclaiming all of the memory. I've attached an OpenSim patch which works around the garbage collector issues. Instead of dynamically allocating memory for measuring text sizes, it serialises (on a per region basis) access to a single block of memory. The effect of this is to be nicer to the garbage collector as it has a lot less work to do, at the cost of some theoretical loss in performance (nothing noticeable with our tests which hit it pretty hard). OpenSim still does leak memory slowly, but it is a lot more stable with this patch. I suspect that either the garbage collector misses bits of freed memory or the GDI/cairo layer leaks a bit each time a texture is created. Thats going to be a lot harder to hunt down, but for reference if someone has OpenSim running on Windows it would be interesting to see if it has the same problem as it would tell us if its a mono/GDI problem or an OpenSim problem.
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-06-031-2/+5
| | | | | | | | | | | Modify dynamic texture handling so that an explicitly targetted face is not scheduled for immediate expiration. The requirement for precaching explicitly requires these assets to persist. They do however remain temporary. This approach leaves the legacy mode of operation (ALL_SIDES) unchanged in this respect.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-018-8/+8
| | | | LICENSE.txt.
* Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames2009-05-311-43/+43
|
* Revert a change I made to get a better URL because it failes under monoMelanie Thielker2009-05-261-1/+1
|
* Couple of tweaks to the URL module: handle script reset gracefully andMelanie Thielker2009-05-261-1/+10
| | | | | | stop crashing http server threads.
* * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2009-05-231-1/+2
| | | | | | | | | | needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-222-50/+105
| | | | | | | | | | Changes to support client-side image pre-caching in the region. This commit adds an additional calling sequence to the DynamicTexture data and URL calls. The new interface allows a dynamic image to be loaded into a specific object face (rather than the mandatory ALL_SIDES supported today. This is in part fulfilment of ticket #458.
* cleaning out warnings.Dr Scofield2009-05-221-1/+1
| | | | | | NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-201-4/+4
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-191-0/+1
| | | | | | | | | The image render module is returning everything twice. Once with data, once with null. This change adds a return to stop this behavior. This was not apparent until I added a message to the catching routine which issued a warning message when no data was returned.
* Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2009-05-151-3/+2
| | | | | | | | | | | | -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
* Fix up some URL detailsMelanie Thielker2009-05-131-6/+3
|
* Add the port to the generated URL. For some reson this still doesn't want toMelanie Thielker2009-05-131-1/+1
| | | | | | receive requests.
* Make the LSL HTTP server create and give out URLs to scriptsMelanie Thielker2009-05-131-1/+14
|
* Add most of the meat to the LSL HTTP serverMelanie Thielker2009-05-131-11/+123
|
* Plumb request and return URL functions.Melanie Thielker2009-05-131-2/+9
| | | | | | Implements llRequestURL, llRequestSecureURL, llReleaseURL
* Add a skeleton for the LSLHttpServerMelanie Thielker2009-05-131-0/+116
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-05-071-4/+15
| | | | | logs error message on empty data in DynamicTextureModule
* Thank you kindly, Fly-Man- for a patch that:Charles Krinke2009-05-061-5/+17
| | | | | | | | | Adding more SL likeness for Email module in CORE. I've added some SL likeness to the Email module so that it looks more like emails going out in the same standard as SL uses
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-042-0/+2
|
* Thank you kindly, Thomax, for a patch that:Charles Krinke2009-05-031-1/+2
| | | | | | | | Does not set prims to fullbright when an ossl dynamic texture function is called.
* Thank you kindly, Fly-Man, for a patch that:Charles Krinke2009-05-021-1/+1
| | | | | | * Added the hostname so the email gets the right hostname when going outbound
* Thank you kindly, StrawberryFride, for a patch that:Charles Krinke2009-04-181-5/+10
| | | | | | | | Adds a test to see if the first option on osDynamicTextureData is "AltDelim", then picks up the first character after the whitespace and uses as a delimiter instead of ;. If this string does not appear at the start of the data, the default ; will be used, hence this should not break existing code.
* Expose the XMLRPC listener port on the IXMLRPC interface to allowMelanie Thielker2009-04-101-0/+5
| | | | | | publication
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-03-311-34/+30
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-03-241-7/+37
| | | | | | | Changes to AssetCache and DynamicTextureModule to eliminate opportunities for lost texture updates.
* Update svn properties, minor formatting cleanup.Jeff Ames2009-03-121-8/+8
|
* * Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey2009-03-111-2/+2
| | | | | | | * In most cases, the setting in OpenSim.ini.example is taken as the canonical one since this is the file virtually everyone ends up using * OpenSim will start up with a blank OpenSim.ini, in which case sqlite is the default database (as before)
* From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield2009-03-111-6/+9
| | | | | | | This fixes *another* sync error in a list/dictionary iterator. This time in WorldComm. I'm beginning to think something is going on...
* Added the ability to set User-Agent in llHTTPRequest. No new default value ↵idb2009-03-071-1/+4
| | | | | | | has been set since having no User-Agent seems to work well but the facility is now available to set this if required. Using something based on the pattern of SLs User-Agent may well cause problems, not all web servers respond well to it. See the notes in the SL Wiki http://wiki.secondlife.com/wiki/LlHTTPRequest Fixes Mantis #3143
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-224-8/+18
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-221-21/+21
|
* Applied patch from mantis #3217, which allows Dynamic Images of type RGB (so ↵MW2009-02-211-7/+23
| | | | with no alpha value). Thanks BlueWall.
* Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2009-02-201-49/+43
|
* Mantis#3188. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-02-191-3/+49
| | | | | Adding the ability to set the background color for osSetDynamicTextureData in the extra data: bgcolour:value (see http://msdn.microsoft.com/en-us/library/aa358802.aspx [^] for color names)
* From: Christopher Yeoh <yeohc@au1.ibm.com>Sean Dague2009-02-183-0/+33
| | | | | | | | | | | | | | The attached patch implements osGetDrawStringSize that looks like: vector osGetDrawStringSize(string contentType, string text, string fontName, int fontSize) in LSL. It is meant to be used in conjunction with the osDraw* functions. It returns accurate information on the size that a given string will be rendered given the specified font and font size. This allows for nicely formatted and positioned text on the generated image.
* * Apply http://opensimulator.org/mantis/view.php?id=3178Justin Clarke Casey2009-02-171-5/+6
| | | | | | | | * Moves llEmail() delay to after e-mail send rather than before, in line with SL * Thanks DoranZemlja * Last build failure looks like a glitch, but one that has already happened twice recently which I need to look at
* * Apply http://opensimulator.org/mantis/view.php?id=3179Justin Clarke Casey2009-02-171-15/+15
| | | | | | | | * This slightly extends a lock in WorldCommModule so that it covers the GetNewHandle method which states in it's doc that it assumes locking has happened before the method is called * Thanks DoranZemlja
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-172-11/+9
| | | | | | | | | properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
* * refactor: remove AssetCache field hanging off SceneJustin Clarke Casey2009-02-161-3/+3
| | | | | | * This is always available at Scene.CommsManager.AssetCache
* Thank you, Vytek, for a patch that streamlines the delay in the emailMelanie Thielker2009-02-151-11/+16
| | | | | | | module and changes SMTP authentication (applied with changes) Fixes Mantis #3168