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
|
// $Id$
//============================================================================
//
// = LIBRARY
// JAWS
//
// = FILENAME
// blobby.c
//
// = DESCRIPTION
// Simple client application to illustrate the use of the ACE_Blob class
//
// It reads "length" number of bytes, after skipping offset "offset"
// from hostname, port and filename as specified. (if -r specified)
//
// It writes "length" number of bytes, after skipping offset "offset"
// to hostname, port and filename as specified (if -w specified)
//
// = AUTHOR
// Prashant Jain and Sumedh Mungee
//
//============================================================================
#include "Options.h"
ACE_RCSID(Blobby, blobby, "$Id$")
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
// Options is a singleton
Options *options = Options::instance ();
options->parse_args (argc, argv);
// Explain what is going to happen
if (options->debug_)
ACE_DEBUG ((LM_DEBUG,
"hostname = %s, port = %d, filename = %s, length = %d, offset = %d, operation = %c\n",
options->hostname_,
options->port_,
options->filename_,
options->length_,
options->offset_,
options->operation_));
// Create a blob
ACE_Blob blob;
// User requested a read
if (options->operation_ == 'r')
{
ACE_Message_Block mb (0, options->length_);
// Open the blob
if (blob.open (options->filename_, options->hostname_, options->port_) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "open error"), -1);
// Read from it
if (blob.read (&mb, options->length_, options->offset_) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "read error"), -1);
// Write to STDOUT
if (ACE_OS::write (ACE_STDOUT, mb.rd_ptr(), mb.length()) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "write error"), -1);
}
else
{
int total = options->length_ + options->offset_;
ACE_Message_Block mb (total);
// Open the file to be sent
ACE_HANDLE h = ACE_OS::open (options->filename_, O_RDONLY);
if (h == ACE_INVALID_HANDLE)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "file open error"), -1);
// Open the blob
if (blob.open (options->filename_, options->hostname_, options->port_) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "connection open error"), -1);
// Read from the file
if (ACE_OS::read (h, mb.wr_ptr (), total) != total)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "file read error"), -1);
// Close the file
ACE_OS::close (h);
// Adjust the offset
mb.wr_ptr (mb.size ());
// Write to the blob
if (blob.write (&mb, options->length_, options->offset_) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "network write error"), -1);
}
blob.close ();
return 0;
}
|