fixed missing symbol in websocket source plugin
authorKevron Rees <kevron.m.rees@intel.com>
Fri, 8 Nov 2013 19:55:55 +0000 (11:55 -0800)
committerKevron Rees <kevron.m.rees@intel.com>
Fri, 8 Nov 2013 22:55:29 +0000 (14:55 -0800)
TODO
plugins/dbus/abstractdbusinterface.cpp
plugins/websocketsourceplugin/websocketsource.cpp

diff --git a/TODO b/TODO
index 38cd722..f3b25d6 100644 (file)
--- 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.
index 13abb4e..bced578 100644 (file)
@@ -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")
        {
index 76a9475..58958df 100644 (file)
@@ -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.