/*MT* MediaTomb - http://www.mediatomb.cc/ upnp_cm.h - this file is part of MediaTomb. Copyright (C) 2005 Gena Batyan , Sergey 'Jin' Bostandzhyan Copyright (C) 2006-2007 Gena Batyan , Sergey 'Jin' Bostandzhyan , Leonhard Wimmer MediaTomb is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. MediaTomb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License version 2 along with MediaTomb; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. $Id: upnp_cm.h 1124 2007-02-17 21:49:15Z lww $ */ /// \file upnp_cm.h /// \brief Definition of the ConnectionManagerService class. #ifndef __UPNP_CM_H__ #define __UPNP_CM_H__ #include "common.h" #include "singleton.h" #include "action_request.h" #include "subscription_request.h" #include "upnp_xml.h" /// \brief This class is responsible for the UPnP Connection Manager Service operations. /// /// Handles subscription and action invocation requests for the Connection Manager. class ConnectionManagerService : public Singleton { protected: /// \brief UPnP standard defined service type /// \todo Check if it makes sense to use it as it is done now...why not define constants here? static zmm::String serviceType; /// \brief ID of the service. static zmm::String serviceID; /// \brief UPnP standard defined action: GetCurrentConnectionIDs() /// \param request Incoming ActionRequest. /// /// GetCurrentConnectionIDs(string ConnectionIDs) /// /// This is currently unsupported (returns empty string) void upnp_action_GetCurrentConnectionIDs(zmm::Ref request); /// \brief UPnP standard defined action: GetCurrentConnectionInfo() /// \param request Incoming ActionRequest. /// /// GetCurrentConnectionInfo(i4 ConnectoinID, i4 RcsID, i4 AVTransportID, string ProtocolInfo, /// string PeerConnectionManager, i4 PeerConnectionID, string Direction, string Status) /// /// This action is currently unsupported. void upnp_action_GetCurrentConnectionInfo(zmm::Ref request); /// \brief UPnP standard defined action: GetProtocolInfo() /// \param request Incoming ActionRequest. /// /// GetProtocolInfo(string Source, string Sink) void upnp_action_GetProtocolInfo(zmm::Ref request); public: /// \brief Constructor for the CMS, saves the service type and service id /// in internal variables. /// \todo Check if it makes sense to use it as it is done now...why not define them as constants? ConnectionManagerService(); virtual ~ConnectionManagerService(); static void setStaticArgs(zmm::String serviceType, zmm::String serviceID); /// \brief Dispatches the ActionRequest between the available actions. /// \param request Incoming ActionRequest. /// /// This function looks at the incoming ActionRequest and passes it on /// to the appropriate action for processing. void process_action_request(zmm::Ref request); /// \brief Processes an incoming SubscriptionRequest. /// \param request Incoming SubscriptionRequest. /// /// Looks at the incoming SubscriptionRequest and accepts the subscription /// if everything is ok. void process_subscription_request(zmm::Ref request); /// \brief Sends out an event to all subscribed devices. /// \param sourceProtocol_CSV Comma Separated Value list of protocol information /// /// Sends out an update with protocol information to all subscribed devices void subscription_update(zmm::String sourceProtocol_CSV); }; #endif // __UPNP_CM_H__