File: AlarmHandler.h

package info (click to toggle)
libdap 3.9.3-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 13,388 kB
  • ctags: 6,966
  • sloc: cpp: 32,601; ansic: 11,148; sh: 10,960; exp: 4,232; yacc: 1,694; makefile: 795; tcl: 509; perl: 138; xml: 80
file content (124 lines) | stat: -rw-r--r-- 3,692 bytes parent folder | download
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

// -*- mode: c++; c-basic-offset:4 -*-

// This file is part of libdap, A C++ implementation of the OPeNDAP Data
// Access Protocol.

// Copyright (c) 2002,2003 OPeNDAP, Inc.
// Author: James Gallagher <jgallagher@opendap.org>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.

#ifndef alarm_handler_h
#define alarm_handler_h

#include <cstdio>

#include <string>

#include "EventHandler.h"

namespace libdap
{

/** Handle the time out alarm. When an OPeNDAP server runs until the time out
    alarm is triggered, this class provides the concrete implementation of
    EventHandler::handle_signal().

    @see EventHandler
    @see SignalHandler
    @author James Gallagher <jgallagher@opendap.org> */
class AlarmHandler : public EventHandler
{
private:
    //#if FILE_METHODS
    FILE *d_file;  // Sink for the Error object.
    //#endif
    ostream &d_stream;
    string d_version;

    // Ensure that d_stream gets initialized...
    AlarmHandler() :
	//#if FILE_METHODS
        d_file( 0 ),
	//#endif
        d_stream( cout )
    {}

public:
    /** Store information to be used by the handler.
    @param s Write to this stream. */
    //#if FILE_METHODS
    AlarmHandler(FILE *s) : d_file(s), d_stream( cout )
    {}
    //#endif
    AlarmHandler(ostream &out) :
	//#if FILE_METHODS
        d_file(0),
	//#endif
        d_stream( out )
    {}

    virtual ~AlarmHandler()
    {
	//#if FILE_METHODS
        if( d_file )
            fclose( d_file ) ;
	//#endif
    }

    /** Handle an alarm signal. When one of our servers gets an alarm, that
    means it has hit its time out. We need to dump two CRLF pairs down
    the stream and then send an Error object explaining that a timeout
    has been reached.

    Because this is a signal handler, it should call only reentrant
    system services, functions, et cetera. Generally that eliminates
    stdio functions but I'm using them anyway. This handler never returns
    to the code that was running when the alarm signal was raised.

    @param signum We know it is SIGALRM; here as a check
    @return Never returns; calls exit after sending the Error object. */
    virtual void handle_signal(int signum)
    {
        if (signum != SIGALRM)
            fprintf(stderr, "SIGALRM handler caught another signal!\n");
#if 0
        // Use this code, or a variant, once we have reliable error delivery.
	if( d_file )
	    fprintf(d_file, "\n\n\n\n");
	else
	    d_stream << "\n\n\n\n";

        Error e("The server has timed out. This happens when a request\n\
                takes longer to process than the server's preset time-out value.\n\
                Try making a request for a smaller amount of data. You can also contact\n\
                the server's administrator and request that the time-out value be increased.");

	if( d_file )
	    e.print(d_file);
	else
	    e.print(d_stream);
#endif
        exit(1);
    }

};

} // namespace libdap

#endif