summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS3/small/SS_Service_Handler.h
blob: a7e49ba2d8dfbe477ee25f6adf3be4a4102e4391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* -*- c++ -*- */
#ifndef TERA_SS_SERVICE_HANDLER_H
#define TERA_SS_SERVICE_HANDLER_H

#include "ace/Synch.h"
#include "ace/Acceptor.h"
#include "ace/Svc_Handler.h"
#include "ace/SOCK_Acceptor.h"
#include "ace/svc_export.h"

#include "jaws3/Protocol_Handler.h"

#include "SS_Data.h"

class TeraSS_Service_Handler
  : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
  , public JAWS_Protocol_Handler
// = TITLE
//     The Small Server service handler.
//
// = DESCRIPTION
//     This class is responsible for initializing the JAWS_Protocol_Handler
//     with the correct state and data so that the Small Server can
//     be properly serviced by the underlying framework.
//
//     This class should perhaps be factored out into a template so that
//     there is less programming effort.
{
public:

  TeraSS_Service_Handler (void);

  int open (void *);

  int close (unsigned long);

private:

  TeraSS_Data data_;

};

class ACE_Svc_Export TeraSS_Acceptor
  : public ACE_Acceptor<TeraSS_Service_Handler, ACE_SOCK_ACCEPTOR>
// = TITLE
//     The Small Server acceptor.
//
// = DESCRIPTION
//     The role of this class is to serve the acceptor role in the
//     acceptor pattern.  It interacts with the Reactor to perform
//     accepts asynchronously.  Upon completion, the service handler
//     is created.
{
public:

  int init (int argc, ACE_TCHAR *argv[]);

};

ACE_SVC_FACTORY_DECLARE (TeraSS_Acceptor)

#endif /* TERA_SS_SERVICE_HANDLER_H */