/* * name.cc * * This file is part of NEST. * * Copyright (C) 2004 The NEST Initiative * * NEST is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * NEST is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NEST. If not, see <http://www.gnu.org/licenses/>. * */ #include "name.h" #include <iostream> #include <iomanip> std::size_t Name::capacity() { return Name::handleTableInstance_().size(); } std::size_t Name::num_handles() { return Name::handleTableInstance_().size(); } void Name::list_handles(std::ostream& out) { HandleTable_ &table=Name::handleTableInstance_(); std::size_t num_handles = table.size(); out << "Handle Table: \n"; out << "Total number of names : "<< num_handles << std::endl; for ( std::size_t n=0; n< num_handles; ++n) { out << std::setw(6) << n << ": " << table[n] << std::endl; } } void Name::print_handle(std::ostream &o) const { o << "/"<< handleTableInstance_()[handle_] << '('<<handle_ << ')'; } // --------------------------------------------------------------- const std::string& Name::toString(void) const { return handleTableInstance_()[handle_]; } unsigned int Name::insert(const std::string &s) { Name::HandleMap_ &map=Name::handleMapInstance_(); Name::HandleMap_::const_iterator where=map.find(s); if( where == map.end() ) { // The following is more comlex code than a simple // handleMap_[s] = Handle(s), but it avoids the creation // of spurious Handle objects. HEP 2007-05-24 HandleTable_ &table=Name::handleTableInstance_(); unsigned int newhandle= table.size(); map.insert(std::make_pair(s, newhandle)); table.push_back(s); return newhandle; } else return ((*where).second); } void Name::list(std::ostream &out) { Name::HandleMap_ &map=handleMapInstance_(); out << "\nHandle Map content:" << std::endl; for ( Name::HandleMap_::const_iterator where = map.begin(); where != map.end(); ++where ) { out << (*where).first << " -> " << (*where).second << std::endl; } out << "\nHandle::handleTable_ content" << std::endl; Name::list_handles(out); } void Name::info(std::ostream &out) { Name::list_handles(out); } std::ostream & operator<< (std::ostream & o, const Name &n) { o << n.toString().c_str() ; return o; }