libzmq  master
ZeroMQ C++ Core Engine (LIBZMQ)
vmci_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 __ZMQ_VMCI_CONNECTER_HPP_INCLUDED__
31 #define __ZMQ_VMCI_CONNECTER_HPP_INCLUDED__
32 
33 #include "platform.hpp"
34 
35 #if defined ZMQ_HAVE_VMCI
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 vmci_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  vmci_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  ~vmci_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  // 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 VMCI 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.
98  const address_t *addr;
99 
100  // Underlying socket.
101  fd_t s;
102 
103  // Handle corresponding to the listening socket.
104  handle_t handle;
105 
106  // If true file descriptor is registered with the poller and 'handle'
107  // contains valid value.
108  bool handle_valid;
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.
114  bool timer_started;
115 
116  // Reference to the session we belong to.
117  zmq::session_base_t *session;
118 
119  // Current reconnect ivl, updated for backoff strategy
120  int current_reconnect_ivl;
121 
122  // String representation of endpoint to connect to
123  std::string endpoint;
124 
125  // Socket
126  zmq::socket_base_t *socket;
127 
128  vmci_connecter_t (const vmci_connecter_t&);
129  const vmci_connecter_t &operator = (const vmci_connecter_t&);
130  };
131 }
132 
133 #endif
134 
135 #endif
136 
int fd_t
Definition: fd.hpp:50
Definition: address.hpp:35