moveit_message_storage.cpp
Go to the documentation of this file.
00001 /*********************************************************************
00002 * Software License Agreement (BSD License)
00003 *
00004 *  Copyright (c) 2012, Willow Garage, Inc.
00005 *  All rights reserved.
00006 *
00007 *  Redistribution and use in source and binary forms, with or without
00008 *  modification, are permitted provided that the following conditions
00009 *  are met:
00010 *
00011 *   * Redistributions of source code must retain the above copyright
00012 *     notice, this list of conditions and the following disclaimer.
00013 *   * Redistributions in binary form must reproduce the above
00014 *     copyright notice, this list of conditions and the following
00015 *     disclaimer in the documentation and/or other materials provided
00016 *     with the distribution.
00017 *   * Neither the name of the Willow Garage nor the names of its
00018 *     contributors may be used to endorse or promote products derived
00019 *     from this software without specific prior written permission.
00020 *
00021 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031 *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032 *  POSSIBILITY OF SUCH DAMAGE.
00033 *********************************************************************/
00034 
00035 /* Author: Ioan Sucan */
00036 
00037 #include <moveit/warehouse/moveit_message_storage.h>
00038 #include <boost/regex.hpp>
00039 #include <ros/ros.h>
00040 
00041 moveit_warehouse::MoveItMessageStorage::MoveItMessageStorage(const std::string &host, const unsigned int port, double wait_seconds) :
00042   db_host_(host), db_port_(port), timeout_(wait_seconds)
00043 {
00044   // if we are using default values for initialization, attempt to use ROS params for initialization
00045   if (db_host_.empty() || db_port_ == 0)
00046   {
00047     ros::NodeHandle nh("~");
00048     // search for the warehouse_port parameter in the local name space of the node, and up the tree of namespaces;
00049     // if the desired param is not found, make a final attempt to look fro the param in the default namespace defined above
00050     if (db_port_ == 0)
00051     {
00052       std::string paramName;
00053       if (!nh.searchParam("warehouse_port", paramName))
00054         paramName = "warehouse_port";
00055       int param_port;
00056       if (nh.getParam(paramName, param_port))
00057         db_port_ = param_port;
00058     }
00059     if (db_host_.empty())
00060     {
00061       std::string paramName;
00062       if (!nh.searchParam("warehouse_host", paramName))
00063         paramName = "warehouse_host";
00064       std::string param_host;
00065       if (nh.getParam(paramName, param_host))
00066         db_host_ = param_host;
00067     }
00068   }
00069   ROS_DEBUG("Connecting to MongoDB on host '%s' port '%u'...", db_host_.c_str(), db_port_);
00070 }
00071 
00072 moveit_warehouse::MoveItMessageStorage::~MoveItMessageStorage()
00073 {
00074 }
00075 
00076 void moveit_warehouse::MoveItMessageStorage::drop(const std::string &db)
00077 {
00078   mongo_ros::dropDatabase(db, db_host_, db_port_, timeout_);
00079   ROS_DEBUG("Dropped database '%s'", db.c_str());
00080 }
00081 
00082 void moveit_warehouse::MoveItMessageStorage::filterNames(const std::string &regex, std::vector<std::string> &names) const
00083 {
00084   if (!regex.empty())
00085   {
00086     std::vector<std::string> fnames;
00087     boost::regex r(regex);
00088     for (std::size_t i = 0; i < names.size() ; ++i)
00089     {
00090       boost::cmatch match;
00091       if (boost::regex_match(names[i].c_str(), match, r))
00092         fnames.push_back(names[i]);
00093     }
00094     names.swap(fnames);
00095   }
00096 }


warehouse
Author(s): Ioan Sucan
autogenerated on Mon Oct 6 2014 02:32:09