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
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/app_list/app_list_item_list.h"
#include "ui/app_list/app_list_item.h"
namespace app_list {
AppListItemList::AppListItemList() {
}
AppListItemList::~AppListItemList() {
}
void AppListItemList::AddObserver(AppListItemListObserver* observer) {
observers_.AddObserver(observer);
}
void AppListItemList::RemoveObserver(AppListItemListObserver* observer) {
DCHECK(observers_.HasObserver(observer));
observers_.RemoveObserver(observer);
}
AppListItem* AppListItemList::FindItem(const std::string& id) {
for (size_t i = 0; i < app_list_items_.size(); ++i) {
AppListItem* item = app_list_items_[i];
if (item->id() == id)
return item;
}
return NULL;
}
bool AppListItemList::FindItemIndex(const std::string& id, size_t* index) {
for (size_t i = 0; i < app_list_items_.size(); ++i) {
AppListItem* item = app_list_items_[i];
if (item->id() == id) {
*index = i;
return true;
}
}
return false;
}
void AppListItemList::MoveItem(size_t from_index, size_t to_index) {
DCHECK_LT(from_index, item_count());
DCHECK_LT(to_index, item_count());
if (from_index == to_index)
return;
AppListItem* target_item = app_list_items_[from_index];
DVLOG(2) << "MoveItem: " << from_index << " -> " << to_index << " ["
<< target_item->position().ToDebugString() << "]";
// Remove the target item
app_list_items_.weak_erase(app_list_items_.begin() + from_index);
// Update the position
AppListItem* prev = to_index > 0 ? app_list_items_[to_index - 1] : NULL;
AppListItem* next =
to_index < item_count() ? app_list_items_[to_index] : NULL;
CHECK_NE(prev, next);
syncer::StringOrdinal new_position;
if (!prev) {
new_position = next->position().CreateBefore();
} else if (!next) {
new_position = prev->position().CreateAfter();
} else {
// It is possible that items were added with the same ordinal. To
// successfully move the item we need to fix this. We do not try to fix this
// when an item is added in order to avoid possible edge cases with sync.
if (prev->position().Equals(next->position()))
FixItemPosition(to_index);
new_position = prev->position().CreateBetween(next->position());
}
target_item->set_position(new_position);
DVLOG(2) << "Move: "
<< " Prev: " << (prev ? prev->position().ToDebugString() : "(none)")
<< " Next: " << (next ? next->position().ToDebugString() : "(none)")
<< " -> " << new_position.ToDebugString();
// Insert the item and notify observers.
app_list_items_.insert(app_list_items_.begin() + to_index, target_item);
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnListItemMoved(from_index, to_index, target_item));
}
void AppListItemList::SetItemPosition(AppListItem* item,
syncer::StringOrdinal new_position) {
DCHECK(item);
size_t from_index;
if (!FindItemIndex(item->id(), &from_index)) {
LOG(ERROR) << "SetItemPosition: Not in list: " << item->id().substr(0, 8);
return;
}
DCHECK(app_list_items_[from_index] == item);
if (!new_position.IsValid()) {
size_t last_index = app_list_items_.size() - 1;
if (from_index == last_index)
return; // Already last item, do nothing.
new_position = app_list_items_[last_index]->position().CreateAfter();
}
// First check if the order would remain the same, in which case just update
// the position.
size_t to_index = GetItemSortOrderIndex(new_position, item->id());
if (to_index == from_index) {
DVLOG(2) << "SetItemPosition: No change: " << item->id().substr(0, 8);
item->set_position(new_position);
return;
}
// Remove the item and get the updated to index.
app_list_items_.weak_erase(app_list_items_.begin() + from_index);
to_index = GetItemSortOrderIndex(new_position, item->id());
DVLOG(2) << "SetItemPosition: " << item->id().substr(0, 8) << " -> "
<< new_position.ToDebugString() << " From: " << from_index
<< " To: " << to_index;
item->set_position(new_position);
app_list_items_.insert(app_list_items_.begin() + to_index, item);
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnListItemMoved(from_index, to_index, item));
}
void AppListItemList::HighlightItemInstalledFromUI(const std::string& id) {
// Items within folders are not highlighted (apps are never installed to a
// folder initially). So just search the top-level list.
size_t index;
if (FindItemIndex(highlighted_id_, &index)) {
item_at(index)->set_highlighted(false);
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnAppListItemHighlight(index, false));
}
highlighted_id_ = id;
if (!FindItemIndex(highlighted_id_, &index)) {
// If the item isin't in the app list yet, it will be highlighted later, in
// AddItem().
return;
}
item_at(index)->set_highlighted(true);
FOR_EACH_OBSERVER(
AppListItemListObserver, observers_, OnAppListItemHighlight(index, true));
}
// AppListItemList private
syncer::StringOrdinal AppListItemList::CreatePositionBefore(
const syncer::StringOrdinal& position) {
if (app_list_items_.empty())
return syncer::StringOrdinal::CreateInitialOrdinal();
size_t nitems = app_list_items_.size();
size_t index;
if (!position.IsValid()) {
index = nitems;
} else {
for (index = 0; index < nitems; ++index) {
if (!app_list_items_[index]->position().LessThan(position))
break;
}
}
if (index == 0)
return app_list_items_[0]->position().CreateBefore();
if (index == nitems)
return app_list_items_[nitems - 1]->position().CreateAfter();
return app_list_items_[index - 1]->position().CreateBetween(
app_list_items_[index]->position());
}
AppListItem* AppListItemList::AddItem(scoped_ptr<AppListItem> item_ptr) {
AppListItem* item = item_ptr.get();
CHECK(std::find(app_list_items_.begin(), app_list_items_.end(), item)
== app_list_items_.end());
EnsureValidItemPosition(item);
size_t index = GetItemSortOrderIndex(item->position(), item->id());
app_list_items_.insert(app_list_items_.begin() + index, item_ptr.release());
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnListItemAdded(index, item));
if (item->id() == highlighted_id_) {
// Item not present when highlight requested, so highlight it now.
item->set_highlighted(true);
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnAppListItemHighlight(index, true));
}
return item;
}
void AppListItemList::DeleteItem(const std::string& id) {
scoped_ptr<AppListItem> item = RemoveItem(id);
// |item| will be deleted on destruction.
}
scoped_ptr<AppListItem> AppListItemList::RemoveItem(const std::string& id) {
size_t index;
if (!FindItemIndex(id, &index))
LOG(FATAL) << "RemoveItem: Not found: " << id;
return RemoveItemAt(index);
}
scoped_ptr<AppListItem> AppListItemList::RemoveItemAt(size_t index) {
CHECK_LT(index, item_count());
AppListItem* item = app_list_items_[index];
app_list_items_.weak_erase(app_list_items_.begin() + index);
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnListItemRemoved(index, item));
return make_scoped_ptr<AppListItem>(item);
}
void AppListItemList::DeleteItemAt(size_t index) {
scoped_ptr<AppListItem> item = RemoveItemAt(index);
// |item| will be deleted on destruction.
}
void AppListItemList::EnsureValidItemPosition(AppListItem* item) {
syncer::StringOrdinal position = item->position();
if (position.IsValid())
return;
size_t nitems = app_list_items_.size();
if (nitems == 0) {
position = syncer::StringOrdinal::CreateInitialOrdinal();
} else {
position = app_list_items_[nitems - 1]->position().CreateAfter();
}
item->set_position(position);
}
size_t AppListItemList::GetItemSortOrderIndex(
const syncer::StringOrdinal& position,
const std::string& id) {
DCHECK(position.IsValid());
for (size_t index = 0; index < app_list_items_.size(); ++index) {
if (position.LessThan(app_list_items_[index]->position()) ||
(position.Equals(app_list_items_[index]->position()) &&
(id < app_list_items_[index]->id()))) {
return index;
}
}
return app_list_items_.size();
}
void AppListItemList::FixItemPosition(size_t index) {
DVLOG(1) << "FixItemPosition: " << index;
size_t nitems = item_count();
DCHECK_LT(index, nitems);
DCHECK_GT(index, 0u);
// Update the position of |index| and any necessary subsequent items.
// First, find the next item that has a different position.
AppListItem* prev = app_list_items_[index - 1];
size_t last_index = index + 1;
for (; last_index < nitems; ++last_index) {
if (!app_list_items_[last_index]->position().Equals(prev->position()))
break;
}
AppListItem* last = last_index < nitems ? app_list_items_[last_index] : NULL;
for (size_t i = index; i < last_index; ++i) {
AppListItem* cur = app_list_items_[i];
if (last)
cur->set_position(prev->position().CreateBetween(last->position()));
else
cur->set_position(prev->position().CreateAfter());
prev = cur;
}
FOR_EACH_OBSERVER(AppListItemListObserver,
observers_,
OnListItemMoved(index, index, app_list_items_[index]));
}
} // namespace app_list
|