12c593315Sopenharmony_ci/*
22c593315Sopenharmony_ci * nghttp2 - HTTP/2 C Library
32c593315Sopenharmony_ci *
42c593315Sopenharmony_ci * Copyright (c) 2015 Tatsuhiro Tsujikawa
52c593315Sopenharmony_ci *
62c593315Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining
72c593315Sopenharmony_ci * a copy of this software and associated documentation files (the
82c593315Sopenharmony_ci * "Software"), to deal in the Software without restriction, including
92c593315Sopenharmony_ci * without limitation the rights to use, copy, modify, merge, publish,
102c593315Sopenharmony_ci * distribute, sublicense, and/or sell copies of the Software, and to
112c593315Sopenharmony_ci * permit persons to whom the Software is furnished to do so, subject to
122c593315Sopenharmony_ci * the following conditions:
132c593315Sopenharmony_ci *
142c593315Sopenharmony_ci * The above copyright notice and this permission notice shall be
152c593315Sopenharmony_ci * included in all copies or substantial portions of the Software.
162c593315Sopenharmony_ci *
172c593315Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
182c593315Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
192c593315Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
202c593315Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
212c593315Sopenharmony_ci * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
222c593315Sopenharmony_ci * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
232c593315Sopenharmony_ci * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
242c593315Sopenharmony_ci */
252c593315Sopenharmony_ci#ifndef SHRPX_RATE_LIMIT_H
262c593315Sopenharmony_ci#define SHRPX_RATE_LIMIT_H
272c593315Sopenharmony_ci
282c593315Sopenharmony_ci#include "shrpx.h"
292c593315Sopenharmony_ci
302c593315Sopenharmony_ci#include <ev.h>
312c593315Sopenharmony_ci
322c593315Sopenharmony_ci#include <openssl/ssl.h>
332c593315Sopenharmony_ci
342c593315Sopenharmony_cinamespace shrpx {
352c593315Sopenharmony_ci
362c593315Sopenharmony_cistruct Connection;
372c593315Sopenharmony_ci
382c593315Sopenharmony_ciclass RateLimit {
392c593315Sopenharmony_cipublic:
402c593315Sopenharmony_ci  // We need |conn| object to check that it has unread bytes for TLS
412c593315Sopenharmony_ci  // connection.
422c593315Sopenharmony_ci  RateLimit(struct ev_loop *loop, ev_io *w, size_t rate, size_t burst,
432c593315Sopenharmony_ci            Connection *conn = nullptr);
442c593315Sopenharmony_ci  ~RateLimit();
452c593315Sopenharmony_ci  size_t avail() const;
462c593315Sopenharmony_ci  void drain(size_t n);
472c593315Sopenharmony_ci  void regen();
482c593315Sopenharmony_ci  void startw();
492c593315Sopenharmony_ci  void stopw();
502c593315Sopenharmony_ci  // Feeds event if conn_->tls object has unread bytes.  This is
512c593315Sopenharmony_ci  // required since it is buffered in conn_->tls object, io event is
522c593315Sopenharmony_ci  // not generated unless new incoming data is received.
532c593315Sopenharmony_ci  void handle_tls_pending_read();
542c593315Sopenharmony_ci
552c593315Sopenharmony_ciprivate:
562c593315Sopenharmony_ci  ev_timer t_;
572c593315Sopenharmony_ci  ev_io *w_;
582c593315Sopenharmony_ci  struct ev_loop *loop_;
592c593315Sopenharmony_ci  Connection *conn_;
602c593315Sopenharmony_ci  size_t rate_;
612c593315Sopenharmony_ci  size_t burst_;
622c593315Sopenharmony_ci  size_t avail_;
632c593315Sopenharmony_ci  bool startw_req_;
642c593315Sopenharmony_ci};
652c593315Sopenharmony_ci
662c593315Sopenharmony_ci} // namespace shrpx
672c593315Sopenharmony_ci
682c593315Sopenharmony_ci#endif // SHRPX_RATE_LIMIT_H
69