summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS/stress_testing/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS/stress_testing/util.cpp')
-rw-r--r--ACE/apps/JAWS/stress_testing/util.cpp58
1 files changed, 58 insertions, 0 deletions
diff --git a/ACE/apps/JAWS/stress_testing/util.cpp b/ACE/apps/JAWS/stress_testing/util.cpp
new file mode 100644
index 00000000000..7da1d9df44a
--- /dev/null
+++ b/ACE/apps/JAWS/stress_testing/util.cpp
@@ -0,0 +1,58 @@
+// $Id$
+
+#include "util.h"
+
+URL::URL(char *input_buf) {
+
+ char *buffer = new char[BUFSIZ];
+
+ ACE_OS::strcpy(buffer,input_buf);
+ if(buffer == 0)
+ return;
+
+ char *temp;
+ char *lasts;
+
+ if((temp = ACE_OS::strtok_r(buffer,": ",&lasts))) {
+ protocol_ = (char *) ACE_OS::malloc(ACE_OS::strlen(temp) + 1);
+ ACE_OS::strcpy(protocol_, temp);
+ }
+
+ if((temp = ACE_OS::strtok_r(0,"/",&lasts))) {
+ hostname_ = (char *) ACE_OS::malloc(ACE_OS::strlen(temp) + 1);
+ ACE_OS::strcpy(hostname_, temp);
+ }
+ if((temp = ACE_OS::strtok_r(0,"\0",&lasts))) {
+ filename_ = (char *) ACE_OS::malloc(ACE_OS::strlen(temp) + 1);
+ ACE_OS::strcpy(filename_, temp);
+ }
+ else {
+ filename_ = (char *) ACE_OS::malloc(ACE_OS::strlen(INDEX_NAME) + 1);
+ ACE_OS::strcpy(filename_,INDEX_NAME);
+ }
+}
+
+char *URL::get_protocol(void) {
+ return protocol_;
+}
+
+char *URL::get_hostname(void) {
+ return hostname_;
+}
+
+char *URL::get_filename(void) {
+ return filename_;
+}
+
+
+
+
+
+void cleanup(void) {
+ ACE_OS::unlink(TEMPORARY_FILE_NAME);
+ ACE_OS::unlink(INCOMING_FILE_NAME);
+}
+
+void sigint(int) {
+ cleanup();
+}