From 62e24f984f9668598a3c1dea6dc5049af2b274db Mon Sep 17 00:00:00 2001 From: fgerlits Date: Thu, 25 Jan 2007 16:53:28 +0000 Subject: [PATCH] made the serial device configurable (part of #722) --- .../products/gLiveSupport/etc/campcaster-studio.xml | 12 ++++++++++++ .../gLiveSupport/etc/campcaster-studio.xml.template | 12 ++++++++++++ .../etc/campcaster-studio.xml.user-template | 12 ++++++++++++ .../src/products/gLiveSupport/src/GLiveSupport.cxx | 13 ++++++++++--- 4 files changed, 46 insertions(+), 3 deletions(-) diff --git a/campcaster/src/products/gLiveSupport/etc/campcaster-studio.xml b/campcaster/src/products/gLiveSupport/etc/campcaster-studio.xml index 43bb4c646..93e878122 100644 --- a/campcaster/src/products/gLiveSupport/etc/campcaster-studio.xml +++ b/campcaster/src/products/gLiveSupport/etc/campcaster-studio.xml @@ -11,6 +11,9 @@ outputPlayer, cuePlayer, stationLogo, + taskbarIcons, + testAudioUrl, + serialPort, metadataTypeContainer, keyboardShortcutList) > @@ -92,9 +95,16 @@ + + + + + + + @@ -183,6 +193,8 @@ + + @@ -92,9 +95,16 @@ + + + + + + + @@ -182,6 +192,8 @@ + + @@ -92,9 +95,16 @@ + + + + + + + @@ -182,6 +192,8 @@ + + get_attribute("path") ->get_value() )); - // TODO: make this configurable - serialDevice.reset(new std::string(defaultSerialDevice)); + // read the serial port's file name + nodes = element.get_children(serialPortConfigElementName); + if (nodes.size() < 1) { + throw std::invalid_argument("no serial port element"); + } + const xmlpp::Element* serialPortElement + = dynamic_cast(nodes.front()); + serialDevice.reset(new std::string(serialPortElement->get_attribute("path") + ->get_value() )); }