X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevicemanager.cpp;h=7cb90bb8b9b8d9a964883b6f53d31c93071bbf3b;hp=df0b055caa7dc849a5fa12b1278edeba8e6cb270;hb=88fc05658247e71b8a3bfa8871d74bf923026f73;hpb=602bff3a242a92f74a04ed972082ec740f5cd093 diff --git a/pv/devicemanager.cpp b/pv/devicemanager.cpp index df0b055..7cb90bb 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)