libzmq  master
ZeroMQ C++ Core Engine (LIBZMQ)
tcp_connecter.hpp
Go to the documentation of this file.
1 /*
2  Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
3 
4  This file is part of libzmq, the ZeroMQ core engine in C++.
5 
6  libzmq is free software; you can redistribute it and/or modify it under
7  the terms of the GNU Lesser General Public License (LGPL) as published
8  by the Free Software Foundation; either version 3 of the License, or
9  (at your option) any later version.
10 
11  As a special exception, the Contributors give you permission to link
12  this library with independent modules to produce an executable,
13  regardless of the license terms of these independent modules, and to
14  copy and distribute the resulting executable under terms of your choice,
15  provided that you also meet, for each linked independent module, the
16  terms and conditions of the license of that module. An independent
17  module is a module which is not derived from or based on this library.
18  If you modify this library, you must extend this exception to your
19  version of the library.
20 
21  libzmq is distributed in the hope that it will be useful, but WITHOUT
22  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
24  License for more details.
25 
26  You should have received a copy of the GNU Lesser General Public License
27  along with this program. If not, see <http://www.gnu.org/licenses/>.
28 */
29 
30 #ifndef __TCP_CONNECTER_HPP_INCLUDED__
31 #define __TCP_CONNECTER_HPP_INCLUDED__
32 
33 #include "fd.hpp"
34 #include "own.hpp"
35 #include "stdint.hpp"
36 #include "io_object.hpp"
37 #include "../include/zmq.h"
38 
39 namespace zmq
40 {
41 
42  class io_thread_t;
43  class session_base_t;
44  struct address_t;
45 
46  class tcp_connecter_t : public own_t, public io_object_t
47  {
48  public:
49 
50  // If 'delayed_start' is true connecter first waits for a while,
51  // then starts connection process.
52  tcp_connecter_t (zmq::io_thread_t *io_thread_,
53  zmq::session_base_t *session_, const options_t &options_,
54  address_t *addr_, bool delayed_start_);
56 
57  private:
58 
59  // ID of the timer used to delay the reconnection.
61 
62  // Handlers for incoming commands.
63  void process_plug ();
64  void process_term (int linger_);
65 
66  // Handlers for I/O events.
67  void in_event ();
68  void out_event ();
69  void timer_event (int id_);
70 
71  // Internal function to start the actual connection establishment.
72  void start_connecting ();
73 
74  // Internal function to add a connect timer
75  void add_connect_timer();
76 
77  // Internal function to add a reconnect timer
78  void add_reconnect_timer();
79 
80  // Internal function to return a reconnect backoff delay.
81  // Will modify the current_reconnect_ivl used for next call
82  // Returns the currently used interval
83  int get_new_reconnect_ivl ();
84 
85  // Open TCP connecting socket. Returns -1 in case of error,
86  // 0 if connect was successful immediately. Returns -1 with
87  // EAGAIN errno if async connect was launched.
88  int open ();
89 
90  // Close the connecting socket.
91  void close ();
92 
93  // Get the file descriptor of newly created connection. Returns
94  // retired_fd if the connection was unsuccessful.
95  fd_t connect ();
96 
97  // Address to connect to. Owned by session_base_t.
99 
100  // Underlying socket.
102 
103  // Handle corresponding to the listening socket.
105 
106  // If true file descriptor is registered with the poller and 'handle'
107  // contains valid value.
109 
110  // If true, connecter is waiting a while before trying to connect.
111  const bool delayed_start;
112 
113  // True iff a timer has been started.
116 
117  // Reference to the session we belong to.
119 
120  // Current reconnect ivl, updated for backoff strategy
122 
123  // String representation of endpoint to connect to
124  std::string endpoint;
125 
126  // Socket
128 
131  };
132 
133 }
134 
135 #endif
zmq::session_base_t * session
void process_term(int linger_)
zmq::socket_base_t * socket
const tcp_connecter_t & operator=(const tcp_connecter_t &)
Definition: address.hpp:35
tcp_connecter_t(zmq::io_thread_t *io_thread_, zmq::session_base_t *session_, const options_t &options_, address_t *addr_, bool delayed_start_)
poller_t::handle_t handle_t
Definition: io_object.hpp:62
void timer_event(int id_)