libzmq  master
ZeroMQ C++ Core Engine (LIBZMQ)
tipc_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 __TIPC_CONNECTER_HPP_INCLUDED__
31 #define __TIPC_CONNECTER_HPP_INCLUDED__
32 
33 #include "platform.hpp"
34 
35 #if defined ZMQ_HAVE_TIPC
36 
37 #include "fd.hpp"
38 #include "own.hpp"
39 #include "stdint.hpp"
40 #include "io_object.hpp"
41 
42 namespace zmq
43 {
44 
45  class io_thread_t;
46  class session_base_t;
47  struct address_t;
48 
49  class tipc_connecter_t : public own_t, public io_object_t
50  {
51  public:
52 
53  // If 'delayed_start' is true connecter first waits for a while,
54  // then starts connection process.
55  tipc_connecter_t (zmq::io_thread_t *io_thread_,
56  zmq::session_base_t *session_, const options_t &options_,
57  const address_t *addr_, bool delayed_start_);
58  ~tipc_connecter_t ();
59 
60  private:
61 
62  // ID of the timer used to delay the reconnection.
63  enum {reconnect_timer_id = 1};
64 
65  // Handlers for incoming commands.
66  void process_plug ();
67  void process_term (int linger_);
68 
69  // Handlers for I/O events.
70  void in_event ();
71  void out_event ();
72  void timer_event (int id_);
73 
74  // Internal function to start the actual connection establishment.
75  void start_connecting ();
76 
77  // Internal function to add a reconnect timer
78  void add_reconnect_timer();
79 
80  // Close the connecting socket.
81  void close ();
82 
83  // Get the file descriptor of newly created connection. Returns
84  // retired_fd if the connection was unsuccessful.
85  fd_t connect ();
86 
87  // Address to connect to. Owned by session_base_t.
88  const address_t *addr;
89 
90  // Underlying socket.
91  fd_t s;
92 
93  // Handle corresponding to the listening socket.
94  handle_t handle;
95 
96  // If true file descriptor is registered with the poller and 'handle'
97  // contains valid value.
98  bool handle_valid;
99 
100  // If true, connecter is waiting a while before trying to connect.
101  const bool delayed_start;
102 
103  // True iff a timer has been started.
104  bool timer_started;
105 
106  // Reference to the session we belong to.
107  zmq::session_base_t *session;
108 
109  // Current reconnect ivl, updated for backoff strategy
110  int current_reconnect_ivl;
111 
112  // String representation of endpoint to connect to
113  std::string endpoint;
114 
115  // Socket
116  zmq::socket_base_t *socket;
117 
118  // Internal function to return a reconnect backoff delay.
119  // Will modify the current_reconnect_ivl used for next call
120  // Returns the currently used interval
121  int get_new_reconnect_ivl ();
122 
123  // Open IPC connecting socket. Returns -1 in case of error,
124  // 0 if connect was successful immediately. Returns -1 with
125  // EAGAIN errno if async connect was launched.
126  int open ();
127 
128  tipc_connecter_t (const tipc_connecter_t&);
129  const tipc_connecter_t &operator = (const tipc_connecter_t&);
130  };
131 
132 }
133 
134 #endif
135 
136 #endif
137 
int fd_t
Definition: fd.hpp:50
Definition: address.hpp:35