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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
|
/*
* Copyright (C) 2005, 2008, 2009 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "WebHistoryInternal.h"
#import "HistoryPropertyList.h"
#import "WebHistoryItemInternal.h"
#import "WebKitLogging.h"
#import "WebNSURLExtras.h"
#import "WebTypesInternal.h"
#import <WebCore/HistoryItem.h>
#import <WebCore/PageGroup.h>
using namespace WebCore;
typedef int64_t WebHistoryDateKey;
typedef HashMap<WebHistoryDateKey, RetainPtr<NSMutableArray> > DateToEntriesMap;
NSString *WebHistoryItemsAddedNotification = @"WebHistoryItemsAddedNotification";
NSString *WebHistoryItemsRemovedNotification = @"WebHistoryItemsRemovedNotification";
NSString *WebHistoryAllItemsRemovedNotification = @"WebHistoryAllItemsRemovedNotification";
NSString *WebHistoryLoadedNotification = @"WebHistoryLoadedNotification";
NSString *WebHistoryItemsDiscardedWhileLoadingNotification = @"WebHistoryItemsDiscardedWhileLoadingNotification";
NSString *WebHistorySavedNotification = @"WebHistorySavedNotification";
NSString *WebHistoryItemsKey = @"WebHistoryItems";
static WebHistory *_sharedHistory = nil;
NSString *FileVersionKey = @"WebHistoryFileVersion";
NSString *DatesArrayKey = @"WebHistoryDates";
#define currentFileVersion 1
class WebHistoryWriter : public HistoryPropertyListWriter {
public:
WebHistoryWriter(DateToEntriesMap*);
private:
virtual void writeHistoryItems(BinaryPropertyListObjectStream&);
DateToEntriesMap* m_entriesByDate;
Vector<int> m_dateKeys;
};
@interface WebHistory ()
- (void)_sendNotification:(NSString *)name entries:(NSArray *)entries;
@end
@interface WebHistoryPrivate : NSObject {
@private
NSMutableDictionary *_entriesByURL;
DateToEntriesMap* _entriesByDate;
NSMutableArray *_orderedLastVisitedDays;
BOOL itemLimitSet;
int itemLimit;
BOOL ageInDaysLimitSet;
int ageInDaysLimit;
}
- (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount;
- (BOOL)addItem:(WebHistoryItem *)entry discardDuplicate:(BOOL)discardDuplicate;
- (void)addItems:(NSArray *)newEntries;
- (BOOL)removeItem:(WebHistoryItem *)entry;
- (BOOL)removeItems:(NSArray *)entries;
- (BOOL)removeAllItems;
- (void)rebuildHistoryByDayIfNeeded:(WebHistory *)webHistory;
- (NSArray *)orderedLastVisitedDays;
- (NSArray *)orderedItemsLastVisitedOnDay:(NSCalendarDate *)calendarDate;
- (BOOL)containsURL:(NSURL *)URL;
- (WebHistoryItem *)itemForURL:(NSURL *)URL;
- (WebHistoryItem *)itemForURLString:(NSString *)URLString;
- (NSArray *)allItems;
- (BOOL)loadFromURL:(NSURL *)URL collectDiscardedItemsInto:(NSMutableArray *)discardedItems error:(NSError **)error;
- (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error;
- (NSCalendarDate *)ageLimitDate;
- (void)setHistoryItemLimit:(int)limit;
- (int)historyItemLimit;
- (void)setHistoryAgeInDaysLimit:(int)limit;
- (int)historyAgeInDaysLimit;
- (void)addVisitedLinksToPageGroup:(PageGroup&)group;
@end
@implementation WebHistoryPrivate
// MARK: OBJECT FRAMEWORK
+ (void)initialize
{
[[NSUserDefaults standardUserDefaults] registerDefaults:
[NSDictionary dictionaryWithObjectsAndKeys:
@"1000", @"WebKitHistoryItemLimit",
@"7", @"WebKitHistoryAgeInDaysLimit",
nil]];
}
- (id)init
{
self = [super init];
if (!self)
return nil;
_entriesByURL = [[NSMutableDictionary alloc] init];
_entriesByDate = new DateToEntriesMap;
return self;
}
- (void)dealloc
{
[_entriesByURL release];
[_orderedLastVisitedDays release];
delete _entriesByDate;
[super dealloc];
}
- (void)finalize
{
delete _entriesByDate;
[super finalize];
}
// MARK: MODIFYING CONTENTS
static void getDayBoundaries(NSTimeInterval interval, NSTimeInterval& beginningOfDay, NSTimeInterval& beginningOfNextDay)
{
CFTimeZoneRef timeZone = CFTimeZoneCopyDefault();
CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(interval, timeZone);
date.hour = 0;
date.minute = 0;
date.second = 0;
beginningOfDay = CFGregorianDateGetAbsoluteTime(date, timeZone);
date.day += 1;
beginningOfNextDay = CFGregorianDateGetAbsoluteTime(date, timeZone);
CFRelease(timeZone);
}
static inline NSTimeInterval beginningOfDay(NSTimeInterval date)
{
static NSTimeInterval cachedBeginningOfDay = NAN;
static NSTimeInterval cachedBeginningOfNextDay;
if (!(date >= cachedBeginningOfDay && date < cachedBeginningOfNextDay))
getDayBoundaries(date, cachedBeginningOfDay, cachedBeginningOfNextDay);
return cachedBeginningOfDay;
}
static inline WebHistoryDateKey dateKey(NSTimeInterval date)
{
// Converting from double (NSTimeInterval) to int64_t (WebHistoryDateKey) is
// safe here because all sensible dates are in the range -2**48 .. 2**47 which
// safely fits in an int64_t.
return beginningOfDay(date);
}
// Returns whether the day is already in the list of days,
// and fills in *key with the key used to access its location
- (BOOL)findKey:(WebHistoryDateKey*)key forDay:(NSTimeInterval)date
{
ASSERT_ARG(key, key);
*key = dateKey(date);
return _entriesByDate->contains(*key);
}
- (void)insertItem:(WebHistoryItem *)entry forDateKey:(WebHistoryDateKey)dateKey
{
ASSERT_ARG(entry, entry != nil);
ASSERT(_entriesByDate->contains(dateKey));
NSMutableArray *entriesForDate = _entriesByDate->get(dateKey).get();
NSTimeInterval entryDate = [entry lastVisitedTimeInterval];
unsigned count = [entriesForDate count];
// The entries for each day are stored in a sorted array with the most recent entry first
// Check for the common cases of the entry being newer than all existing entries or the first entry of the day
if (!count || [[entriesForDate objectAtIndex:0] lastVisitedTimeInterval] < entryDate) {
[entriesForDate insertObject:entry atIndex:0];
return;
}
// .. or older than all existing entries
if (count > 0 && [[entriesForDate objectAtIndex:count - 1] lastVisitedTimeInterval] >= entryDate) {
[entriesForDate insertObject:entry atIndex:count];
return;
}
unsigned low = 0;
unsigned high = count;
while (low < high) {
unsigned mid = low + (high - low) / 2;
if ([[entriesForDate objectAtIndex:mid] lastVisitedTimeInterval] >= entryDate)
low = mid + 1;
else
high = mid;
}
// low is now the index of the first entry that is older than entryDate
[entriesForDate insertObject:entry atIndex:low];
}
- (BOOL)removeItemFromDateCaches:(WebHistoryItem *)entry
{
WebHistoryDateKey dateKey;
BOOL foundDate = [self findKey:&dateKey forDay:[entry lastVisitedTimeInterval]];
if (!foundDate)
return NO;
DateToEntriesMap::iterator it = _entriesByDate->find(dateKey);
NSMutableArray *entriesForDate = it->value.get();
[entriesForDate removeObjectIdenticalTo:entry];
// remove this date entirely if there are no other entries on it
if ([entriesForDate count] == 0) {
_entriesByDate->remove(it);
// Clear _orderedLastVisitedDays so it will be regenerated when next requested.
[_orderedLastVisitedDays release];
_orderedLastVisitedDays = nil;
}
return YES;
}
- (BOOL)removeItemForURLString:(NSString *)URLString
{
WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
if (!entry)
return NO;
[_entriesByURL removeObjectForKey:URLString];
#if ASSERT_DISABLED
[self removeItemFromDateCaches:entry];
#else
BOOL itemWasInDateCaches = [self removeItemFromDateCaches:entry];
ASSERT(itemWasInDateCaches);
#endif
if (![_entriesByURL count])
PageGroup::removeAllVisitedLinks();
return YES;
}
- (void)addItemToDateCaches:(WebHistoryItem *)entry
{
WebHistoryDateKey dateKey;
if ([self findKey:&dateKey forDay:[entry lastVisitedTimeInterval]])
// other entries already exist for this date
[self insertItem:entry forDateKey:dateKey];
else {
// no other entries exist for this date
NSMutableArray *entries = [[NSMutableArray alloc] initWithObjects:&entry count:1];
_entriesByDate->set(dateKey, entries);
[entries release];
// Clear _orderedLastVisitedDays so it will be regenerated when next requested.
[_orderedLastVisitedDays release];
_orderedLastVisitedDays = nil;
}
}
- (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount
{
ASSERT(url);
ASSERT(title);
NSString *URLString = [url _web_originalDataAsString];
if (!URLString)
URLString = @"";
WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
if (entry) {
LOG(History, "Updating global history entry %@", entry);
// Remove the item from date caches before changing its last visited date. Otherwise we might get duplicate entries
// as seen in <rdar://problem/6570573>.
BOOL itemWasInDateCaches = [self removeItemFromDateCaches:entry];
ASSERT_UNUSED(itemWasInDateCaches, itemWasInDateCaches);
[entry _visitedWithTitle:title increaseVisitCount:increaseVisitCount];
} else {
LOG(History, "Adding new global history entry for %@", url);
entry = [[WebHistoryItem alloc] initWithURLString:URLString title:title lastVisitedTimeInterval:[NSDate timeIntervalSinceReferenceDate]];
[entry _recordInitialVisit];
[_entriesByURL setObject:entry forKey:URLString];
[entry release];
}
[self addItemToDateCaches:entry];
return entry;
}
- (BOOL)addItem:(WebHistoryItem *)entry discardDuplicate:(BOOL)discardDuplicate
{
ASSERT_ARG(entry, entry);
ASSERT_ARG(entry, [entry lastVisitedTimeInterval] != 0);
NSString *URLString = [entry URLString];
WebHistoryItem *oldEntry = [_entriesByURL objectForKey:URLString];
if (oldEntry) {
if (discardDuplicate)
return NO;
// The last reference to oldEntry might be this dictionary, so we hold onto a reference
// until we're done with oldEntry.
[oldEntry retain];
[self removeItemForURLString:URLString];
// If we already have an item with this URL, we need to merge info that drives the
// URL autocomplete heuristics from that item into the new one.
[entry _mergeAutoCompleteHints:oldEntry];
[oldEntry release];
}
[self addItemToDateCaches:entry];
[_entriesByURL setObject:entry forKey:URLString];
return YES;
}
- (void)rebuildHistoryByDayIfNeeded:(WebHistory *)webHistory
{
// We clear all the values to present a consistent state when sending the notifications.
// We keep a reference to the entries for rebuilding the history after the notification.
Vector <RetainPtr<NSMutableArray> > entryArrays;
copyValuesToVector(*_entriesByDate, entryArrays);
_entriesByDate->clear();
NSMutableDictionary *entriesByURL = _entriesByURL;
_entriesByURL = nil;
[_orderedLastVisitedDays release];
_orderedLastVisitedDays = nil;
NSArray *allEntries = [entriesByURL allValues];
[webHistory _sendNotification:WebHistoryAllItemsRemovedNotification entries:allEntries];
// Next, we rebuild the history, restore the states, and notify the clients.
_entriesByURL = entriesByURL;
for (size_t dayIndex = 0; dayIndex < entryArrays.size(); ++dayIndex) {
for (WebHistoryItem *entry in (entryArrays[dayIndex]).get())
[self addItemToDateCaches:entry];
}
[webHistory _sendNotification:WebHistoryItemsAddedNotification entries:allEntries];
}
- (BOOL)removeItem:(WebHistoryItem *)entry
{
NSString *URLString = [entry URLString];
// If this exact object isn't stored, then make no change.
// FIXME: Is this the right behavior if this entry isn't present, but another entry for the same URL is?
// Maybe need to change the API to make something like removeEntryForURLString public instead.
WebHistoryItem *matchingEntry = [_entriesByURL objectForKey:URLString];
if (matchingEntry != entry)
return NO;
[self removeItemForURLString:URLString];
return YES;
}
- (BOOL)removeItems:(NSArray *)entries
{
NSUInteger count = [entries count];
if (!count)
return NO;
for (NSUInteger index = 0; index < count; ++index)
[self removeItem:[entries objectAtIndex:index]];
return YES;
}
- (BOOL)removeAllItems
{
if (_entriesByDate->isEmpty())
return NO;
_entriesByDate->clear();
[_entriesByURL removeAllObjects];
// Clear _orderedLastVisitedDays so it will be regenerated when next requested.
[_orderedLastVisitedDays release];
_orderedLastVisitedDays = nil;
PageGroup::removeAllVisitedLinks();
return YES;
}
- (void)addItems:(NSArray *)newEntries
{
// There is no guarantee that the incoming entries are in any particular
// order, but if this is called with a set of entries that were created by
// iterating through the results of orderedLastVisitedDays and orderedItemsLastVisitedOnDayy
// then they will be ordered chronologically from newest to oldest. We can make adding them
// faster (fewer compares) by inserting them from oldest to newest.
NSEnumerator *enumerator = [newEntries reverseObjectEnumerator];
while (WebHistoryItem *entry = [enumerator nextObject])
[self addItem:entry discardDuplicate:NO];
}
// MARK: DATE-BASED RETRIEVAL
- (NSArray *)orderedLastVisitedDays
{
if (!_orderedLastVisitedDays) {
Vector<int> daysAsTimeIntervals;
daysAsTimeIntervals.reserveCapacity(_entriesByDate->size());
DateToEntriesMap::const_iterator end = _entriesByDate->end();
for (DateToEntriesMap::const_iterator it = _entriesByDate->begin(); it != end; ++it)
daysAsTimeIntervals.append(it->key);
std::sort(daysAsTimeIntervals.begin(), daysAsTimeIntervals.end());
size_t count = daysAsTimeIntervals.size();
_orderedLastVisitedDays = [[NSMutableArray alloc] initWithCapacity:count];
for (int i = count - 1; i >= 0; i--) {
NSTimeInterval interval = daysAsTimeIntervals[i];
NSCalendarDate *date = [[NSCalendarDate alloc] initWithTimeIntervalSinceReferenceDate:interval];
[_orderedLastVisitedDays addObject:date];
[date release];
}
}
return _orderedLastVisitedDays;
}
- (NSArray *)orderedItemsLastVisitedOnDay:(NSCalendarDate *)date
{
WebHistoryDateKey dateKey;
if (![self findKey:&dateKey forDay:[date timeIntervalSinceReferenceDate]])
return nil;
return _entriesByDate->get(dateKey).get();
}
// MARK: URL MATCHING
- (WebHistoryItem *)itemForURLString:(NSString *)URLString
{
return [_entriesByURL objectForKey:URLString];
}
- (BOOL)containsURL:(NSURL *)URL
{
return [self itemForURLString:[URL _web_originalDataAsString]] != nil;
}
- (WebHistoryItem *)itemForURL:(NSURL *)URL
{
return [self itemForURLString:[URL _web_originalDataAsString]];
}
- (NSArray *)allItems
{
return [_entriesByURL allValues];
}
// MARK: ARCHIVING/UNARCHIVING
- (void)setHistoryAgeInDaysLimit:(int)limit
{
ageInDaysLimitSet = YES;
ageInDaysLimit = limit;
}
- (int)historyAgeInDaysLimit
{
if (ageInDaysLimitSet)
return ageInDaysLimit;
return [[NSUserDefaults standardUserDefaults] integerForKey:@"WebKitHistoryAgeInDaysLimit"];
}
- (void)setHistoryItemLimit:(int)limit
{
itemLimitSet = YES;
itemLimit = limit;
}
- (int)historyItemLimit
{
if (itemLimitSet)
return itemLimit;
return [[NSUserDefaults standardUserDefaults] integerForKey:@"WebKitHistoryItemLimit"];
}
// Return a date that marks the age limit for history entries saved to or
// loaded from disk. Any entry older than this item should be rejected.
- (NSCalendarDate *)ageLimitDate
{
return [[NSCalendarDate calendarDate] dateByAddingYears:0 months:0 days:-[self historyAgeInDaysLimit]
hours:0 minutes:0 seconds:0];
}
- (BOOL)loadHistoryGutsFromURL:(NSURL *)URL savedItemsCount:(int *)numberOfItemsLoaded collectDiscardedItemsInto:(NSMutableArray *)discardedItems error:(NSError **)error
{
*numberOfItemsLoaded = 0;
NSDictionary *dictionary = nil;
// Optimize loading from local file, which is faster than using the general URL loading mechanism
if ([URL isFileURL]) {
dictionary = [NSDictionary dictionaryWithContentsOfFile:[URL path]];
if (!dictionary) {
#if !LOG_DISABLED
if ([[NSFileManager defaultManager] fileExistsAtPath:[URL path]])
LOG_ERROR("unable to read history from file %@; perhaps contents are corrupted", [URL path]);
#endif
// else file doesn't exist, which is normal the first time
return NO;
}
} else {
NSData *data = [NSURLConnection sendSynchronousRequest:[NSURLRequest requestWithURL:URL] returningResponse:nil error:error];
if (data && [data length] > 0) {
dictionary = [NSPropertyListSerialization propertyListFromData:data
mutabilityOption:NSPropertyListImmutable
format:nil
errorDescription:nil];
}
}
// We used to support NSArrays here, but that was before Safari 1.0 shipped. We will no longer support
// that ancient format, so anything that isn't an NSDictionary is bogus.
if (![dictionary isKindOfClass:[NSDictionary class]])
return NO;
NSNumber *fileVersionObject = [dictionary objectForKey:FileVersionKey];
int fileVersion;
// we don't trust data obtained from elsewhere, so double-check
if (!fileVersionObject || ![fileVersionObject isKindOfClass:[NSNumber class]]) {
LOG_ERROR("history file version can't be determined, therefore not loading");
return NO;
}
fileVersion = [fileVersionObject intValue];
if (fileVersion > currentFileVersion) {
LOG_ERROR("history file version is %d, newer than newest known version %d, therefore not loading", fileVersion, currentFileVersion);
return NO;
}
NSArray *array = [dictionary objectForKey:DatesArrayKey];
int itemCountLimit = [self historyItemLimit];
NSTimeInterval ageLimitDate = [[self ageLimitDate] timeIntervalSinceReferenceDate];
NSEnumerator *enumerator = [array objectEnumerator];
BOOL ageLimitPassed = NO;
BOOL itemLimitPassed = NO;
ASSERT(*numberOfItemsLoaded == 0);
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSDictionary *itemAsDictionary;
while ((itemAsDictionary = [enumerator nextObject]) != nil) {
WebHistoryItem *item = [[WebHistoryItem alloc] initFromDictionaryRepresentation:itemAsDictionary];
// item without URL is useless; data on disk must have been bad; ignore
if ([item URLString]) {
// Test against date limit. Since the items are ordered newest to oldest, we can stop comparing
// once we've found the first item that's too old.
if (!ageLimitPassed && [item lastVisitedTimeInterval] <= ageLimitDate)
ageLimitPassed = YES;
if (ageLimitPassed || itemLimitPassed)
[discardedItems addObject:item];
else {
if ([self addItem:item discardDuplicate:YES])
++(*numberOfItemsLoaded);
if (*numberOfItemsLoaded == itemCountLimit)
itemLimitPassed = YES;
// Draining the autorelease pool every 50 iterations was found by experimentation to be optimal
if (*numberOfItemsLoaded % 50 == 0) {
[pool drain];
pool = [[NSAutoreleasePool alloc] init];
}
}
}
[item release];
}
[pool drain];
return YES;
}
- (BOOL)loadFromURL:(NSURL *)URL collectDiscardedItemsInto:(NSMutableArray *)discardedItems error:(NSError **)error
{
#if !LOG_DISABLED
double start = CFAbsoluteTimeGetCurrent();
#endif
int numberOfItems;
if (![self loadHistoryGutsFromURL:URL savedItemsCount:&numberOfItems collectDiscardedItemsInto:discardedItems error:error])
return NO;
#if !LOG_DISABLED
double duration = CFAbsoluteTimeGetCurrent() - start;
LOG(Timing, "loading %d history entries from %@ took %f seconds", numberOfItems, URL, duration);
#endif
return YES;
}
- (NSData *)data
{
if (_entriesByDate->isEmpty()) {
static NSData *emptyHistoryData = (NSData *)CFDataCreate(0, 0, 0);
return emptyHistoryData;
}
// Ignores the date and item count limits; these are respected when loading instead of when saving, so
// that clients can learn of discarded items by listening to WebHistoryItemsDiscardedWhileLoadingNotification.
WebHistoryWriter writer(_entriesByDate);
writer.writePropertyList();
return [[(NSData *)writer.releaseData().get() retain] autorelease];
}
- (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error
{
#if !LOG_DISABLED
double start = CFAbsoluteTimeGetCurrent();
#endif
BOOL result = [[self data] writeToURL:URL options:0 error:error];
#if !LOG_DISABLED
double duration = CFAbsoluteTimeGetCurrent() - start;
LOG(Timing, "saving history to %@ took %f seconds", URL, duration);
#endif
return result;
}
- (void)addVisitedLinksToPageGroup:(PageGroup&)group
{
NSEnumerator *enumerator = [_entriesByURL keyEnumerator];
while (NSString *url = [enumerator nextObject]) {
size_t length = [url length];
const UChar* characters = CFStringGetCharactersPtr(reinterpret_cast<CFStringRef>(url));
if (characters)
group.addVisitedLink(characters, length);
else {
Vector<UChar, 512> buffer(length);
[url getCharacters:buffer.data()];
group.addVisitedLink(buffer.data(), length);
}
}
}
@end
@implementation WebHistory
+ (WebHistory *)optionalSharedHistory
{
return _sharedHistory;
}
+ (void)setOptionalSharedHistory:(WebHistory *)history
{
if (_sharedHistory == history)
return;
// FIXME: Need to think about multiple instances of WebHistory per application
// and correct synchronization of history file between applications.
[_sharedHistory release];
_sharedHistory = [history retain];
PageGroup::setShouldTrackVisitedLinks(history);
PageGroup::removeAllVisitedLinks();
}
- (void)timeZoneChanged:(NSNotification *)notification
{
[_historyPrivate rebuildHistoryByDayIfNeeded:self];
}
- (id)init
{
self = [super init];
if (!self)
return nil;
_historyPrivate = [[WebHistoryPrivate alloc] init];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(timeZoneChanged:)
name:NSSystemTimeZoneDidChangeNotification
object:nil];
return self;
}
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self
name:NSSystemTimeZoneDidChangeNotification
object:nil];
[_historyPrivate release];
[super dealloc];
}
- (void)finalize
{
[[NSNotificationCenter defaultCenter] removeObserver:self
name:NSSystemTimeZoneDidChangeNotification
object:nil];
[super finalize];
}
// MARK: MODIFYING CONTENTS
- (void)_sendNotification:(NSString *)name entries:(NSArray *)entries
{
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:entries, WebHistoryItemsKey, nil];
[[NSNotificationCenter defaultCenter]
postNotificationName:name object:self userInfo:userInfo];
}
- (void)removeItems:(NSArray *)entries
{
if ([_historyPrivate removeItems:entries]) {
[self _sendNotification:WebHistoryItemsRemovedNotification
entries:entries];
}
}
- (void)removeAllItems
{
NSArray *entries = [_historyPrivate allItems];
if ([_historyPrivate removeAllItems])
[self _sendNotification:WebHistoryAllItemsRemovedNotification entries:entries];
}
- (void)addItems:(NSArray *)newEntries
{
[_historyPrivate addItems:newEntries];
[self _sendNotification:WebHistoryItemsAddedNotification
entries:newEntries];
}
// MARK: DATE-BASED RETRIEVAL
- (NSArray *)orderedLastVisitedDays
{
return [_historyPrivate orderedLastVisitedDays];
}
- (NSArray *)orderedItemsLastVisitedOnDay:(NSCalendarDate *)date
{
return [_historyPrivate orderedItemsLastVisitedOnDay:date];
}
// MARK: URL MATCHING
- (BOOL)containsURL:(NSURL *)URL
{
return [_historyPrivate containsURL:URL];
}
- (WebHistoryItem *)itemForURL:(NSURL *)URL
{
return [_historyPrivate itemForURL:URL];
}
// MARK: SAVING TO DISK
- (BOOL)loadFromURL:(NSURL *)URL error:(NSError **)error
{
NSMutableArray *discardedItems = [[NSMutableArray alloc] init];
if (![_historyPrivate loadFromURL:URL collectDiscardedItemsInto:discardedItems error:error]) {
[discardedItems release];
return NO;
}
[[NSNotificationCenter defaultCenter]
postNotificationName:WebHistoryLoadedNotification
object:self];
if ([discardedItems count])
[self _sendNotification:WebHistoryItemsDiscardedWhileLoadingNotification entries:discardedItems];
[discardedItems release];
return YES;
}
- (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error
{
if (![_historyPrivate saveToURL:URL error:error])
return NO;
[[NSNotificationCenter defaultCenter]
postNotificationName:WebHistorySavedNotification
object:self];
return YES;
}
- (void)setHistoryItemLimit:(int)limit
{
[_historyPrivate setHistoryItemLimit:limit];
}
- (int)historyItemLimit
{
return [_historyPrivate historyItemLimit];
}
- (void)setHistoryAgeInDaysLimit:(int)limit
{
[_historyPrivate setHistoryAgeInDaysLimit:limit];
}
- (int)historyAgeInDaysLimit
{
return [_historyPrivate historyAgeInDaysLimit];
}
@end
@implementation WebHistory (WebPrivate)
- (WebHistoryItem *)_itemForURLString:(NSString *)URLString
{
return [_historyPrivate itemForURLString:URLString];
}
- (NSArray *)allItems
{
return [_historyPrivate allItems];
}
- (NSData *)_data
{
return [_historyPrivate data];
}
+ (void)_setVisitedLinkTrackingEnabled:(BOOL)visitedLinkTrackingEnabled
{
PageGroup::setShouldTrackVisitedLinks(visitedLinkTrackingEnabled);
}
+ (void)_removeAllVisitedLinks
{
PageGroup::removeAllVisitedLinks();
}
@end
@implementation WebHistory (WebInternal)
- (void)_visitedURL:(NSURL *)url withTitle:(NSString *)title method:(NSString *)method wasFailure:(BOOL)wasFailure increaseVisitCount:(BOOL)increaseVisitCount
{
WebHistoryItem *entry = [_historyPrivate visitedURL:url withTitle:title increaseVisitCount:increaseVisitCount];
HistoryItem* item = core(entry);
item->setLastVisitWasFailure(wasFailure);
if ([method length])
item->setLastVisitWasHTTPNonGet([method caseInsensitiveCompare:@"GET"] && (![[url scheme] caseInsensitiveCompare:@"http"] || ![[url scheme] caseInsensitiveCompare:@"https"]));
item->setRedirectURLs(nullptr);
NSArray *entries = [[NSArray alloc] initWithObjects:entry, nil];
[self _sendNotification:WebHistoryItemsAddedNotification entries:entries];
[entries release];
}
- (void)_addVisitedLinksToPageGroup:(WebCore::PageGroup&)group
{
[_historyPrivate addVisitedLinksToPageGroup:group];
}
@end
WebHistoryWriter::WebHistoryWriter(DateToEntriesMap* entriesByDate)
: m_entriesByDate(entriesByDate)
{
m_dateKeys.reserveCapacity(m_entriesByDate->size());
DateToEntriesMap::const_iterator end = m_entriesByDate->end();
for (DateToEntriesMap::const_iterator it = m_entriesByDate->begin(); it != end; ++it)
m_dateKeys.append(it->key);
std::sort(m_dateKeys.begin(), m_dateKeys.end());
}
void WebHistoryWriter::writeHistoryItems(BinaryPropertyListObjectStream& stream)
{
for (int dateIndex = m_dateKeys.size() - 1; dateIndex >= 0; dateIndex--) {
NSArray *entries = m_entriesByDate->get(m_dateKeys[dateIndex]).get();
NSUInteger entryCount = [entries count];
for (NSUInteger entryIndex = 0; entryIndex < entryCount; ++entryIndex)
writeHistoryItem(stream, core([entries objectAtIndex:entryIndex]));
}
}
|