blob: d3bff905a54e4dedf7a67a306a0cacd2ec8b9d4d (
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
|
// Copyright (c) 2006-2008 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 "net/ftp/ftp_auth_cache.h"
#include "base/logging.h"
#include "googleurl/src/gurl.h"
namespace net {
// static
const size_t FtpAuthCache::kMaxEntries = 10;
FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
for (EntryList::iterator it = entries_.begin(); it != entries_.end(); ++it) {
if (it->origin == origin)
return &(*it);
}
return NULL;
}
void FtpAuthCache::Add(const GURL& origin, const std::wstring& username,
const std::wstring& password) {
DCHECK(origin.SchemeIs("ftp"));
DCHECK_EQ(origin.GetOrigin(), origin);
Entry* entry = Lookup(origin);
if (entry) {
entry->username = username;
entry->password = password;
} else {
entries_.push_front(Entry(origin, username, password));
// Prevent unbound memory growth of the cache.
if (entries_.size() > kMaxEntries)
entries_.pop_back();
}
}
void FtpAuthCache::Remove(const GURL& origin, const std::wstring& username,
const std::wstring& password) {
for (EntryList::iterator it = entries_.begin(); it != entries_.end(); ++it) {
if (it->origin == origin && it->username == username &&
it->password == password) {
entries_.erase(it);
DCHECK(!Lookup(origin));
return;
}
}
}
} // namespace net
|