summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpservice.h
blob: 13eb034f0ee8daa5b778d4b13e42f3923c61301a (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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/**
 * @file _httpservice.h
 * @brief Declarations for internal class providing HTTP service.
 *
 * $LicenseInfo:firstyear=2012&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2012-2013, Linden Research, Inc.
 *
 * 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;
 * version 2.1 of the License only.
 *
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#ifndef _LLCORE_HTTP_SERVICE_H_
#define _LLCORE_HTTP_SERVICE_H_


#include <vector>

#include "linden_common.h"
#include "llatomic.h"
#include "httpcommon.h"
#include "httprequest.h"
#include "_httppolicyglobal.h"
#include "_httppolicyclass.h"


namespace LLCoreInt
{

class HttpThread;

}


namespace LLCore
{


class HttpRequestQueue;
class HttpPolicy;
class HttpLibcurl;
class HttpOpSetGet;


/// The HttpService class does the work behind the request queue.  It
/// oversees the HTTP workflow carrying out a number of tasks:
/// - Pulling requests from the global request queue
/// - Executing 'immediate' requests directly
/// - Prioritizing and re-queuing on internal queues the slower requests
/// - Providing cpu cycles to the libcurl plumbing
/// - Overseeing retry operations
///
/// Note that the service object doesn't have a pointer to any
/// reply queue.  These are kept by HttpRequest and HttpOperation
/// only.
///
/// Service, Policy and Transport
///
/// HttpService could have been a monolithic class combining a request
/// queue servicer, request policy manager and network transport.
/// Instead, to prevent monolithic growth and allow for easier
/// replacement, it was developed as three separate classes:  HttpService,
/// HttpPolicy and HttpLibcurl (transport).  These always exist in a
/// 1:1:1 relationship with HttpService managing instances of the other
/// two.  So, these classes do not use reference counting to refer
/// to one another, their lifecycles are always managed together.

class HttpService
{
protected:
    HttpService();
    virtual ~HttpService();

private:
    HttpService(const HttpService &);           // Not defined
    void operator=(const HttpService &);        // Not defined

public:
    enum EState
    {
        NOT_INITIALIZED = -1,
        INITIALIZED,            ///< init() has been called
        RUNNING,                ///< thread created and running
        STOPPED                 ///< thread has committed to exiting
    };

    // Ordered enumeration of idling strategies available to
    // threadRun's loop.  Ordered so that std::min on values
    // produces the most conservative result of multiple
    // requests.
    enum ELoopSpeed
    {
        NORMAL,                 ///< continuous polling of request, ready, active queues
        REQUEST_SLEEP           ///< can sleep indefinitely waiting for request queue write
    };

    static void init(HttpRequestQueue *);
    static void term();

    /// Threading:  callable by any thread once inited.
    inline static HttpService * instanceOf()
        {
            return sInstance;
        }

    /// Return the state of the worker thread.  Note that the
    /// transition from RUNNING to STOPPED is performed by the
    /// worker thread itself.  This has two weaknesses:
    /// - race where the thread hasn't really stopped but will
    /// - data ordering between threads where a non-worker thread
    ///   may see a stale RUNNING status.
    ///
    /// This transition is generally of interest only to unit tests
    /// and these weaknesses shouldn't be any real burden.
    ///
    /// Threading:  callable by any thread with above exceptions.
    static EState getState()
        {
            return sState;
        }

    /// Threading:  callable by any thread but uses @see getState() and
    /// acquires its weaknesses.
    static bool isStopped();

    /// Threading:  callable by init thread *once*.
    void startThread();

    /// Threading:  callable by worker thread.
    void stopRequested();

    /// Threading:  callable by worker thread.
    void shutdown();

    /// Try to find the given request handle on any of the request
    /// queues and cancel the operation.
    ///
    /// @return         True if the request was found and canceled.
    ///
    /// Threading:  callable by worker thread.
    bool cancel(HttpHandle handle);

    /// Threading:  callable by worker thread.
    HttpPolicy & getPolicy()
        {
            return *mPolicy;
        }

    /// Threading:  callable by worker thread.
    HttpLibcurl & getTransport()
        {
            return *mTransport;
        }

    /// Threading:  callable by worker thread.
    HttpRequestQueue & getRequestQueue()
        {
            return *mRequestQueue;
        }

    /// Threading:  callable by consumer thread.
    HttpRequest::policy_t createPolicyClass();

protected:
    void threadRun(LLCoreInt::HttpThread * thread);

    ELoopSpeed processRequestQueue(ELoopSpeed loop);

protected:
    friend class HttpOpSetGet;
    friend class HttpRequest;

    // Used internally to describe what operations are allowed
    // on each policy option.
    struct OptionDescriptor
    {
        bool        mIsLong;
        bool        mIsDynamic;
        bool        mIsGlobal;
        bool        mIsClass;
        bool        mIsCallback;
    };

    HttpStatus getPolicyOption(HttpRequest::EPolicyOption opt, HttpRequest::policy_t,
                               long * ret_value);
    HttpStatus getPolicyOption(HttpRequest::EPolicyOption opt, HttpRequest::policy_t,
                               std::string * ret_value);
    HttpStatus getPolicyOption(HttpRequest::EPolicyOption opt, HttpRequest::policy_t,
                                HttpRequest::policyCallback_t * ret_value);

    HttpStatus setPolicyOption(HttpRequest::EPolicyOption opt, HttpRequest::policy_t,
                               long value, long * ret_value);
    HttpStatus setPolicyOption(HttpRequest::EPolicyOption opt, HttpRequest::policy_t,
                               const std::string & value, std::string * ret_value);
    HttpStatus setPolicyOption(HttpRequest::EPolicyOption opt, HttpRequest::policy_t,
                                HttpRequest::policyCallback_t value,
                                HttpRequest::policyCallback_t * ret_value);

protected:
    static const OptionDescriptor       sOptionDesc[HttpRequest::PO_LAST];
    static HttpService *                sInstance;

    // === shared data ===
    static volatile EState              sState;
    HttpRequestQueue *                  mRequestQueue;  // Refcounted
    LLAtomicU32                         mExitRequested;
    LLCoreInt::HttpThread *             mThread;

    // === working-thread-only data ===
    HttpPolicy *                        mPolicy;        // Simple pointer, has ownership
    HttpLibcurl *                       mTransport;     // Simple pointer, has ownership

    // === main-thread-only data ===
    HttpRequest::policy_t               mLastPolicy;

};  // end class HttpService

}  // end namespace LLCore

#endif // _LLCORE_HTTP_SERVICE_H_