summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/src
diff options
context:
space:
mode:
authorFrank Herchet <frank.fh.herchet@bmw.de>2012-02-23 10:21:53 +0100
committerFrank Herchet <frank.fh.herchet@bmw.de>2012-02-23 10:21:53 +0100
commit52debd1d4a8749c910c13bad9c8bd6ad3af76bb3 (patch)
tree25077e8892a313a0cd2f04c17b4ca0c5ae5439f4 /AudioManagerDaemon/src
parentfe6894713d4beb7c31dfd3ac08b3aa6fca6a1ca8 (diff)
downloadaudiomanager-52debd1d4a8749c910c13bad9c8bd6ad3af76bb3.tar.gz
[GAM-14] enable some asci colors
* use DLTWrapper for debug and error output
Diffstat (limited to 'AudioManagerDaemon/src')
-rw-r--r--AudioManagerDaemon/src/CAmTelnetMenuHelper.cpp28
1 files changed, 7 insertions, 21 deletions
diff --git a/AudioManagerDaemon/src/CAmTelnetMenuHelper.cpp b/AudioManagerDaemon/src/CAmTelnetMenuHelper.cpp
index aaea299..a3180f3 100644
--- a/AudioManagerDaemon/src/CAmTelnetMenuHelper.cpp
+++ b/AudioManagerDaemon/src/CAmTelnetMenuHelper.cpp
@@ -36,7 +36,6 @@
#include "DLTWrapper.h"
#include <cassert>
-#define DEBUG_ON false
static const std::string COLOR_WELCOME("\033[1;33m\033[44m");
static const std::string COLOR_HEAD("\033[1m\033[42m");
static const std::string COLOR_DEFAULT("\033[0m");
@@ -141,7 +140,7 @@ void CAmTelnetMenuHelper::newSocketConnection(int filedescriptor)
mCurrentMainStateMap.insert(it, std::make_pair<int, EMainState>(filedescriptor, state));
// Send welcome message
- welcome << COLOR_WELCOME << "Welcome to GENIVI AudioManager " << DAEMONVERSION << "\n>";
+ welcome << COLOR_WELCOME << "Welcome to GENIVI AudioManager " << DAEMONVERSION << COLOR_DEFAULT << "\n>";
send(filedescriptor, welcome.str().c_str(), welcome.str().size(), 0);
logInfo("[TN] New connection: ",filedescriptor);
}
@@ -296,8 +295,6 @@ void CAmTelnetMenuHelper::oneStepBackCommandExec(std::queue<std::string> & CmdQu
it = mCurrentMainStateMap.find(filedescriptor);
if (it != mCurrentMainStateMap.end())
{
- if (DEBUG_ON)
- std::cout << "old state: " << it->second;
switch (it->second)
{
case eRootState:
@@ -323,8 +320,8 @@ void CAmTelnetMenuHelper::oneStepBackCommandExec(std::queue<std::string> & CmdQu
it->second = eRootState;
break;
}
- if (DEBUG_ON)
- std::cout << "new state: " << it->second << std::endl;
+
+ logInfo("[TN] oneStepBackCommandExec, state: ",it->second);
}
}
@@ -352,8 +349,7 @@ void CAmTelnetMenuHelper::exitCommandExec(std::queue<std::string> & CmdQueue, in
it = mCurrentMainStateMap.find(filedescriptor);
if (it != mCurrentMainStateMap.end())
{
- if (DEBUG_ON)
- std::cout << "removing client connection " << filedescriptor << std::endl;
+ logInfo("[TN] exitCommandExec, mpTelenetServer == NULL, fd ",filedescriptor);
if (NULL != mpTelenetServer)
{
@@ -385,9 +381,9 @@ void CAmTelnetMenuHelper::helpCommandExec(std::queue<std::string> & CmdQueue, in
it = mCurrentMainStateMap.find(filedescriptor);
if (it != mCurrentMainStateMap.end())
{
- line << "###################################################" << std::endl;
- line << "###### The following commands are supported: ######" << std::endl;
- line << "###################################################" << std::endl << std::endl;
+ line << COLOR_HEAD << "###################################################" << COLOR_DEFAULT << std::endl;
+ line << COLOR_HEAD << "###### The following commands are supported: ######" << COLOR_DEFAULT << std::endl;
+ line << COLOR_HEAD << "###################################################" << COLOR_DEFAULT << std::endl << std::endl;
switch (it->second)
{
case eRootState:
@@ -849,9 +845,6 @@ void CAmTelnetMenuHelper::setRoutingCommandExec(std::queue<std::string> & CmdQue
return;
}
- if (DEBUG_ON)
- std::cout << "setRoutingCommandExec(sourceID: " << sourceID << ",sinkID: " << sinkID << ")" << std::endl;
-
std::vector<am_Route_s> routingList;
if (E_OK == mpRouter->getRoute(true, sourceID, sinkID, routingList))
{
@@ -902,12 +895,6 @@ void CAmTelnetMenuHelper::setConnection(std::queue<std::string> & CmdQueue, int
void CAmTelnetMenuHelper::setConnectionExec(std::queue<std::string> & CmdQueue, int & filedescriptor)
/****************************************************************************/
{
-
-
-
-
-
-
bool error = false;
am_Error_e rError = E_OK;
@@ -1187,7 +1174,6 @@ void CAmTelnetMenuHelper::listPluginsCommandExec(std::queue<std::string> & CmdQu
sendError(filedescriptor,"ERROR: mRoutingSender->getListPlugins");
}
-
sendTelnetLine(filedescriptor, output);
}