summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevron Rees <kevron.m.rees@intel.com>2013-11-08 11:55:55 -0800
committerKevron Rees <kevron.m.rees@intel.com>2013-11-08 14:55:29 -0800
commitc15ae7a6dd8fc8b8e104452d7521b5488d4c92bb (patch)
treeae508178eeb68f7cac0914fc6ee707c06ac26983
parent9b611fe5c1927e1ef0feb6ec126f4e5c24768a44 (diff)
downloadautomotive-message-broker-c15ae7a6dd8fc8b8e104452d7521b5488d4c92bb.tar.gz
fixed missing symbol in websocket source plugin
-rw-r--r--TODO1
-rw-r--r--plugins/dbus/abstractdbusinterface.cpp2
-rw-r--r--plugins/websocketsourceplugin/websocketsource.cpp6
3 files changed, 9 insertions, 0 deletions
diff --git a/TODO b/TODO
index 38cd7221..f3b25d60 100644
--- a/TODO
+++ b/TODO
@@ -5,6 +5,7 @@ For 0.11
- Implement all the DBus properties in the docs/ directory.
- update json protocol to include getPropertyInfo calls
- update json protocol to support rangerequests with PropertyList instead of a signel property (Verify)
+- update json protocol to support zones
- update database to support zone column
- general support for source and zone filtering in database plugin
- no reason for pluginloader to track sources. core already does it.
diff --git a/plugins/dbus/abstractdbusinterface.cpp b/plugins/dbus/abstractdbusinterface.cpp
index 13abb4e2..bced578b 100644
--- a/plugins/dbus/abstractdbusinterface.cpp
+++ b/plugins/dbus/abstractdbusinterface.cpp
@@ -377,6 +377,8 @@ void AbstractDBusInterface::startRegistration()
GVariant* AbstractDBusInterface::getProperty(GDBusConnection* connection, const gchar* sender, const gchar* objectPath, const gchar* interfaceName, const gchar* propertyName, GError** error, gpointer userData)
{
+ DebugOut(6)<<"getProperty call from: "<<sender<<endl;
+
std::string pn = propertyName;
if(pn == "Time")
{
diff --git a/plugins/websocketsourceplugin/websocketsource.cpp b/plugins/websocketsourceplugin/websocketsource.cpp
index 76a94759..58958df6 100644
--- a/plugins/websocketsourceplugin/websocketsource.cpp
+++ b/plugins/websocketsourceplugin/websocketsource.cpp
@@ -126,6 +126,12 @@ void WebSocketSource::setConfiguration(map<string, string> config)
}
+
+PropertyInfo WebSocketSource::getPropertyInfo(VehicleProperty::Property property)
+{
+ return PropertyInfo::invalid();
+}
+
bool gioPollingFunc(GIOChannel *source, GIOCondition condition, gpointer data)
{
//This is the polling function. If it return false, glib will stop polling this FD.