summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpoperation.cpp
blob: 3b6401813206824e5b74e7eb87f33e92d05d89b2 (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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/**
 * @file _httpoperation.cpp
 * @brief Definitions for internal classes based on HttpOperation
 *
 * $LicenseInfo:firstyear=2012&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2012-2014, 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$
 */

#include "_httpoperation.h"

#include "httphandler.h"
#include "httpresponse.h"
#include "httprequest.h"

#include "_httprequestqueue.h"
#include "_httpreplyqueue.h"
#include "_httpservice.h"
#include "_httpinternal.h"

#include "lltimer.h"


namespace
{

static const char * const LOG_CORE("CoreHttp");

} // end anonymous namespace


namespace LLCore
{


// ==================================
// HttpOperation
// ==================================
/*static*/ 
HttpOperation::handleMap_t  HttpOperation::mHandleMap;
LLCoreInt::HttpMutex	    HttpOperation::mOpMutex;

HttpOperation::HttpOperation():
    boost::enable_shared_from_this<HttpOperation>(),
    mReplyQueue(),
    mUserHandler(),
    mReqPolicy(HttpRequest::DEFAULT_POLICY_ID),
    mTracing(HTTP_TRACE_OFF),
    mMyHandle(LLCORE_HTTP_HANDLE_INVALID)
{
	mMetricCreated = totalTime();
}


HttpOperation::~HttpOperation()
{
    destroyHandle();
    mReplyQueue.reset();
    mUserHandler.reset();
}


void HttpOperation::setReplyPath(HttpReplyQueue::ptr_t reply_queue,
								 HttpHandler::ptr_t user_handler)
{
    mReplyQueue.swap(reply_queue);
	mUserHandler.swap(user_handler);
}



void HttpOperation::stageFromRequest(HttpService *)
{
	// Default implementation should never be called.  This
	// indicates an operation making a transition that isn't
	// defined.
	LL_ERRS(LOG_CORE) << "Default stageFromRequest method may not be called."
					  << LL_ENDL;
}


void HttpOperation::stageFromReady(HttpService *)
{
	// Default implementation should never be called.  This
	// indicates an operation making a transition that isn't
	// defined.
	LL_ERRS(LOG_CORE) << "Default stageFromReady method may not be called."
					  << LL_ENDL;
}


void HttpOperation::stageFromActive(HttpService *)
{
	// Default implementation should never be called.  This
	// indicates an operation making a transition that isn't
	// defined.
	LL_ERRS(LOG_CORE) << "Default stageFromActive method may not be called."
					  << LL_ENDL;
}


void HttpOperation::visitNotifier(HttpRequest *)
{
	if (mUserHandler)
	{
		HttpResponse * response = new HttpResponse();

		response->setStatus(mStatus);
		mUserHandler->onCompleted(getHandle(), response);

		response->release();
	}
}


HttpStatus HttpOperation::cancel()
{
	HttpStatus status;

	return status;
}

// Handle methods
HttpHandle HttpOperation::getHandle()
{
    if (mMyHandle == LLCORE_HTTP_HANDLE_INVALID)
        return createHandle();

    return mMyHandle;
}

HttpHandle HttpOperation::createHandle()
{
    HttpHandle handle = static_cast<HttpHandle>(this);

    {
        LLCoreInt::HttpScopedLock lock(mOpMutex);

        mHandleMap[handle] = shared_from_this();
        mMyHandle = handle;
    }

    return mMyHandle;
}

void HttpOperation::destroyHandle()
{
    if (mMyHandle == LLCORE_HTTP_HANDLE_INVALID)
        return;
    {
        LLCoreInt::HttpScopedLock lock(mOpMutex);

        handleMap_t::iterator it = mHandleMap.find(mMyHandle);
        if (it != mHandleMap.end())
            mHandleMap.erase(it);
    }
}

/*static*/
HttpOperation::ptr_t HttpOperation::findByHandle(HttpHandle handle)
{
    wptr_t weak;

    if (!handle)
        return ptr_t();

    {
        LLCoreInt::HttpScopedLock lock(mOpMutex);

        handleMap_t::iterator it = mHandleMap.find(handle);
        if (it == mHandleMap.end())
        {
            LL_WARNS("LLCore::HTTP") << "Could not find operation for handle " << handle << LL_ENDL;
            return ptr_t();
        }

        weak = (*it).second;
    }

    if (!weak.expired())
        return weak.lock();
    
    return ptr_t();
}


void HttpOperation::addAsReply()
{
	if (mTracing > HTTP_TRACE_OFF)
	{
		LL_INFOS(LOG_CORE) << "TRACE, ToReplyQueue, Handle:  "
						   << getHandle()
						   << LL_ENDL;
	}
	
	if (mReplyQueue)
	{
        HttpOperation::ptr_t op = shared_from_this();
		mReplyQueue->addOp(op);
	}
}


// ==================================
// HttpOpStop
// ==================================


HttpOpStop::HttpOpStop()
	: HttpOperation()
{}


HttpOpStop::~HttpOpStop()
{}


void HttpOpStop::stageFromRequest(HttpService * service)
{
	// Do operations
	service->stopRequested();
	
	// Prepare response if needed
	addAsReply();
}


// ==================================
// HttpOpNull
// ==================================


HttpOpNull::HttpOpNull()
	: HttpOperation()
{}


HttpOpNull::~HttpOpNull()
{}


void HttpOpNull::stageFromRequest(HttpService * service)
{
	// Perform op
	// Nothing to perform.  This doesn't fall into the libcurl
	// ready/active queues, it just bounces over to the reply
	// queue directly.
	
	// Prepare response if needed
	addAsReply();
}


// ==================================
// HttpOpSpin
// ==================================


HttpOpSpin::HttpOpSpin(int mode)
	: HttpOperation(),
	  mMode(mode)
{}


HttpOpSpin::~HttpOpSpin()
{}


void HttpOpSpin::stageFromRequest(HttpService * service)
{
	if (0 == mMode)
	{
		// Spin forever
		while (true)
		{
			ms_sleep(100);
		}
	}
	else
	{
		ms_sleep(1);			// backoff interlock plumbing a bit
        HttpOperation::ptr_t opptr = shared_from_this();
        service->getRequestQueue().addOp(opptr);
	}
}


}   // end namespace LLCore