123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- /**
- * @file llcorehttprequest.cpp
- * @brief Implementation of the HTTPRequest class
- *
- * $LicenseInfo:firstyear=2012&license=viewerlgpl$
- * Second Life Viewer Source Code
- * Copyright (C) 2012, 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 "linden_common.h"
- #include "llcorehttprequest.h"
- #include "llcorehttpopcancel.h"
- #include "llcorehttpoperation.h"
- #include "llcorehttpoprequest.h"
- #include "llcorehttpopsetget.h"
- #include "llcorehttppolicy.h"
- #include "llcorehttpreplyqueue.h"
- #include "llcorehttprequestqueue.h"
- #include "llcorehttpservice.h"
- #include "lltimer.h"
- namespace LLCore
- {
- //static
- bool HttpRequest::sInitialized = false;
- static const HttpStatus sStatusNotDynamic(HttpStatus::LLCORE,
- HE_OPT_NOT_DYNAMIC);
- // ====================================
- // HttpRequest Implementation
- // ====================================
- HttpRequest::HttpRequest()
- : mCancelled(false)
- {
- mRequestQueue = HttpRequestQueue::instanceOf();
- mRequestQueue->addRef();
- mReplyQueue.reset(new HttpReplyQueue());
- }
- HttpRequest::~HttpRequest()
- {
- if (mRequestQueue)
- {
- mRequestQueue->release();
- mRequestQueue = NULL;
- }
- mReplyQueue.reset();
- }
- // ====================================
- // Policy Methods
- // ====================================
- HttpRequest::policy_t HttpRequest::createPolicyClass()
- {
- if (HttpService::instanceOf()->getState() == HttpService::RUNNING)
- {
- return 0;
- }
- return HttpService::instanceOf()->createPolicyClass();
- }
- HttpStatus HttpRequest::setStaticPolicyOption(EPolicyOption opt,
- policy_t pclass,
- long value, long* ret_value)
- {
- if (HttpService::instanceOf()->getState() == HttpService::RUNNING)
- {
- return sStatusNotDynamic;
- }
- return HttpService::instanceOf()->setPolicyOption(opt, pclass, value,
- ret_value);
- }
- HttpStatus HttpRequest::setStaticPolicyOption(EPolicyOption opt,
- policy_t pclass,
- const std::string& value,
- std::string* ret_value)
- {
- if (HttpService::instanceOf()->getState() == HttpService::RUNNING)
- {
- return sStatusNotDynamic;
- }
- return HttpService::instanceOf()->setPolicyOption(opt, pclass, value,
- ret_value);
- }
- HttpStatus HttpRequest::setStaticPolicyOption(EPolicyOption opt,
- policy_t pclass,
- policyCallback_t value,
- policyCallback_t* ret_value)
- {
- if (HttpService::instanceOf()->getState() == HttpService::RUNNING)
- {
- return sStatusNotDynamic;
- }
- return HttpService::instanceOf()->setPolicyOption(opt, pclass, value,
- ret_value);
- }
- HttpHandle HttpRequest::setPolicyOption(EPolicyOption opt, policy_t pclass,
- long value, HttpHandler::ptr_t handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpSetGet::ptr_t op(new HttpOpSetGet());
- HttpStatus status = op->setupSet(opt, pclass, value);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::setPolicyOption(EPolicyOption opt, policy_t pclass,
- const std::string& value,
- HttpHandler::ptr_t handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpSetGet::ptr_t op(new HttpOpSetGet());
- HttpStatus status = op->setupSet(opt, pclass, value);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- // ====================================
- // Request Methods
- // ====================================
- HttpHandle HttpRequest::requestGet(policy_t policy_id, const std::string& url,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- const HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupGet(policy_id, url, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestGetByteRange(policy_t policy_id,
- const std::string& url,
- size_t offset, size_t len,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupGetByteRange(policy_id, url, offset, len,
- options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestPost(policy_t policy_id, const std::string& url,
- BufferArray* body,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupPost(policy_id, url, body, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestPut(policy_t policy_id, const std::string& url,
- BufferArray* body,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupPut(policy_id, url, body, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestDelete(policy_t policy_id,
- const std::string& url,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupDelete(policy_id, url, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestPatch(policy_t policy_id,
- const std::string& url, BufferArray* body,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupPatch(policy_id, url, body, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestCopy(policy_t policy_id, const std::string& url,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupCopy(policy_id, url, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestMove(policy_t policy_id, const std::string& url,
- const HttpOptions::ptr_t& options,
- const HttpHeaders::ptr_t& headers,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOpRequest::ptr_t op(new HttpOpRequest());
- HttpStatus status = op->setupMove(policy_id, url, options, headers);
- if (!status)
- {
- mLastReqStatus = status;
- return handle;
- }
- op->setReplyPath(mReplyQueue, user_handler);
- status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpHandle HttpRequest::requestNoOp(HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOperation::ptr_t op(new HttpOpNull());
- op->setReplyPath(mReplyQueue, user_handler);
- HttpStatus status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- HttpStatus HttpRequest::update(long usecs)
- {
- if (mLastReqStatus == gStatusCancelled || !mReplyQueue)
- {
- return gStatusCancelled;
- }
- HttpOperation::ptr_t op;
- if (usecs)
- {
- const HttpTime limit(LLTimer::totalTime() + HttpTime(usecs));
- while (limit >= LLTimer::totalTime() && (op = mReplyQueue->fetchOp()))
- {
- // Process operation
- op->visitNotifier(this);
- // We are done with the operation
- op.reset();
- }
- }
- else
- {
- // Same as above, just no time limit
- HttpReplyQueue::OpContainer replies;
- mReplyQueue->fetchAll(replies);
- if (!replies.empty())
- {
- for (HttpReplyQueue::OpContainer::iterator iter = replies.begin(),
- iend = replies.end();
- iter != iend; ++iter)
- {
- // Swap op pointer for NULL;
- op.reset();
- op.swap(*iter);
- if (op)
- {
- // Process operation
- op->visitNotifier(this);
- }
- }
- op.reset();
- }
- }
- return HttpStatus();
- }
- // ====================================
- // Request Management Methods
- // ====================================
- HttpHandle HttpRequest::requestCancel(HttpHandle request,
- HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- mCancelled = true;
- HttpOperation::ptr_t op(new HttpOpCancel(request));
- op->setReplyPath(mReplyQueue, user_handler);
- HttpStatus status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- // ====================================
- // Utility Methods
- // ====================================
- HttpStatus HttpRequest::createService()
- {
- HttpStatus status;
- if (!sInitialized)
- {
- sInitialized = true;
- HttpRequestQueue::init();
- HttpRequestQueue* rq = HttpRequestQueue::instanceOf();
- HttpService::init(rq);
- }
- return status;
- }
- HttpStatus HttpRequest::destroyService()
- {
- HttpStatus status;
- if (sInitialized)
- {
- HttpService::term();
- HttpRequestQueue::term();
- sInitialized = false;
- }
- return status;
- }
- HttpStatus HttpRequest::startThread()
- {
- HttpService::instanceOf()->startThread();
- HttpStatus status;
- return status;
- }
- HttpHandle HttpRequest::requestStopThread(HttpHandler::ptr_t user_handler)
- {
- HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID);
- HttpOperation::ptr_t op(new HttpOpStop());
- op->setReplyPath(mReplyQueue, user_handler);
- HttpStatus status = mRequestQueue->addOp(op); // transfers refcount
- if (status)
- {
- handle = op->getHandle();
- }
- mLastReqStatus = status;
- return handle;
- }
- } // End namespace LLCore
|