* fix [GAM-28] problems in routingsender.cpp
authorchristian mueller <christian.ei.mueller@bmw.de>
Thu, 1 Mar 2012 18:12:55 +0000 (19:12 +0100)
committerchristian mueller <christian.ei.mueller@bmw.de>
Thu, 1 Mar 2012 18:12:55 +0000 (19:12 +0100)
commitdfcafbec34e0e454d9995551998af5d40a27c7ad
treed93d70fea7feb7004f6a2ce9bfce9b83d3469e42
parentffccf1e2003cea4230413ccfdfd4cd6515484e4f
* fix [GAM-28] problems in routingsender.cpp
* [GAM-27] major refactoring: bringing everything to standardized names
* Enhancement of CAmSerializer.h
* improvement of documentation
* adoption & regeneration of inerfaces
116 files changed:
AudioManagerDaemon/CMakeLists.txt
AudioManagerDaemon/include/CAmCommandReceiver.h [moved from AudioManagerDaemon/include/CommandReceiver.h with 84% similarity]
AudioManagerDaemon/include/CAmCommandSender.h [moved from AudioManagerDaemon/include/CommandSender.h with 88% similarity]
AudioManagerDaemon/include/CAmControlReceiver.h [moved from AudioManagerDaemon/include/ControlReceiver.h with 91% similarity]
AudioManagerDaemon/include/CAmControlSender.h [moved from AudioManagerDaemon/include/ControlSender.h with 94% similarity]
AudioManagerDaemon/include/CAmDatabaseHandler.h [moved from AudioManagerDaemon/include/DatabaseHandler.h with 97% similarity]
AudioManagerDaemon/include/CAmDatabaseObserver.h [moved from AudioManagerDaemon/include/DatabaseObserver.h with 86% similarity]
AudioManagerDaemon/include/CAmRouter.h [moved from AudioManagerDaemon/include/Router.h with 74% similarity]
AudioManagerDaemon/include/CAmRoutingReceiver.h [moved from AudioManagerDaemon/include/RoutingReceiver.h with 85% similarity]
AudioManagerDaemon/include/CAmRoutingSender.h [moved from AudioManagerDaemon/include/RoutingSender.h with 89% similarity]
AudioManagerDaemon/include/CAmTelnetMenuHelper.h
AudioManagerDaemon/include/CAmTelnetServer.h [moved from AudioManagerDaemon/include/TelnetServer.h with 73% similarity]
AudioManagerDaemon/include/DAmDoxygenMainPage.h [moved from AudioManagerDaemon/include/mainpage.h with 98% similarity]
AudioManagerDaemon/include/TAmPluginTemplate.h [moved from AudioManagerDaemon/include/PluginTemplate.h with 98% similarity]
AudioManagerDaemon/src/CAmCommandReceiver.cpp [moved from AudioManagerDaemon/src/CommandReceiver.cpp with 68% similarity]
AudioManagerDaemon/src/CAmCommandSender.cpp [moved from AudioManagerDaemon/src/CommandSender.cpp with 72% similarity]
AudioManagerDaemon/src/CAmControlReceiver.cpp [moved from AudioManagerDaemon/src/ControlReceiver.cpp with 51% similarity]
AudioManagerDaemon/src/CAmControlSender.cpp [moved from AudioManagerDaemon/src/ControlSender.cpp with 57% similarity]
AudioManagerDaemon/src/CAmDatabaseHandler.cpp [moved from AudioManagerDaemon/src/DatabaseHandler.cpp with 92% similarity]
AudioManagerDaemon/src/CAmDatabaseObserver.cpp [new file with mode: 0644]
AudioManagerDaemon/src/CAmDbusWrapper.cpp [moved from AudioManagerDaemon/src/DBusWrapper.cpp with 66% similarity]
AudioManagerDaemon/src/CAmDltWrapper.cpp [moved from AudioManagerDaemon/src/DLTWrapper.cpp with 79% similarity]
AudioManagerDaemon/src/CAmRouter.cpp [moved from AudioManagerDaemon/src/Router.cpp with 84% similarity]
AudioManagerDaemon/src/CAmRoutingReceiver.cpp [moved from AudioManagerDaemon/src/RoutingReceiver.cpp with 63% similarity]
AudioManagerDaemon/src/CAmRoutingSender.cpp [moved from AudioManagerDaemon/src/RoutingSender.cpp with 72% similarity]
AudioManagerDaemon/src/CAmSocketHandler.cpp [moved from AudioManagerDaemon/src/SocketHandler.cpp with 88% similarity]
AudioManagerDaemon/src/CAmTelnetMenuHelper.cpp
AudioManagerDaemon/src/CAmTelnetServer.cpp [moved from AudioManagerDaemon/src/TelnetServer.cpp with 84% similarity]
AudioManagerDaemon/src/DatabaseObserver.cpp [deleted file]
AudioManagerDaemon/src/main.cpp
AudioManagerDaemon/test/AmControlInterfaceTest/CAmControlInterfaceTest.cpp [moved from AudioManagerDaemon/test/controlInterface/controlInterfaceTest.cpp with 95% similarity]
AudioManagerDaemon/test/AmControlInterfaceTest/CAmControlInterfaceTest.h [moved from AudioManagerDaemon/test/controlInterface/controlInterfaceTest.h with 69% similarity]
AudioManagerDaemon/test/AmControlInterfaceTest/CMakeLists.txt [moved from AudioManagerDaemon/test/controlInterface/CMakeLists.txt with 82% similarity]
AudioManagerDaemon/test/AmDatabaseHandlerTest/CAmDatabaseHandlerTest.cpp [moved from AudioManagerDaemon/test/database/databaseTest.cpp with 94% similarity]
AudioManagerDaemon/test/AmDatabaseHandlerTest/CAmDatabaseHandlerTest.h [moved from AudioManagerDaemon/test/database/databaseTest.h with 75% similarity]
AudioManagerDaemon/test/AmDatabaseHandlerTest/CMakeLists.txt [moved from AudioManagerDaemon/test/database/CMakeLists.txt with 82% similarity]
AudioManagerDaemon/test/AmRouterTest/CAmRouterTest.cpp [moved from AudioManagerDaemon/test/routing/routingTest.cpp with 98% similarity]
AudioManagerDaemon/test/AmRouterTest/CAmRouterTest.h [moved from AudioManagerDaemon/test/routing/routingTest.h with 74% similarity]
AudioManagerDaemon/test/AmRouterTest/CMakeLists.txt [moved from AudioManagerDaemon/test/routing/CMakeLists.txt with 83% similarity]
AudioManagerDaemon/test/AmRoutingInterfaceTest/CAmRoutingInterfaceTest.cpp [moved from AudioManagerDaemon/test/routingInterface/routingInterfaceTest.cpp with 94% similarity]
AudioManagerDaemon/test/AmRoutingInterfaceTest/CAmRoutingInterfaceTest.h [moved from AudioManagerDaemon/test/routingInterface/routingInterfaceTest.h with 77% similarity]
AudioManagerDaemon/test/AmRoutingInterfaceTest/CMakeLists.txt [moved from AudioManagerDaemon/test/routingInterface/CMakeLists.txt with 82% similarity]
AudioManagerDaemon/test/AmSocketHandlerTest/CAmSocketHandlerTest.cpp [moved from AudioManagerDaemon/test/sockethandler/sockethandlerTest.cpp with 80% similarity]
AudioManagerDaemon/test/AmSocketHandlerTest/CAmSocketHandlerTest.h [moved from AudioManagerDaemon/test/sockethandler/sockethandlerTest.h with 80% similarity]
AudioManagerDaemon/test/AmSocketHandlerTest/CMakeLists.txt [moved from AudioManagerDaemon/test/sockethandler/CMakeLists.txt with 87% similarity]
AudioManagerDaemon/test/AmTelnetServerTest/CAmTelnetServerTest.cpp [moved from AudioManagerDaemon/test/telnetserver/CAmTelnetServerTest.cpp with 78% similarity]
AudioManagerDaemon/test/AmTelnetServerTest/CAmTelnetServerTest.h [new file with mode: 0644]
AudioManagerDaemon/test/AmTelnetServerTest/CMakeLists.txt [moved from AudioManagerDaemon/test/telnetserver/CMakeLists.txt with 79% similarity]
AudioManagerDaemon/test/CAmCommonFunctions.cpp [moved from AudioManagerDaemon/test/CommonFunctions.cpp with 83% similarity]
AudioManagerDaemon/test/CAmCommonFunctions.h [moved from AudioManagerDaemon/test/CommonFunctions.h with 98% similarity]
AudioManagerDaemon/test/CMakeLists.txt
AudioManagerDaemon/test/IAmCommandBackdoor.h [moved from AudioManagerDaemon/test/CommandInterfaceBackdoor.h with 86% similarity]
AudioManagerDaemon/test/IAmControlBackdoor.h [moved from AudioManagerDaemon/test/ControlInterfaceBackdoor.h with 89% similarity]
AudioManagerDaemon/test/IAmRoutingBackdoor.h [moved from AudioManagerDaemon/test/RoutingInterfaceBackdoor.h with 87% similarity]
AudioManagerDaemon/test/MockIAmCommandSend.h [new file with mode: 0644]
AudioManagerDaemon/test/MockIAmControlSend.h [new file with mode: 0644]
AudioManagerDaemon/test/MockIAmRoutingSend.h [moved from AudioManagerDaemon/test/routingInterface/MockRoutingInterface.h with 96% similarity]
AudioManagerDaemon/test/controlInterface/MockInterfaces.h [deleted file]
AudioManagerDaemon/test/database/MockInterfaces.h [deleted file]
AudioManagerDaemon/test/routing/MockInterfaces.h [deleted file]
AudioManagerDaemon/test/telnetserver/CAmTelnetServerTest.h [deleted file]
CMakeLists.txt
PluginCommandInterfaceDbus/CMakeLists.txt
PluginCommandInterfaceDbus/include/CAmCommandSenderDbus.h [moved from PluginCommandInterfaceDbus/include/DBusCommandSender.h with 72% similarity]
PluginCommandInterfaceDbus/include/CAmDbusMessageHandler.h [moved from PluginCommandInterfaceDbus/include/DBusMessageHandler.h with 95% similarity]
PluginCommandInterfaceDbus/include/CommandInterface.xml [moved from includes/dbus/CommandInterface.xml with 100% similarity]
PluginCommandInterfaceDbus/include/IAmCommandReceiverShadow.h [moved from PluginCommandInterfaceDbus/include/CommandReceiverShadow.h with 90% similarity]
PluginCommandInterfaceDbus/include/mainpage.h [deleted file]
PluginCommandInterfaceDbus/src/CAmCommandSenderDbus.cpp [new file with mode: 0644]
PluginCommandInterfaceDbus/src/CAmDbusMessageHandler.cpp [moved from PluginCommandInterfaceDbus/src/DBusMessageHandler.cpp with 89% similarity]
PluginCommandInterfaceDbus/src/DBusCommandSender.cpp [deleted file]
PluginCommandInterfaceDbus/src/IAmCommandReceiverShadow.cpp [moved from PluginCommandInterfaceDbus/src/CommandReceiverShadow.cpp with 57% similarity]
PluginCommandInterfaceDbus/test/CAmCommandSenderDbusBackdoor.cpp [moved from PluginCommandInterfaceDbus/test/DbusCommandInterfaceBackdoor.cpp with 78% similarity]
PluginCommandInterfaceDbus/test/CAmCommandSenderDbusBackdoor.h [moved from PluginCommandInterfaceDbus/test/DbusCommandInterfaceBackdoor.h with 81% similarity]
PluginCommandInterfaceDbus/test/CAmCommandSenderDbusSignalTest.cpp [moved from PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.cpp with 74% similarity]
PluginCommandInterfaceDbus/test/CAmCommandSenderDbusSignalTest.h [moved from PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.h with 90% similarity]
PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp [moved from PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.cpp with 88% similarity]
PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.h [moved from PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.h with 86% similarity]
PluginCommandInterfaceDbus/test/CMakeLists.txt
PluginCommandInterfaceDbus/test/MockIAmCommandReceive.h [new file with mode: 0644]
PluginCommandInterfaceDbus/test/MockInterfaces.h [deleted file]
PluginControlInterface/CMakeLists.txt
PluginControlInterface/include/CAmControlSenderBase.h [moved from PluginControlInterface/include/ControlSender.h with 96% similarity]
PluginControlInterface/src/CAmControlSenderBase.cpp [moved from PluginControlInterface/src/ControlSender.cpp with 69% similarity]
PluginRoutingInterfaceAsync/CMakeLists.txt
PluginRoutingInterfaceAsync/include/CAmRoutingSenderAsync.h [moved from PluginRoutingInterfaceAsync/include/RoutingSenderAsyn.h with 73% similarity]
PluginRoutingInterfaceAsync/include/IAmRoutingReceiverShadow.h [moved from PluginRoutingInterfaceAsync/include/RoutingReceiverAsyncShadow.h with 92% similarity]
PluginRoutingInterfaceAsync/src/CAmRoutingSenderAsync.cpp [moved from PluginRoutingInterfaceAsync/src/RoutingSenderAsync.cpp with 68% similarity]
PluginRoutingInterfaceAsync/src/IAmRoutingReceiverShadow.cpp [new file with mode: 0644]
PluginRoutingInterfaceAsync/src/RoutingReceiverAsyncShadow.cpp [deleted file]
PluginRoutingInterfaceAsync/test/CAmRoutingReceiverAsync.cpp [moved from PluginRoutingInterfaceAsync/test/testRoutingInterfaceAsync.cpp with 84% similarity]
PluginRoutingInterfaceAsync/test/CAmRoutingReceiverAsync.h [moved from PluginRoutingInterfaceAsync/test/testRoutingInterfaceAsync.h with 87% similarity]
PluginRoutingInterfaceAsync/test/CMakeLists.txt
PluginRoutingInterfaceAsync/test/MockIAmRoutingReceive.h [new file with mode: 0644]
PluginRoutingInterfaceAsync/test/mocklnterfaces.h [deleted file]
PluginRoutingInterfaceAsync/test/testRoutingInterfaceAsyncInterrupt.cpp [deleted file]
PluginRoutingInterfaceDbus/CMakeLists.txt
PluginRoutingInterfaceDbus/include/CAmRoutingSenderDbus.h [moved from PluginRoutingInterfaceDbus/include/RoutingSender.h with 94% similarity]
PluginRoutingInterfaceDbus/src/CAmRoutingSenderDbus.cpp [moved from PluginRoutingInterfaceDbus/src/RoutingSender.cpp with 61% similarity]
cmake/AudioManagerCodestyle.xml [moved from cmake/AudioManager_Codestyle.xml with 100% similarity]
cmake/FindDBUS.cmake
cmake/config.cmake
include/audiomanagertypes.h [moved from includes/audiomanagertypes.h with 88% similarity]
include/command/IAmCommandReceive.h [moved from includes/command/CommandReceiveInterface.h with 94% similarity]
include/command/IAmCommandSend.h [moved from includes/command/CommandSendInterface.h with 93% similarity]
include/control/IAmControlReceive.h [moved from includes/control/ControlReceiveInterface.h with 98% similarity]
include/control/IAmControlSend.h [moved from includes/control/ControlSendInterface.h with 96% similarity]
include/projecttypes.h [moved from includes/projecttypes.h with 89% similarity]
include/routing/IAmRoutingReceive.h [moved from includes/routing/RoutingReceiveInterface.h with 96% similarity]
include/routing/IAmRoutingSend.h [moved from includes/routing/RoutingSendInterface.h with 93% similarity]
include/shared/CAmDbusWrapper.h [new file with mode: 0644]
include/shared/CAmDltWrapper.h [moved from includes/DLTWrapper.h with 61% similarity]
include/shared/CAmSerializer.h [moved from includes/CAmSerializer.h with 98% similarity]
include/shared/CAmSocketHandler.h [new file with mode: 0644]
includes/SocketHandler.h [deleted file]
includes/dbus/DBusWrapper.h [deleted file]