2 * Copyright (C) 2014 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 WebInspector.HistoryEntry = function() { }
36 WebInspector.HistoryEntry.prototype = {
40 valid: function() { },
42 reveal: function() { }
47 * @param {number} historyDepth
49 WebInspector.SimpleHistoryManager = function(historyDepth)
52 this._activeEntryIndex = -1;
53 this._coalescingReadonly = 0;
54 this._historyDepth = historyDepth;
57 WebInspector.SimpleHistoryManager.prototype = {
58 readOnlyLock: function()
60 ++this._coalescingReadonly;
63 releaseReadOnlyLock: function()
65 --this._coalescingReadonly;
73 return !!this._coalescingReadonly;
77 * @param {function(!WebInspector.HistoryEntry):boolean} filterOutCallback
79 filterOut: function(filterOutCallback)
83 var filteredEntries = [];
84 var removedBeforeActiveEntry = 0;
85 for (var i = 0; i < this._entries.length; ++i) {
86 if (!filterOutCallback(this._entries[i])) {
87 filteredEntries.push(this._entries[i]);
88 } else if (i <= this._activeEntryIndex)
89 ++removedBeforeActiveEntry;
91 this._entries = filteredEntries;
92 this._activeEntryIndex = Math.max(0, this._activeEntryIndex - removedBeforeActiveEntry);
100 return !this._entries.length;
104 * @return {?WebInspector.HistoryEntry}
108 return this.empty() ? null : this._entries[this._activeEntryIndex];
112 * @param {!WebInspector.HistoryEntry} entry
114 push: function(entry)
119 this._entries.splice(this._activeEntryIndex + 1);
120 this._entries.push(entry);
121 if (this._entries.length > this._historyDepth)
122 this._entries.shift();
123 this._activeEntryIndex = this._entries.length - 1;
134 var revealIndex = this._activeEntryIndex - 1;
135 while (revealIndex >= 0 && !this._entries[revealIndex].valid())
141 this._entries[revealIndex].reveal();
142 this.releaseReadOnlyLock();
144 this._activeEntryIndex = revealIndex;
153 var revealIndex = this._activeEntryIndex + 1;
155 while (revealIndex < this._entries.length && !this._entries[revealIndex].valid())
157 if (revealIndex >= this._entries.length)
161 this._entries[revealIndex].reveal();
162 this.releaseReadOnlyLock();
164 this._activeEntryIndex = revealIndex;