aboutsummaryrefslogtreecommitdiffstats
path: root/icnet/transport/icnet_content_store.cc
diff options
context:
space:
mode:
authorMauro Sardara <msardara+fdio@cisco.com>2017-06-05 16:48:29 +0200
committerMauro Sardara <msardara+fdio@cisco.com>2017-06-05 17:45:15 +0200
commitd22d2b4785e2f4eafc8dda2ae032931f89c7e45f (patch)
tree47fa6879217c4b08e8a78efc33b8cd007a110866 /icnet/transport/icnet_content_store.cc
parent52ab9bf241528b0cb1d24384d22b017391be2899 (diff)
- Added new interface between applications and library:
- Application retrieve resources using the common HTTP url format. - Translation between network names and application names performed by the library - Added basic error handling - Added utils for http connections - Added support for differetn build types (DEBUG, RELEASE, RELEASE with debug symbols, RELEASE with min size executable) - Added support for iOS Change-Id: I8ba2a5d8bd70a4f7721e1bbc2efe3fb81ed2c98c Signed-off-by: Mauro Sardara <msardara+fdio@cisco.com>
Diffstat (limited to 'icnet/transport/icnet_content_store.cc')
-rw-r--r--icnet/transport/icnet_content_store.cc76
1 files changed, 0 insertions, 76 deletions
diff --git a/icnet/transport/icnet_content_store.cc b/icnet/transport/icnet_content_store.cc
deleted file mode 100644
index 64694b20..00000000
--- a/icnet/transport/icnet_content_store.cc
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright (c) 2017 Cisco and/or its affiliates.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "icnet_content_store.h"
-
-namespace icnet {
-
-ContentStore::ContentStore(std::size_t max_packets)
- : max_content_store_size_(max_packets) {
-}
-
-ContentStore::~ContentStore() {
- content_store_hash_table_.clear();
-}
-
-void ContentStore::insert(const std::shared_ptr<ContentObject> &content_object) {
- std::unique_lock<std::mutex> lock(cs_mutex_);
- if (content_store_hash_table_.size() >= max_content_store_size_) {
- // Evict item
- content_store_hash_table_.erase(lru_list_.back());
- lru_list_.pop_back();
- }
-
- // Insert new item
- lru_list_.push_back(std::cref(content_object->getName()));
- LRUList::iterator pos = lru_list_.end();
- content_store_hash_table_[content_object->getName()] = CcnxContentStoreEntry(content_object, pos);
-
-}
-
-const std::shared_ptr<ContentObject> &ContentStore::find(const Interest &interest) {
- std::unique_lock<std::mutex> lock(cs_mutex_);
- ContentStoreHashTable::iterator it = content_store_hash_table_.find(interest.getName());
- if (it != content_store_hash_table_.end()) {
- if (it->second.second != lru_list_.begin()) {
- // Move element to the top of the LRU list
- lru_list_.splice(lru_list_.begin(), lru_list_, it->second.second);
- }
- return it->second.first;
- } else {
- return empty_reference_;
- }
-}
-
-void ContentStore::erase(const Name &exact_name) {
- std::unique_lock<std::mutex> lock(cs_mutex_);
- ContentStoreHashTable::iterator it = content_store_hash_table_.find(exact_name);
- lru_list_.erase(it->second.second);
- content_store_hash_table_.erase(exact_name);
-}
-
-void ContentStore::setLimit(size_t max_packets) {
- max_content_store_size_ = max_packets;
-}
-
-std::size_t ContentStore::getLimit() const {
- return max_content_store_size_;
-}
-
-std::size_t ContentStore::size() const {
- return content_store_hash_table_.size();
-}
-
-} // end namespace icnet \ No newline at end of file