]> sigrok.org Git - pulseview.git/commitdiff
DeviceManager: Use boost::algorithm::string::join to do concatenation
authorJoel Holdsworth <redacted>
Sat, 13 Dec 2014 10:13:42 +0000 (10:13 +0000)
committerJoel Holdsworth <redacted>
Sat, 13 Dec 2014 10:13:42 +0000 (10:13 +0000)
pv/devicemanager.cpp

index df0b055caa7dc849a5fa12b1278edeba8e6cb270..7cb90bb8b9b8d9a964883b6f53d31c93071bbf3b 100644 (file)
 
 #include <libsigrok/libsigrok.hpp>
 
+#include <boost/algorithm/string/join.hpp>
 #include <boost/filesystem.hpp>
 
+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> device)
                return;
        }
 
-       ostringstream s;
-
        // First, build the device's full name. It always contains all
        // possible information.
        vector<string> parts = {device->vendor(), device->model(),
@@ -206,17 +206,7 @@ void DeviceManager::build_display_name(shared_ptr<Device> 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> 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> 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<sigrok::Device> dev)