GM6000 Digital Heater Controller Branch: main
SDX-1330
StreamPool.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Socket_StreamPool_h_
2#define Cpl_Io_Socket_StreamPool_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
17#include "Cpl/Memory/SPool.h"
18#include <new>
19
20
21
22///
23namespace Cpl {
24///
25namespace Io {
26///
27namespace Socket {
28
29
30/** This concrete template class implement a socket factory that is
31 capable of creating N concurrently opened socket streams.
32 */
33template <int N>
35 public Cpl::Memory::SPool<Cpl::Io::Socket::InputOutput, N>
36{
37public:
38 /// Constructor. When 'fatalErrors' is true, out-of-memory conditions will be FatalErrors.
39 StreamPool( bool fatalErrors = true );
40
41
42public:
43 /// See Cpl::Io::Socket::Factory
45
46 /// See Cpl::Io::Socket::Factory
47 void destory( Cpl::Io::Socket::InputOutput& socketStream );
48
49};
50
51
52/////////////////////////////////////////////////////////////////////////////
53// INLINE IMPLEMENTAION
54/////////////////////////////////////////////////////////////////////////////
55template <int N>
56StreamPool<N>::StreamPool( bool fatalErrors )
57 :Cpl::Memory::SPool<Cpl::Io::Socket::InputOutput, N>( fatalErrors )
58{
59}
60
61
62template <int N>
64{
65 void* memPtr = allocate( sizeof( Cpl::Io::Socket::InputOutput ) );
66 if ( ptr )
67 {
68 return new( memPtr ) Cpl::Io::Socket::InputOutput();
69 }
70
71 return 0;
72}
73
74template <int N>
76{
77 // Explicitly call the destructor
78 socketStream.~InputOutput();
79
80 // Free the memory back to the pool.
81 release( &socketStream );
82}
83
84
85
86}; // end namespaces
87};
88};
89#endif // end header latch
This abstract class defines an interface for a Socket factory.
Definition Factory.h:31
This concrete class provides a platform independent 'standard' implementation of an InputOutput strea...
Definition InputOutput.h:31
~InputOutput(void)
Destructor.
This concrete template class implement a socket factory that is capable of creating N concurrently op...
Definition StreamPool.h:36
StreamPool(bool fatalErrors=true)
Constructor. When 'fatalErrors' is true, out-of-memory conditions will be FatalErrors.
Definition StreamPool.h:56
void destory(Cpl::Io::Socket::InputOutput &socketStream)
See Cpl::Io::Socket::Factory.
Definition StreamPool.h:75
Cpl::Io::Socket::InputOutput * create()
See Cpl::Io::Socket::Factory.
Definition StreamPool.h:63
This template class defines a concrete Allocator that STATICALLY allocates all of its Memory and can ...
Definition SPool.h:50
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20