blob: 10307c238b2d4431da2e18cdbd9d16af17d2c53b (
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
|
// Copyright (c) 2009 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 "webkit/appcache/appcache_group.h"
#include <algorithm>
#include "base/logging.h"
#include "webkit/appcache/appcache.h"
#include "webkit/appcache/appcache_host.h"
#include "webkit/appcache/appcache_service.h"
namespace appcache {
AppCacheGroup::AppCacheGroup(AppCacheService* service,
const GURL& manifest_url)
: manifest_url_(manifest_url),
update_status_(IDLE),
is_obsolete_(false),
newest_complete_cache_(NULL),
service_(service) {
service_->AddGroup(this);
}
AppCacheGroup::~AppCacheGroup() {
DCHECK(old_caches_.empty());
// Newest complete cache might never have been associated with a host
// and thus would not be cleaned up by the backend impl during shutdown.
if (newest_complete_cache_)
RemoveCache(newest_complete_cache_);
service_->RemoveGroup(this);
}
void AppCacheGroup::AddCache(AppCache* complete_cache) {
DCHECK(complete_cache->is_complete());
if (!newest_complete_cache_) {
newest_complete_cache_ = complete_cache;
return;
}
if (complete_cache->IsNewerThan(newest_complete_cache_)) {
old_caches_.push_back(newest_complete_cache_);
newest_complete_cache_ = complete_cache;
} else {
old_caches_.push_back(complete_cache);
}
}
bool AppCacheGroup::RemoveCache(AppCache* cache) {
if (cache == newest_complete_cache_) {
// Cannot remove newest cache if there are older caches as those may
// eventually be swapped to the newest cache.
if (!old_caches_.empty())
return false;
newest_complete_cache_->set_owning_group(NULL);
newest_complete_cache_ = NULL;
} else {
// Unused old cache can always be removed.
Caches::iterator it =
std::find(old_caches_.begin(), old_caches_.end(), cache);
if (it != old_caches_.end()) {
(*it)->set_owning_group(NULL);
old_caches_.erase(it);
}
}
return true;
}
void AppCacheGroup::StartUpdateWithNewMasterEntry(
AppCacheHost* host, const GURL& master_entry_url) {
// TODO(michaeln): use the real AppCacheUpdateJob
}
} // namespace appcache
|