summaryrefslogtreecommitdiff
path: root/indra/newview/llfolderviewmodelinventory.cpp
blob: 734f20830d6b5614f502c3a819ae1b73264b091d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*
 * @file llfolderviewmodelinventory.cpp
 * @brief Implementation of the inventory-specific view model
 *
 * $LicenseInfo:firstyear=2001&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#include "llviewerprecompiledheaders.h"
#include "llfolderviewmodelinventory.h"
#include "llinventorymodelbackgroundfetch.h"
#include "llinventoryfunctions.h"
#include "llinventorypanel.h"
#include "lltooldraganddrop.h"
#include "llfavoritesbar.h"

//
// class LLFolderViewModelInventory
//
static LLTrace::BlockTimerStatHandle FTM_INVENTORY_SORT("Inventory Sort");

bool LLFolderViewModelInventory::startDrag(std::vector<LLFolderViewModelItem*>& items)
{
    std::vector<EDragAndDropType> types;
    uuid_vec_t cargo_ids;
    std::vector<LLFolderViewModelItem*>::iterator item_it;
    bool can_drag = true;
    if (!items.empty())
    {
        for (item_it = items.begin(); item_it != items.end(); ++item_it)
        {
            EDragAndDropType type = DAD_NONE;
            LLUUID id = LLUUID::null;
            can_drag = can_drag && static_cast<LLFolderViewModelItemInventory*>(*item_it)->startDrag(&type, &id);

            types.push_back(type);
            cargo_ids.push_back(id);
        }

        LLToolDragAndDrop::getInstance()->beginMultiDrag(types, cargo_ids,
            static_cast<LLFolderViewModelItemInventory*>(items.front())->getDragSource(), mTaskID);
    }
    return can_drag;
}


void LLFolderViewModelInventory::sort( LLFolderViewFolder* folder )
{
    LL_RECORD_BLOCK_TIME(FTM_INVENTORY_SORT);

    if (!folder->areChildrenInited() || !needsSort(folder->getViewModelItem())) return;

    LLFolderViewModelItemInventory* modelp =   static_cast<LLFolderViewModelItemInventory*>(folder->getViewModelItem());
    if (modelp->getUUID().isNull()) return;

    for (std::list<LLFolderViewFolder*>::iterator it =   folder->getFoldersBegin(), end_it = folder->getFoldersEnd();
        it != end_it;
        ++it)
    {
        // Recursive call to sort() on child (CHUI-849)
        LLFolderViewFolder* child_folderp = *it;
        sort(child_folderp);

        if (child_folderp->getFoldersCount() > 0)
        {
            time_t most_recent_folder_time =
                static_cast<LLFolderViewModelItemInventory*>((*child_folderp->getFoldersBegin())->getViewModelItem())->getCreationDate();
            LLFolderViewModelItemInventory* modelp =   static_cast<LLFolderViewModelItemInventory*>(child_folderp->getViewModelItem());
            if (most_recent_folder_time > modelp->getCreationDate())
            {
                modelp->setCreationDate(most_recent_folder_time);
            }
        }
        if (child_folderp->getItemsCount() > 0)
        {
            time_t most_recent_item_time =
                static_cast<LLFolderViewModelItemInventory*>((*child_folderp->getItemsBegin())->getViewModelItem())->getCreationDate();

            LLFolderViewModelItemInventory* modelp =   static_cast<LLFolderViewModelItemInventory*>(child_folderp->getViewModelItem());
            if (most_recent_item_time > modelp->getCreationDate())
            {
                modelp->setCreationDate(most_recent_item_time);
            }
        }
    }
    base_t::sort(folder);
}

bool LLFolderViewModelInventory::contentsReady()
{
    return !LLInventoryModelBackgroundFetch::instance().folderFetchActive();
}

bool LLFolderViewModelInventory::isFolderComplete(LLFolderViewFolder* folder)
{
    LLFolderViewModelItemInventory* modelp = static_cast<LLFolderViewModelItemInventory*>(folder->getViewModelItem());
    LLUUID cat_id = modelp->getUUID();
    if (cat_id.isNull())
    {
        return false;
    }
    LLViewerInventoryCategory* cat = gInventory.getCategory(cat_id);
    if (cat)
    {
        // don't need to check version - descendents_server == -1 if we have no data
        S32 descendents_server = cat->getDescendentCount();
        S32 descendents_actual = cat->getViewerDescendentCount();
        if (descendents_server == descendents_actual
            || (descendents_actual > 0 && descendents_server == -1)) // content was loaded in previous session
        {
            return true;
        }
    }
    return false;
}

//virtual
void LLFolderViewModelItemInventory::addChild(LLFolderViewModelItem* child)
{
    LLFolderViewModelItemInventory* model_child = static_cast<LLFolderViewModelItemInventory*>(child);
    mLastAddedChildCreationDate = model_child->getCreationDate();

    // this will requestSort()
    LLFolderViewModelItemCommon::addChild(child);
}

void LLFolderViewModelItemInventory::requestSort()
{
    LLFolderViewModelItemCommon::requestSort();
    LLFolderViewFolder* folderp = dynamic_cast<LLFolderViewFolder*>(mFolderViewItem);
    if (folderp)
    {
        folderp->requestArrange();
    }
    LLInventorySort sorter = static_cast<LLFolderViewModelInventory&>(mRootViewModel).getSorter();

    // Sort by date potentially affects parent folders which use a date
    // derived from newest item in them
    if (sorter.isByDate() && mParent)
    {
        // If this is an item, parent needs to be resorted
        // This case shouldn't happen, unless someone calls item->requestSort()
        if (!folderp)
        {
            mParent->requestSort();
        }
        // if this is a folder, check sort rules for folder first
        else if (sorter.isFoldersByDate())
        {
            if (mLastAddedChildCreationDate == -1  // nothing was added, some other reason for resort
                || mLastAddedChildCreationDate > getCreationDate()) // newer child
            {
                LLFolderViewModelItemInventory* model_parent = static_cast<LLFolderViewModelItemInventory*>(mParent);
                model_parent->mLastAddedChildCreationDate = mLastAddedChildCreationDate;
                mParent->requestSort();
            }
        }
    }
    mLastAddedChildCreationDate = -1;
}

void LLFolderViewModelItemInventory::setPassedFilter(bool passed, S32 filter_generation, std::string::size_type string_offset, std::string::size_type string_size)
{
    bool generation_skip = mMarkedDirtyGeneration >= 0
        && mPrevPassedAllFilters
        && mMarkedDirtyGeneration < mRootViewModel.getFilter().getFirstSuccessGeneration();
    S32 last_generation = mLastFilterGeneration;
    LLFolderViewModelItemCommon::setPassedFilter(passed, filter_generation, string_offset, string_size);
    bool before = mPrevPassedAllFilters;
    mPrevPassedAllFilters = passedFilter(filter_generation);

    if (before != mPrevPassedAllFilters // Change of state
        || generation_skip // Was marked dirty
        // Potential change from being in-progress and invisible to visible)
        || (mPrevPassedAllFilters && last_generation < mRootViewModel.getFilter().getFirstRequiredGeneration()))
    {
        // Need to rearrange the folder if the filtered state of the item changed,
        // previously passed item skipped filter generation changes while being dirty
        // or previously passed not yet filtered item was marked dirty
        LLFolderViewFolder* parent_folder = mFolderViewItem->getParentFolder();
        if (parent_folder)
        {
            parent_folder->requestArrange();
        }
    }
}




bool LLFolderViewModelItemInventory::filterChildItem( LLFolderViewModelItem* item, LLFolderViewFilter& filter )
{
    S32 filter_generation = filter.getCurrentGeneration();

    bool continue_filtering = true;
    if (item)
    {
        if (item->getLastFilterGeneration() < filter_generation)
        {
            // Recursive application of the filter for child items (CHUI-849)
            continue_filtering = item->filter(filter);
        }

        // Update latest generation to pass filter in parent and propagate up to root
        if (item->passedFilter())
        {
            LLFolderViewModelItemInventory* view_model = this;

            while (view_model && view_model->mMostFilteredDescendantGeneration < filter_generation)
            {
                view_model->mMostFilteredDescendantGeneration = filter_generation;
                view_model = static_cast<LLFolderViewModelItemInventory*>(view_model->mParent);
            }
        }
    }
    return continue_filtering;
}

bool LLFolderViewModelItemInventory::filter( LLFolderViewFilter& filter)
{
    const S32 filter_generation = filter.getCurrentGeneration();
    const S32 must_pass_generation = filter.getFirstRequiredGeneration();

    if (getLastFilterGeneration() >= must_pass_generation
        && getLastFolderFilterGeneration() >= must_pass_generation
        && !passedFilter(must_pass_generation))
    {
        // failed to pass an earlier filter that was a subset of the current one
        // go ahead and flag this item as not pass
        setPassedFilter(false, filter_generation);
        setPassedFolderFilter(false, filter_generation);
        return true;
    }

    // *TODO : Revise the logic for fast pass on less restrictive filter case
    /*
     const S32 sufficient_pass_generation = filter.getFirstSuccessGeneration();
    if (getLastFilterGeneration() >= sufficient_pass_generation
        && getLastFolderFilterGeneration() >= sufficient_pass_generation
        && passedFilter(sufficient_pass_generation))
    {
        // passed an earlier filter that was a superset of the current one
        // go ahead and flag this item as pass
        setPassedFilter(true, filter_generation);
        setPassedFolderFilter(true, filter_generation);
        return true;
    }
     */

    bool is_folder = (getInventoryType() == LLInventoryType::IT_CATEGORY);
    const bool passed_filter_folder = is_folder ? filter.checkFolder(this) : true;
    setPassedFolderFilter(passed_filter_folder, filter_generation);

    bool continue_filtering = true;

    if (!mChildren.empty()
        && (getLastFilterGeneration() < must_pass_generation // haven't checked descendants against minimum required generation to pass
            || descendantsPassedFilter(must_pass_generation))) // or at least one descendant has passed the minimum requirement
    {
        // now query children
        for (child_list_t::iterator iter = mChildren.begin(), end_iter = mChildren.end(); iter != end_iter; ++iter)
        {
            continue_filtering = filterChildItem((*iter), filter);
            if (!continue_filtering)
            {
                break;
            }
        }
    }

    // If we didn't use all the filter time that means we filtered all of our descendants so we can filter ourselves now
    if (continue_filtering)
    {
        // This is where filter check on the item done (CHUI-849)
        const bool passed_filter = filter.check(this);
        if (passed_filter && mChildren.empty() && is_folder) // Update the latest filter generation for empty folders
        {
            LLFolderViewModelItemInventory* view_model = this;
            while (view_model && view_model->mMostFilteredDescendantGeneration < filter_generation)
            {
                view_model->mMostFilteredDescendantGeneration = filter_generation;
                view_model = static_cast<LLFolderViewModelItemInventory*>(view_model->mParent);
            }
        }
        setPassedFilter(passed_filter, filter_generation, filter.getStringMatchOffset(this), filter.getFilterStringSize());
        continue_filtering = !filter.isTimedOut();
    }
    return continue_filtering;
}

//LLFolderViewModelInventory* LLInventoryPanel::getFolderViewModel()
//{
//  return &mInventoryViewModel;
//}
//
//
//const LLFolderViewModelInventory* LLInventoryPanel::getFolderViewModel() const
//{
//  return &mInventoryViewModel;
//}

bool LLInventorySort::operator()(const LLFolderViewModelItemInventory* const& a, const LLFolderViewModelItemInventory* const& b) const
{
    // Ignore sort order for landmarks in the Favorites folder.
    // In that folder, landmarks should be always sorted as in the Favorites bar. See EXT-719
    if (a->getSortGroup() == SG_ITEM
        && b->getSortGroup() == SG_ITEM
        && a->getInventoryType() == LLInventoryType::IT_LANDMARK
        && b->getInventoryType() == LLInventoryType::IT_LANDMARK)
    {
        static const LLUUID& favorites_folder_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_FAVORITE);
        // If both landmarks are in the Favorites folder...
        if (gInventory.isObjectDescendentOf(a->getUUID(), favorites_folder_id) && gInventory.isObjectDescendentOf(b->getUUID(), favorites_folder_id))
        {
            // Get their index in that folder
            S32 a_sort = LLFavoritesOrderStorage::instance().getSortIndex(a->getUUID());
            S32 b_sort = LLFavoritesOrderStorage::instance().getSortIndex(b->getUUID());
            // Note: this test is a bit overkill: since they are both in the Favorites folder, we shouldn't get negative index values...
            if (!((a_sort < 0) && (b_sort < 0)))
            {
                return a_sort < b_sort;
            }
        }
    }

    // We sort by name if we aren't sorting by date
    // OR if these are folders and we are sorting folders by name.
    bool by_name = ((!mByDate || (mFoldersByName && (a->getSortGroup() != SG_ITEM))) && !mFoldersByWeight);

    if (a->getSortGroup() != b->getSortGroup())
    {
        if (mSystemToTop)
        {
            // Group order is System Folders, Trash, Normal Folders, Items
            return (a->getSortGroup() < b->getSortGroup());
        }
        else if (mByDate)
        {
            // Trash needs to go to the bottom if we are sorting by date
            if ( (a->getSortGroup() == SG_TRASH_FOLDER)
                || (b->getSortGroup() == SG_TRASH_FOLDER))
            {
                return (b->getSortGroup() == SG_TRASH_FOLDER);
            }
        }
    }

    if (by_name)
    {
        S32 compare = LLStringUtil::compareDict(a->getDisplayName(), b->getDisplayName());
        if (0 == compare)
        {
            return (a->getCreationDate() > b->getCreationDate());
        }
        else
        {
            return (compare < 0);
        }
    }
    else if (mFoldersByWeight)
    {
        S32 weight_a = compute_stock_count(a->getUUID());
        S32 weight_b = compute_stock_count(b->getUUID());
        if (weight_a == weight_b)
        {
            // Equal weight -> use alphabetical order
            return (LLStringUtil::compareDict(a->getDisplayName(), b->getDisplayName()) < 0);
        }
        else if (weight_a == COMPUTE_STOCK_INFINITE)
        {
            // No stock -> move a at the end of the list
            return false;
        }
        else if (weight_b == COMPUTE_STOCK_INFINITE)
        {
            // No stock -> move b at the end of the list
            return true;
        }
        else
        {
            // Lighter is first (sorted in increasing order of weight)
            return (weight_a < weight_b);
        }
    }
    else
    {
        time_t first_create = a->getCreationDate();
        time_t second_create = b->getCreationDate();
        if (first_create == second_create)
        {
            return (LLStringUtil::compareDict(a->getDisplayName(), b->getDisplayName()) < 0);
        }
        else
        {
            return (first_create > second_create);
        }
    }
}

LLFolderViewModelItemInventory::LLFolderViewModelItemInventory( class LLFolderViewModelInventory& root_view_model ) :
    LLFolderViewModelItemCommon(root_view_model),
    mPrevPassedAllFilters(false),
    mLastAddedChildCreationDate(-1)
{
}