summaryrefslogtreecommitdiff
path: root/apps/drwho/SM_Client.cpp
blob: 48bca11b7e38b97164efd424664b9a2dd251e7a3 (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
63
64
65
66
67
68
69
70
71
72
73
74
// $Id$

#include "Options.h"
#include "PMC_All.h"
#include "PMC_Flo.h"
#include "PMC_Usr.h"
#include "PMC_Ruser.h"
#include "SM_Client.h"
#include "ace/Log_Msg.h"

// Call-back function that invokes the appropriate decode function.

int 
SM_Client::demux (char *packet,
                  int &packet_length)
{
  if (this->pm_client->decode (packet, packet_length) < 0)
    return -1;
  else
    return 1;
}

// Call-back function that invokes the appropriate encode function.

int 
SM_Client::mux (char *packet, int &packet_length)
{
  switch (Options::protocol_type)
    {
    case Options::PROTO_USR:
      ACE_NEW_RETURN (this->pm_client,
                      PMC_Usr (Options::user_name),
                      -1);
      break;
    case Options::PROTO_ALL:
      ACE_NEW_RETURN (this->pm_client,
                      PMC_All,
                      -1);
      break;
    case Options::PROTO_FLO:
      ACE_NEW_RETURN (this->pm_client,
                      PMC_Flo,
                      -1);
      break;
    case Options::PROTO_RUSER:
      ACE_NEW_RETURN (this->pm_client,
                      PMC_Ruser,
                      -1);
      break;
    default:
      ACE_DEBUG ((LM_DEBUG, 
                  "%s: bad protocol\n",
                  Options::program_name));
      return -1;
    }
  
  if (this->pm_client->encode (packet, packet_length) < 0)
    return -1;
  return 1;
}

SM_Client::SM_Client (void)
{
}

SM_Client::~SM_Client (void)
{
}

void
SM_Client::process (void)
{
  this->pm_client->process ();
}