GM6000 Digital Heater Controller Branch: main
SDX-1330
Factory.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_Factory_h_
2#define Cpl_Io_Socket_Factory_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Cpl/Io/Descriptor.h"
17
18
19///
20namespace Cpl {
21///
22namespace Io {
23///
24namespace Socket {
25
26
27/** This abstract class defines an interface for a Socket factory. This
28 class will create/destroy socket InputOutput streams.
29 */
31{
32public:
33 /** This method creates an 'unactivated' Socket InputOutput stream from the
34 supplied socket descriptor. If there is an error (e.g. out-of-memory,
35 invalid socket, etc.) then a null pointer is returned. The caller is
36 responsible for calling destroy() method once it is done with socket
37 stream.
38 */
40
41
42 /** This method destroys an previously created socket InputOutput stream.
43 The application is responsible for ensuing that ONLY InputOutput streams
44 that where create using this factory are destroyed be this factory.
45 */
46 virtual void destory( Cpl::Io::Socket::InputOutput& socketStream ) = 0;
47
48
49public:
50 /// Virtual destructor
51 virtual ~Factory() {}
52};
53
54
55}; // end namespaces
56};
57};
58#endif // end header latch
This abstract class defines an interface for a Socket factory.
Definition Factory.h:31
virtual Cpl::Io::Socket::InputOutput * create()=0
This method creates an 'unactivated' Socket InputOutput stream from the supplied socket descriptor.
virtual void destory(Cpl::Io::Socket::InputOutput &socketStream)=0
This method destroys an previously created socket InputOutput stream.
virtual ~Factory()
Virtual destructor.
Definition Factory.h:51
This concrete class provides a platform independent 'standard' implementation of an InputOutput strea...
Definition InputOutput.h:31
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20