5081bcece404b31369791fde2e6c04c1259f50b6
[shibboleth/cpp-opensaml.git] / saml / binding / impl / ReplayCache.cpp
1 /*
2  *  Copyright 2001-2006 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * ReplayCache.cpp
19  * 
20  * Helper class on top of StorageService for detecting message replay. 
21  */
22
23 #include "internal.h"
24 #include "binding/ReplayCache.h"
25
26 using namespace opensaml;
27 using namespace xmltooling;
28 using namespace std;
29
30 ReplayCache::ReplayCache(StorageService* storage) : m_storage(storage)
31 {
32     if (!m_storage)
33         m_storage = XMLToolingConfig::getConfig().StorageServiceManager.newPlugin(MEMORY_STORAGE_SERVICE, NULL);
34 }
35
36 ReplayCache::~ReplayCache()
37 {
38     delete m_storage;
39 }
40
41 bool ReplayCache::check(const char* context, const char* s, time_t expires)
42 {
43     // In storage already?
44     if (m_storage->readString(context, s))
45         return false;
46     m_storage->createText(context, s, "x", expires);
47     return true;
48 }