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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file URL.h
*
* $Id: URL.h 93639 2011-03-24 13:32:13Z johnnyw $
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
#ifndef _URL_H
#define _URL_H
#include "Mem_Map_Stream.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "URL_Addr.h"
#include "URL_Status.h"
#include "ace/SString.h"
// Forward declaration.
class URL_Visitor;
/**
* @class URL
*
* @brief Base class for a URL.
*
* This class plays a role in the Visitor pattern.
*/
class URL
{
public:
/// Destructor.
virtual ~URL (void);
/**
* Accept the visitor, which will then perform a particular
* visitation strategy on the URL. This method is part of the
* Visitor pattern.
*/
virtual int accept (URL_Visitor *visitor) = 0;
/// Send a <GET> command to fetch the contents in the URI from the
/// server.
virtual ssize_t send_request (void) = 0;
/// Returns the URL that we represent.
virtual const ACE_URL_Addr &url_addr (void) const = 0;
/// Returns the <Mem_Map_Stream>.
virtual Mem_Map_Stream &stream (void);
// = Get/set the reply status.
virtual const URL_Status &reply_status (void);
virtual void reply_status (const URL_Status &);
// = Get/set the reply status.
virtual const ACE_CString &content_type (void);
virtual void content_type (const ACE_CString &);
private:
/// Reply status of the URL.
URL_Status reply_status_;
/// Content-type of the URL.
ACE_CString content_type_;
/// Contents of the stream.
Mem_Map_Stream stream_;
};
#endif /* _URL_H */
|