summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodelbackgroundfetch.cpp
AgeCommit message (Collapse)Author
2023-05-29SL-17429 Message user when their inventory hits AIS2 limitsAndrey Kleshchev
2023-05-29SL-19652 Folder fetch dupplicate protection and over limit handlingAndrey Kleshchev
2023-04-28SL-19533 Fix 'fetching' state timeoutAndrey Kleshchev
2023-04-28SL-19533 More children per subset fetch requestAndrey Kleshchev
2023-04-27SL-19533 Removed per-run limitAndrey Kleshchev
Doesn't seem to work like expected and I never get more than 7-9 requests running total
2023-04-27SL-19533 Subset fetch fixesAndrey Kleshchev
2023-04-27SL-19533 Implement subset variant of children requestAndrey Kleshchev
2023-04-25SL-19533 Reduce inventory fetch stallsAndrey Kleshchev
2023-04-25SL-19533 Special COF handling #2Andrey Kleshchev
2023-04-25SL-19533 Special COF handlingAndrey Kleshchev
2023-04-19SL-19533 Check descendants even for a recursive fetchAndrey Kleshchev
2023-04-13SL-19533 Faster decloudingAndrey Kleshchev
2023-04-12SL-19533 Logging tag changeAndrey Kleshchev
2023-04-12SL-19533 Content should be recursive onlyAndrey Kleshchev
2023-04-12SL-19533 Track folder fetch requests in bulk fetchAndrey Kleshchev
2023-04-12SL-19533 Further logging improvementsAndrey Kleshchev
2023-04-11SL-19533 Don't fetch items if recursive fetch isn't doneAndrey Kleshchev
2023-04-11SL-19533 Orphans plus additional loggingAndrey Kleshchev
2023-04-07SL-19534 Better fetch failure handlingAndrey Kleshchev
2023-03-30Merge branch 'main' into DRTVWR-567Maxim Nikolenko
# Conflicts: # indra/newview/llinventoryfunctions.cpp # indra/newview/llpanelmaininventory.h # indra/newview/skins/default/xui/en/floater_inventory_item_properties.xml # indra/newview/skins/default/xui/en/sidepanel_item_info.xml
2023-03-28SL-18003 Improve dupplicate preventionAndrey Kleshchev
Try getting lost and found
2023-03-28SL-18003 Missed pool nameAndrey Kleshchev
2023-03-28SL-18003 Bulk download items when possibleAndrey Kleshchev
And signal fodler fetch completion when folder of recursive fetch is done, do not hold it for individual items
2023-03-28SL-18003 Don't cause excessive full rebuildAndrey Kleshchev
2023-03-27SL-18003 Basic dupplicate preventionAndrey Kleshchev
2023-03-27SL-18003 Faster cof fetchingAndrey Kleshchev
2023-03-26SL-18003 Bulk fetch some items by fetching whole folderAndrey Kleshchev
2023-03-24SL-18003 Make ais fetch fasterAndrey Kleshchev
2023-03-19SL-18629 Rebuild brocken link on fetch compeltion.Andrey Kleshchev
2023-03-18SL-18629 Track request depth to be able to distinguish incomplete folder ↵Andrey Kleshchev
reliably
2023-03-17SL-18629 Fetch Inventory using AIS caps #4Andrey Kleshchev
2023-03-15SL-18629 Fetch Inventory using AIS caps #3Andrey Kleshchev
2023-03-15SL-18629 WIP Fetch Inventory using AIS caps #2Andrey Kleshchev
2023-03-15SL-18629 WIP Fetch Inventory using AIS capsAndrey Kleshchev
2022-12-07SL-18799 Crash at requestPostCapabilityAndrey Kleshchev
2017-04-03MAINT-7274 Placeholder text shouldn't be shownandreykproductengine
2017-03-31MAINT-1911 Fetch perfomance improvementandreykproductengine
2017-03-11MAINT-6789 bulk update can be resource hungry and needs to be monitoredandreykproductengine
2016-04-04merge with 4.0.3-releaseOz Linden
2015-11-10remove execute permission from many files that should not have itOz Linden
2015-10-14MAINT-5732: Change to the way event polling handles error conditions and ↵Rider Linden
cancel calls. Refactor any remaining LLCore::HTTPHandlers to use boost::shared_ptr Started minor refactor in the materials manager into coroutines (unfinished)
2015-04-14remove dead member variablesOz Linden
2015-04-14remove disabled codeOz Linden
2015-04-14MAINT-5090 Remove disabling HTTP Inventory from ViewerMnikolenko ProductEngine
2014-09-22Tuning and documentation. Use a fast poll frequency (0.05S)Monty Brandenberg
on the HTTP requests for inventory. We'll benchmark with that and see how it goes. Document some of the history of the background fetcher for future devs. Suggest some future projects to make things faster. Pointers on using LLSD with the llcorehttp library in the readme. And restructured the LLSD onCompleted() processing phases using do{}while(false) which produced a code flow that is fairly attractive.
2014-09-19Cleanup work. Use http constants for content-type andMonty Brandenberg
accept headers in mesh and textures. For texture metrics reporting, use the AP_INVENTORY policy class which is non-pipelined and pointing (usually) in the right direction. Use a do-while(false) structure to manage common exit path code in onCompleted() methods. Identical to a 'goto' but might amuse the pedantic. Tuning on background fetch to have it cycle faster. This is experimental. I suspect with HTTP balancing in llcorehttp, we can do away with the timers here.
2014-09-09Cleanup pass. Documentation. Get older llcorehttp-usingMonty Brandenberg
code to use utils for any LLSD interfaces.
2014-08-26Bring better error handling to inventory item and folder fetching.Monty Brandenberg
First, introduced some LLSD-based interfaces to the llcorehttp code using utils classes (in llcorehttputil). I've kept LLSD out of the llcorehttp library up to now and will continue to do that. Functions provide a requestPost based on LLSD body and conversion utils for HttpResponse-to-LLSD and HttpResponse-to-string conversions. Inventory fetch operations now do more thorough error checking including 200-with-error status checking. Still do retry forever on folders though I don't like that.
2014-08-22Fix ambiguous constructor due to LLSD access which broke *ix builds.Monty Brandenberg
2014-08-22Add an HTTP policy class for inventory operations using four (4)Monty Brandenberg
connections. Convert background and foreground fetches, both items and folders/inventory and library, to use new HTTP. Non-fetch inventory operations continue to use LLHTTPClient (at least for now). Error handling and retry on fetches wasn't 100% previously and that's still the case. I'll rip through this again to clean that up. Cleaned up logging in much of the inventory code with consistent labels on logging events and correct macros (removed deprecation warnings). This started as an attempt to get libcurl to do pipelining on POSTs and PUTs. Discovered that this is going to be very difficult to support in general in libcurl. May look at that again in the future.