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 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,
00042                                                              double wait_seconds)
00043   : db_host_(host), db_port_(port), timeout_(wait_seconds)
00044 {
00045   // if we are using default values for initialization, attempt to use ROS params for initialization
00046   if (db_host_.empty() || db_port_ == 0)
00047   {
00048     ros::NodeHandle nh("~");
00049     // search for the warehouse_port parameter in the local name space of the node, and up the tree of namespaces;
00050     // if the desired param is not found, make a final attempt to look fro the param in the default namespace defined
00051     // above
00052     if (db_port_ == 0)
00053     {
00054       std::string paramName;
00055       if (!nh.searchParam("warehouse_port", paramName))
00056         paramName = "warehouse_port";
00057       int param_port;
00058       if (nh.getParam(paramName, param_port))
00059         db_port_ = param_port;
00060     }
00061     if (db_host_.empty())
00062     {
00063       std::string paramName;
00064       if (!nh.searchParam("warehouse_host", paramName))
00065         paramName = "warehouse_host";
00066       std::string param_host;
00067       if (nh.getParam(paramName, param_host))
00068         db_host_ = param_host;
00069     }
00070   }
00071   ROS_DEBUG("Connecting to MongoDB on host '%s' port '%u'...", db_host_.c_str(), db_port_);
00072 }
00073 
00074 moveit_warehouse::MoveItMessageStorage::~MoveItMessageStorage()
00075 {
00076 }
00077 
00078 void moveit_warehouse::MoveItMessageStorage::drop(const std::string& db)
00079 {
00080   mongo_ros::dropDatabase(db, db_host_, db_port_, timeout_);
00081   ROS_DEBUG("Dropped database '%s'", db.c_str());
00082 }
00083 
00084 void moveit_warehouse::MoveItMessageStorage::filterNames(const std::string& regex,
00085                                                          std::vector<std::string>& names) const
00086 {
00087   if (!regex.empty())
00088   {
00089     std::vector<std::string> fnames;
00090     boost::regex r(regex);
00091     for (std::size_t i = 0; i < names.size(); ++i)
00092     {
00093       boost::cmatch match;
00094       if (boost::regex_match(names[i].c_str(), match, r))
00095         fnames.push_back(names[i]);
00096     }
00097     names.swap(fnames);
00098   }
00099 }


warehouse
Author(s): Ioan Sucan
autogenerated on Wed Jun 19 2019 19:24:47