blob: 652116c6f44bcb378e93db7497737745cdde80e2 (
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
|
// 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_working_set.h"
#include "base/logging.h"
#include "webkit/appcache/appcache.h"
#include "webkit/appcache/appcache_group.h"
#include "webkit/appcache/appcache_response.h"
namespace appcache {
AppCacheWorkingSet::~AppCacheWorkingSet() {
DCHECK(caches_.empty());
DCHECK(groups_.empty());
DCHECK(groups_by_origin_.empty());
}
void AppCacheWorkingSet::AddCache(AppCache* cache) {
DCHECK(cache->cache_id() != kNoCacheId);
int64 cache_id = cache->cache_id();
DCHECK(caches_.find(cache_id) == caches_.end());
caches_.insert(CacheMap::value_type(cache_id, cache));
}
void AppCacheWorkingSet::RemoveCache(AppCache* cache) {
caches_.erase(cache->cache_id());
}
void AppCacheWorkingSet::AddGroup(AppCacheGroup* group) {
const GURL& url = group->manifest_url();
DCHECK(groups_.find(url) == groups_.end());
groups_.insert(GroupMap::value_type(url, group));
groups_by_origin_[url.GetOrigin()].insert(GroupMap::value_type(url, group));
}
void AppCacheWorkingSet::RemoveGroup(AppCacheGroup* group) {
const GURL& url = group->manifest_url();
groups_.erase(url);
GURL origin_url = url.GetOrigin();
GroupMap* groups_in_origin = GetMutableGroupsInOrigin(origin_url);
if (groups_in_origin) {
groups_in_origin->erase(url);
if (groups_in_origin->empty())
groups_by_origin_.erase(origin_url);
}
}
void AppCacheWorkingSet::AddResponseInfo(AppCacheResponseInfo* info) {
DCHECK(info->response_id() != kNoResponseId);
int64 response_id = info->response_id();
DCHECK(response_infos_.find(response_id) == response_infos_.end());
response_infos_.insert(ResponseInfoMap::value_type(response_id, info));
}
void AppCacheWorkingSet::RemoveResponseInfo(AppCacheResponseInfo* info) {
response_infos_.erase(info->response_id());
}
} // namespace
|