summaryrefslogtreecommitdiffstats
path: root/debian/htdig/htdig-3.2.0b6/htdig/ExternalTransport.h
blob: 4c946a963a06339cdfa379d5d7acbef89342d1ff (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
78
79
80
81
82
83
84
85
86
87
88
//
// ExternalTransport.h
//
// ExternalTransport: Allows external programs to retrieve given URLs with
//                    unknown protocols.
//
// Part of the ht://Dig package   <http://www.htdig.org/>
// Copyright (c) 1995-2004 The ht://Dig Group
// For copyright details, see the file COPYING in your distribution
// or the GNU Library General Public License (LGPL) version 2 or later
// <http://www.gnu.org/copyleft/lgpl.html>
//
// $Id: ExternalTransport.h,v 1.5 2004/05/28 13:15:14 lha Exp $
//

#ifndef _ExternalTransport_h_
#define _ExternalTransport_h_

#include "Transport.h"
#include "htString.h"

#include <stdio.h>

// First we must declare a derived Transport_Response class
// This requires declaring the main class in advance
class ExternalTransport;
class ExternalTransport_Response : public Transport_Response
{
  friend class ExternalTransport;

  // Nothing else... We just want it so we can access the protected fields
};

// Right, now we get on with the show...
class ExternalTransport : public Transport
{
public:
    //
    // Construction/Destruction
    //
                        ExternalTransport(const String &protocol);
    virtual		~ExternalTransport();


    //
    // Check if the given protocol has a handler
    //
    static int		canHandle(const String &protocol);
    
    // Setting connections is obviously a bit different than the base class
    // from a URL pointer
    void SetConnection (URL *u);
    
    // from a URL object
    void SetConnection (URL &u)
        { SetConnection (&u); }

    // Make the request
    DocStatus Request();
   
    // Get the response or the status
    Transport_Response	*GetResponse()	 { return _Response; }
    DocStatus GetDocumentStatus() { return GetDocumentStatus(_Response); }
    

private:
    // The command to handle the current protocol
    String			_Handler;
    // And the current protocol
    String			_Protocol;
    
    // The URL to Request()
    URL				_URL;
    
    // The result of the Request()
    ExternalTransport_Response	*_Response;

    
    
    // Private helper to read in the result from the handler
    int			readLine(FILE *, String &);
    // Work out the DocStatus from the HTTP-style status codes
    DocStatus		GetDocumentStatus(ExternalTransport_Response *r);
};

#endif