aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-10adding lastlogin information to admin_exists_user: will be 0 if theDr Scofield1-0/+9
user does not exist or hasn't logged in yet.
2009-06-10Formatting cleanup.Jeff Ames61-121/+120
2009-06-09Letting the Flotsam cache be enabled even when [AssetCache] section is ↵diva1-8/+9
missing. Thank you mcortez!
2009-06-09Formatting cleanup. Ignore some generated files.Jeff Ames11-263/+264
2009-06-09Update svn properties.Jeff Ames4-1538/+1538
2009-06-09ARGH!!!! note to self: ALWAYS use String.IsNullOrEmpty(...)!Dr Scofield1-1/+2
this patch fixes RemoteAdminPlugin gratuitously updating the user password even if no update was intended.
2009-06-09Thank you Snoopy, for a patch that implements group permissions.Melanie Thielker2-140/+264
Applied with changes: - removed spammy debug message - corrected tab formatting
2009-06-09From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield5-42/+59
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.
2009-06-08Updating the flotsam asset cache. Thank you, mcortez!Melanie Thielker1-438/+523
Fixes Mantis #3784
2009-06-08Bug fix. Adding the asset to the cache after a DB get.diva1-1/+5
2009-06-08That didn't quite work. Trying this instead -- prompt given in the cmd line.diva2-6/+10
2009-06-08Making the prompt configurable in the server shell. Default is "Server".diva1-2/+4
2009-06-08IInentoryDataPlugins were missing.diva1-2/+7
2009-06-08First draft of the inventory service IN connector. Probably won't work yet. ↵diva1-0/+276
But everything of inventory service is now checked in, first draft.
2009-06-08Added more functions to IInventoryService. Unsure about whether all of these ↵diva5-6/+185
are really necessary.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva10-470/+2712
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.
2009-06-07Skip lone ident statments or for-loop assignmentsMike Mazur2-3/+65
SL's LSL supports lone idents: integer x; x; as well as lone idents in for-loop assignments: for (x; x < 10; x++) { ... } while those are errors in C# (MONO at least). This patch skips lone idents in such places. Fixes Mantis #3042.
2009-06-07Allow empty assignment in for-loopMike Mazur5-7513/+7733
For loops with no assignment are no longer syntax errors. For example, this is now valid: for ( ; i < 10; i++) { ... } Corresponding changes to lsl.{lexer,parser} in r99 in opensim-libs. Fixes Mantis #2501. Fixes Mantis #2884.
2009-06-07* Reverting the test restructuring as, on second thought, this is not at all ↵lbsa715-0/+0
how the tests are structured. (pt1)
2009-06-07Rename private TestllAngleBetween methodMike Mazur1-13/+13
It seems overloading the method TestllAngleBetween confused nunit a bit and caused it to try running the private TestllAngleBetween method. The method's access modified prevented that from happening, and nunit complained.
2009-06-06Correct an error where the config file name was always considered to be aMelanie Thielker5-7/+18
local file. This caused llHttpRequest and llSetInventoryPermsMask to fail on regions that load their config from a web server
2009-06-06some code cleanupDahlia Trimble1-3/+0
test commit with cygwin svn
2009-06-05* minor: tiny tweak just to trigger another panda buildJustin Clarke Casey1-1/+1
2009-06-05* A bug fix for the last mantis 3741 bugfixJustin Clarke Casey1-10/+7
* Hopefully now, the nre should not occur and the lock should be correctly unlocked during the initial save oar process
2009-06-05* A further fix for mantis 3641 (oar saves do not complete)Justin Clarke Casey1-12/+15
* For some reason, if a null was recieved (indicating a missing asset), the code had stopped passing that on to the waiting lock, resulting in a perpetual freeze * This change passes the null on correctly * Many thanks to thomax for being insistent in presenting his analysis of the problem :)
2009-06-05* refactor: split out part xml writing in SceneObjectSerializerJustin Clarke Casey1-2/+7
2009-06-05* Fix unit tests so that they correctly handle 404 missing asset responseJustin Clarke Casey3-9/+14
* I didn't think there were tests in this area - my bad
2009-06-05* Fix problem where known missing assets would stop save oar ever completingJustin Clarke Casey3-14/+58
* Issue was that region server was silently dropping an XmlException caused by trying to deserialize the blank asset service response * So make asset service return http status NOT FOUND rather than OK in accordance with REST * and interpret this correctly in the async response so that a null object is sent back * This means that this fix won't be active until both region simulator and server reach this revision
2009-06-05* Add oar saving timeoutJustin Clarke Casey5-4/+138
* If an oar save fails to get responses to all asset requests to the asset service then timeout after 60 seconds * Timeout executes abort, since missing assets in an OAR seems bad * This means that oar saves won't permanently hang and instead can be retried if something goes wrong with the asset service * This is not a solution to mantis 3714. Hopefully a fix will be along shortly since I can now consistently reproduce that problem
2009-06-05Thank you, thomax, for a patch to provide finer-grained access control toMelanie Thielker6-4/+102
scripting. Fixes Mantis #2862
2009-06-05* Restructured Scenes Tests to follow (what I conceive of as being) current ↵lbsa715-0/+0
directory standards. (pt 1 - thank you, svn. not.)
2009-06-05Committing mcortez's FlotsamAssetCache after several positive reviews.Melanie Thielker1-0/+438
Thank you, mcortez!
2009-06-04Changed a comment to reflect changes in config.diva1-1/+1
2009-06-04Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames8-40/+31
2009-06-04Comment out unused private functions to avoid compiler warnings.Jeff Ames3-70/+70
2009-06-04Fix comparison of UUID with null.Jeff Ames1-1/+1
2009-06-04Add copyright headers.Jeff Ames12-26/+322
2009-06-04Update svn properties.Jeff Ames5-3519/+3519
2009-06-03Committing the skeleton of the authentication serviceMelanie Thielker1-0/+74
2009-06-03Make AssetMetadata [Serializable] to help in binary cachingMelanie Thielker1-0/+1
2009-06-03Committing the partial refactor of authentication services. No user functionlityMelanie Thielker3-5/+85
will eat your babies, etc
2009-06-03* Making sure we fail a bit earlier if we have no AssetServicelbsa711-0/+7
2009-06-03From: Chris Yeoh <yeohc@au1.ibm.com>Dr Scofield8-2/+168
This patch adds oar file date and time (UTC) meta data to an oar file when it is created. It also adds a unique ID, though this id does not in anyway identify the machine that the oar file was created on. When an oar file with this meta data is loaded this extra information is saved with the region settings and available via LSL through: - osLoadedCreationDate() - osLoadedCreationTime() - osLoadedCreationID() If there is no meta data these fields will be blank. Subsequent oar file loads will erase the information for the previous oar file load. Persistence has only been implemented for MySQL, the other backends need updating. Overall this allows us to much more easily identify the specific version of software that clients are using. Its very straightforward to edit the oar file to change the ID string to be something more human friendly. Included in the patch is a new file OpenSim/Data/MySQL/Resources/030_RegionStore.sql required for the MySQL DB migration. btw I had a chat with justincc about this a few weeks ago since he wrote the oar file import/export and he sounded happy to accept something that included date/time information but didn't want anything that would silently leak private information like machine names.
2009-06-03From: Chris Yeoh <yeohc@au1.ibm.com>Dr Scofield1-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.
2009-06-03From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-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.
2009-06-03Thank you Imaze Rhiano for a patch that implements Cenome Memory Asset Cache ↵Dahlia Trimble6-0/+3520
(Mantis #3759) See the files: bin/config-include/GridCommon.ini.example and bin/config-include/StandaloneCommon.ini.example to configure and enable this caching method.
2009-06-03Thanks aduffy70 for Mantis #3762: A patch to fix llGround, llGroundNormal, ↵Dahlia Trimble1-42/+80
and llGroundSlope
2009-06-03revert r9765 due to too many errors on some compilers. Affects Mantis #3759Dahlia Trimble6-3519/+0
2009-06-03add body to an empty getter/setterDahlia Trimble1-1/+8
2009-06-03fix a int[] declarationDahlia Trimble1-1/+1