blob: d010aeeb8008b6ed4ad023594bfced33d9828887 [file] [log] [blame]
philip.liard@gmail.comb9056912011-08-18 11:41:24 +00001// Copyright (C) 2011 The Libphonenumber Authors
philip.liard@gmail.com1ad5e5b2011-07-01 08:22:06 +00002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// Author: Fredrik Roubert
16
17#include "phonenumbers/regexp_cache.h"
18
19#include <cstddef>
20#include <string>
21#include <utility>
22
philip.liard@gmail.comaf4a2ce2013-04-30 11:35:55 +000023#include "phonenumbers/base/synchronization/lock.h"
philip.liard@gmail.com1ad5e5b2011-07-01 08:22:06 +000024#include "phonenumbers/regexp_adapter.h"
25
26using std::string;
27
philip.liard@gmail.com1ad5e5b2011-07-01 08:22:06 +000028namespace i18n {
29namespace phonenumbers {
30
philip.liard@gmail.com384682a2011-07-12 15:41:29 +000031RegExpCache::RegExpCache(const AbstractRegExpFactory& regexp_factory,
32 size_t min_items)
33 : regexp_factory_(regexp_factory),
philip.liard@gmail.comfa6ddee2013-05-03 13:49:35 +000034#ifdef I18N_PHONENUMBERS_USE_TR1_UNORDERED_MAP
philip.liard@gmail.com384682a2011-07-12 15:41:29 +000035 cache_impl_(new CacheImpl(min_items))
philip.liard@gmail.come3f2e3e2011-07-01 09:23:29 +000036#else
philip.liard@gmail.com384682a2011-07-12 15:41:29 +000037 cache_impl_(new CacheImpl())
philip.liard@gmail.come3f2e3e2011-07-01 09:23:29 +000038#endif
39{}
philip.liard@gmail.com1ad5e5b2011-07-01 08:22:06 +000040
41RegExpCache::~RegExpCache() {
42 AutoLock l(lock_);
43 for (CacheImpl::const_iterator
44 it = cache_impl_->begin(); it != cache_impl_->end(); ++it) {
45 delete it->second;
46 }
47}
48
49const RegExp& RegExpCache::GetRegExp(const string& pattern) {
50 AutoLock l(lock_);
51 CacheImpl::const_iterator it = cache_impl_->find(pattern);
52 if (it != cache_impl_->end()) return *it->second;
53
philip.liard@gmail.com384682a2011-07-12 15:41:29 +000054 const RegExp* regexp = regexp_factory_.CreateRegExp(pattern);
philip.liard@gmail.com1ad5e5b2011-07-01 08:22:06 +000055 cache_impl_->insert(make_pair(pattern, regexp));
56 return *regexp;
57}
58
59} // namespace phonenumbers
60} // namespace i18n