summaryrefslogtreecommitdiff
path: root/examples/Naming/test_open.cpp
blob: e4c7e59ae9891eab81642438a3635ad8010666be (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
75
76
77
// $Id$

#include "ace/Naming_Context.h"

ACE_RCSID(Naming, test_open, "$Id$")

int 
main (int argc, char **argv) 
{
  const char *host = argc > 1 ? argv[1] : "-hlocalhost";
  const char *port = argc > 2 ? argv[2] : "-p20012";

  ACE_Naming_Context ns;   
  ACE_Name_Options *name_options = ns.name_options ();
  
  const char *m_argv[] = 
  {
    "MyName", 
    "-cNET_LOCAL", 
    host, 
    port,  
    NULL 
  };
  int m_argc =
    sizeof (m_argv) / sizeof (char *) -1; 

  name_options->parse_args (m_argc,
                            (char **) m_argv);

  int result = ns.open (ACE_Naming_Context::NET_LOCAL); 
  ACE_DEBUG ((LM_DEBUG,
              "ACE_Naming_Context::open returned %d\n",
              result));
  if (result != 0)
    return result;
  else
    {
      char key[128];
      char val[32];
      char type[2];
      
      type[0] = '-';
      type[1] = '\0';
      
      int i = 0;

      for (int l = 1; l <= 1000 ; l++) 
        {
          ACE_OS::sprintf (key,
                           "K_%05d_%05d",
                           ACE_OS::getpid (),
                           l);
          ACE_OS::sprintf (val,
                           "Val%05d",
                           l);
          i = ns.bind (key,
                       val,
                       type);  
          ACE_DEBUG ((LM_DEBUG,
                      "%d: bind of %s: %d\n",
                      ACE_OS::getpid (),
                      key,
                      i));

          if (i != 0) 
            return -1;

        }
      
      result = ns.close ();
      ACE_DEBUG ((LM_DEBUG,
                  "ACE_Naming_Context::close returned %d\n",
                  result));
    }

  return result;
}