]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Service.hh
the massive refactoring effort
[chaz/yoink] / src / Moof / Service.hh
diff --git a/src/Moof/Service.hh b/src/Moof/Service.hh
deleted file mode 100644 (file)
index 570a230..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-
-/*]  Copyright (c) 2009-2010, Charles McGarvey  [**************************
-**]  All rights reserved.
-*
-* vi:ts=4 sw=4 tw=75
-*
-* Distributable under the terms and conditions of the 2-clause BSD license;
-* see the file COPYING for a complete text of the license.
-*
-**************************************************************************/
-
-/**
- * \file Service.hh
- * Classes for publishing and finding network services.
- */
-
-#ifndef _MOOF_SERVICE_HH_
-#define _MOOF_SERVICE_HH_
-
-#include <map>
-
-#include <Moof/Math.hh>
-#include <Moof/Socket.hh>
-
-
-namespace Mf {
-
-
-/**
- * Class representing a network service.
- */
-class Service
-{
-public:
-
-       /**
-        * Construct a network service with an explicit type.
-        * \param address The address of the host.
-        * \param type The type of service.
-        * \param name The service name.
-        * \param text The service information.
-        */
-       Service(const SocketAddress& address,
-                       const std::string& type,
-                       const std::string& name,
-                       const std::string& text);
-
-       /**
-        * Construct a network service.  The type of service will be inferred
-        * from the address.
-        * \param address The address of the host.
-        * \param name The service name.
-        * \param text The service information.
-        */
-       Service(const SocketAddress& address,
-                       const std::string& name,
-                       const std::string& text);
-
-
-       /**
-        * Publish the service on the network.
-        */
-       void publish();
-
-       /**
-        * Stop publishing the service on the network.
-        */
-       void stop();
-
-
-       /**
-        * Get the host address.
-        * \return The address.
-        */
-       const SocketAddress& address() const
-       {
-               return mAddress;
-       }
-
-       /**
-        * Get the type of the service.
-        * \return The service type.
-        */
-       const std::string& type() const
-       {
-               return mType;
-       }
-
-       /**
-        * Get the service name.
-        * \return The service name.
-        */
-       const std::string& name() const
-       {
-               return mName;
-       }
-
-       /**
-        * Get the service information.
-        * \return The service information as a string.
-        */
-       const std::string& text() const
-       {
-               return mText;
-       }
-
-
-       ~Service();
-
-
-private:
-
-       int handlePacket(SocketMultiplexer& mux,
-                                        Packet& packet,
-                                        const SocketAddress& address);
-
-       SocketAddress   mAddress;
-       std::string             mType;
-       std::string             mName;
-       std::string             mText;
-};
-
-
-class ServiceFinder
-{
-public:
-
-       /**
-        * Construct a service finder to find services of the same type as an
-        * address.
-        * \address The address.
-        */
-       explicit ServiceFinder(const SocketAddress& address);
-
-       /**
-        * Construct a service finder to find services of a certain type.
-        * \param type The type of the service.
-        * \param sockType The type of socket.
-        */
-       explicit ServiceFinder(const std::string& type,
-                                                  int sockType = SOCK_STREAM);
-
-
-       const std::map<std::string,Service>& services() const
-       {
-               return mServices;
-       }
-
-
-private:
-
-       int handlePacket(SocketMultiplexer& mux,
-                                        Packet& packet,
-                                        const SocketAddress& address);
-
-       std::string                                             mType;
-       std::map<std::string,Service>   mServices;
-};
-
-
-} // namespace Mf
-
-#endif // _MOOF_SERVICE_HH_
-
This page took 0.018142 seconds and 4 git commands to generate.