2012-06-04 16:48:31 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-06-04 16:48:31 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef SHRPX_DOWNSTREAM_QUEUE_H
|
|
|
|
#define SHRPX_DOWNSTREAM_QUEUE_H
|
|
|
|
|
|
|
|
#include "shrpx.h"
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <map>
|
2014-08-18 15:59:31 +02:00
|
|
|
#include <memory>
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
class Downstream;
|
|
|
|
|
|
|
|
class DownstreamQueue {
|
|
|
|
public:
|
|
|
|
DownstreamQueue();
|
|
|
|
~DownstreamQueue();
|
2014-08-18 15:59:31 +02:00
|
|
|
void add_pending(std::unique_ptr<Downstream> downstream);
|
|
|
|
void add_failure(std::unique_ptr<Downstream> downstream);
|
|
|
|
void add_active(std::unique_ptr<Downstream> downstream);
|
2014-08-16 14:29:20 +02:00
|
|
|
// Removes |downstream| from either pending_downstreams_,
|
2014-08-18 15:59:31 +02:00
|
|
|
// active_downstreams_ or failure_downstreams_ and returns it
|
|
|
|
// wrapped in std::unique_ptr.
|
|
|
|
std::unique_ptr<Downstream> remove(int32_t stream_id);
|
2014-08-16 14:29:20 +02:00
|
|
|
// Finds Downstream object denoted by |stream_id| either in
|
|
|
|
// pending_downstreams_, active_downstreams_ or
|
|
|
|
// failure_downstreams_.
|
2012-06-04 16:48:31 +02:00
|
|
|
Downstream* find(int32_t stream_id);
|
2014-08-16 14:29:20 +02:00
|
|
|
// Returns the number of active Downstream objects.
|
|
|
|
size_t num_active() const;
|
|
|
|
// Returns true if pending_downstreams_ is empty.
|
|
|
|
bool pending_empty() const;
|
|
|
|
// Pops first Downstream object in pending_downstreams_ and returns
|
|
|
|
// it.
|
2014-08-18 15:59:31 +02:00
|
|
|
std::unique_ptr<Downstream> pop_pending();
|
2014-10-06 17:31:35 +02:00
|
|
|
// Returns first Downstream object in pending_downstreams_. This
|
|
|
|
// does not pop the first one. If queue is empty, returns nullptr.
|
|
|
|
Downstream* pending_top() const;
|
2012-06-04 16:48:31 +02:00
|
|
|
private:
|
2014-08-16 14:29:20 +02:00
|
|
|
// Downstream objects, not processed yet
|
2014-08-18 15:59:31 +02:00
|
|
|
std::map<int32_t, std::unique_ptr<Downstream>> pending_downstreams_;
|
2014-08-16 14:29:20 +02:00
|
|
|
// Downstream objects in use, consuming downstream concurrency limit
|
2014-08-18 15:59:31 +02:00
|
|
|
std::map<int32_t, std::unique_ptr<Downstream>> active_downstreams_;
|
2014-08-16 14:29:20 +02:00
|
|
|
// Downstream objects, failed to connect to downstream server
|
2014-08-18 15:59:31 +02:00
|
|
|
std::map<int32_t, std::unique_ptr<Downstream>> failure_downstreams_;
|
2012-06-04 16:48:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // SHRPX_DOWNSTREAM_QUEUE_H
|