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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
// $Id$
#include "tao/HTTP_Parser.h"
#if (TAO_HAS_HTTP_PARSER == 1)
#include "tao/HTTP_Client.h"
#include "tao/ORB.h"
#include "tao/Object.h"
#include "tao/SystemException.h"
#include "ace/Read_Buffer.h"
#include "ace/Malloc_Base.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_string.h"
#include "ace/CORBA_macros.h"
ACE_RCSID (tao,
HTTP_Parser,
"$Id$")
static const ACE_TCHAR file_prefix[] = ACE_TEXT ("http:");
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_HTTP_Parser::~TAO_HTTP_Parser (void)
{
}
bool
TAO_HTTP_Parser::match_prefix (const char *nior_string) const
{
const ACE_TCHAR *ior_string = ACE_TEXT_CHAR_TO_TCHAR (nior_string);
return (ACE_OS::strncmp (ior_string,
::file_prefix,
sizeof (::file_prefix) - 1) == 0);
}
CORBA::Object_ptr
TAO_HTTP_Parser::parse_string (const char *nior,
CORBA::ORB_ptr orb)
{
// Skip the prefix, we know it is there because this method in only
// called if <match_prefix> returns 1.
const ACE_TCHAR *ior = ACE_TEXT_CHAR_TO_TCHAR (nior);
const ACE_TCHAR *http_url =
ior + sizeof (::file_prefix) + 1;
ACE_TCHAR *hostname = 0;
ACE_TCHAR *filename = 0;
const ACE_TCHAR *ptr = 0;
u_short port = 80;
if (http_url[0] == '/')
{
filename = ACE_OS::strdup (http_url);
}
else
{
ptr = ACE_OS::strstr (http_url, ACE_TEXT (":"));
if (ptr)
port = ACE_OS::atoi (ptr + 1);
else
ptr = ACE_OS::strstr (http_url, ACE_TEXT ("/"));
if(!ptr)
return 0;
else
{
size_t const host_len = ptr - http_url;
ACE_NEW_RETURN (hostname, ACE_TCHAR [host_len + 1], 0 );
ACE_OS::strncpy (hostname, http_url, host_len);
hostname [host_len] = '\0';
ptr = ACE_OS::strstr (ptr, ACE_TEXT ("/"));
if (ptr)
{
filename = ACE_OS::strdup(ptr);
}
else
return 0;
}
}
ACE_Message_Block* mb = 0;
ACE_NEW_THROW_EX (mb,
ACE_Message_Block (),
CORBA::INTERNAL ());
// Create a client
TAO_HTTP_Client client;
if (TAO_debug_level > 4)
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("TAO (%P|%t) - HTTP_Parser::parse_string, getting IOR from <%s> <%s> <%d>\n"),
hostname, filename, port));
}
// Open the client
if (client.open (filename,
hostname,
port) == -1)
{
client.close ();
return 0;
}
delete [] hostname;
ACE_OS::free (filename);
// Read from it
if (client.read (mb) <= 0)
{
client.close ();
return 0;
}
// We get multiple message blocks back, concatenate them to
// one large string
ACE_CString string;
for (ACE_Message_Block * curr = mb; curr != 0; curr = curr->cont ())
string += curr->rd_ptr();
return orb->string_to_object (string.c_str());
}
TAO_END_VERSIONED_NAMESPACE_DECL
ACE_STATIC_SVC_DEFINE (TAO_HTTP_Parser,
ACE_TEXT ("HTTP_Parser"),
ACE_SVC_OBJ_T,
&ACE_SVC_NAME (TAO_HTTP_Parser),
ACE_Service_Type::DELETE_THIS |
ACE_Service_Type::DELETE_OBJ,
0)
ACE_FACTORY_DEFINE (TAO, TAO_HTTP_Parser)
#endif /* TAO_HAS_HTTP_PARSER == 1 */
|