From 88fc05658247e71b8a3bfa8871d74bf923026f73 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sat, 13 Dec 2014 10:13:42 +0000 Subject: [PATCH] DeviceManager: Use boost::algorithm::string::join to do concatenation --- pv/devicemanager.cpp | 32 +++++--------------------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/pv/devicemanager.cpp b/pv/devicemanager.cpp index df0b055c..7cb90bb8 100644 --- a/pv/devicemanager.cpp +++ b/pv/devicemanager.cpp @@ -29,12 +29,14 @@ #include +#include #include +using boost::algorithm::join; + using std::dynamic_pointer_cast; using std::list; using std::map; -using std::ostringstream; using std::remove_if; using std::runtime_error; using std::shared_ptr; @@ -196,8 +198,6 @@ void DeviceManager::build_display_name(shared_ptr device) return; } - ostringstream s; - // First, build the device's full name. It always contains all // possible information. vector parts = {device->vendor(), device->model(), @@ -206,17 +206,7 @@ void DeviceManager::build_display_name(shared_ptr device) if (device->connection_id().length() > 0) parts.push_back("("+device->connection_id()+")"); - for (size_t i = 0; i < parts.size(); i++) - { - if (parts[i].length() > 0) - { - if (i != 0) - s << " "; - s << parts[i]; - } - } - - full_names_[device] = s.str(); + full_names_[device] = join(parts, " "); // Next, build the display name. It only contains fields as required. bool multiple_dev = false; @@ -231,8 +221,6 @@ void DeviceManager::build_display_name(shared_ptr device) dev != hardware_device; } ); - s.str(""); - parts.clear(); parts = {device->vendor(), device->model()}; if (multiple_dev) { @@ -244,17 +232,7 @@ void DeviceManager::build_display_name(shared_ptr device) parts.push_back("("+device->connection_id()+")"); } - for (size_t i = 0; i < parts.size(); i++) - { - if (parts[i].length() > 0) - { - if (i != 0) - s << " "; - s << parts[i]; - } - } - - display_names_[device] = s.str(); + display_names_[device] = join(parts, " "); } const std::string DeviceManager::get_display_name(std::shared_ptr dev) -- 2.30.2