GM6000 Digital Heater Controller Branch: main
SDX-1330
Connection.h
Go to the documentation of this file.
1#ifndef Driver_Wifi_Station_Connection_h_
2#define Driver_Wifi_Station_Connection_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stdint.h>
16#include "colony_map.h"
17
18///
19namespace Driver {
20///
21namespace Wifi {
22///
23namespace Station {
24
25/** This class defines an asynchronous interface for a Station device to
26 connect to a WIFI network.
27
28 This interface does NOT define any thread safety semantics, i.e. the
29 application should assume that the interface is NOT thread safe.
30
31 The interface uses polling semantics, i.e. the application is required to
32 call the 'poll()' periodically.
33
34 The class/interface is designed a 'Singleton', i.e. the application can only
35 have one instance/implementation of the interface.
36*/
38{
39public:
40 /// Connection state
42 {
43 eLINK_DOWN, //!< The link is down
44 eLINK_JOINED, //!< Connected to wifi
45 eLINK_JOINED_NOIP, //!< Connected to wifi, but no IP address
46 eLINK_UP, //!< Connect to wifi with an IP address
47 eLINK_FAILED, //!< Connection failed
48 eLINK_NO_NETWORK, //!< No matching SSID found (could be out of range, or down)
49 eLINK_BAD_AUTHENTICATION //!< Authentication failure
50 };
51
52 /// Authorization options
54 {
55 eOPEN = 0, //!< No authorization required
56 eWPA_TKIP_PSK, //!< WPA authorization
57 eWPA2_AES_PSK, //!< WPA2 authorization (preferred)
58 eWPA2_MIXED_PSK //!< WPA2/WPA mixed authorization
59 };
60
61public:
62 /// Defines the function signature for callbacks
63 typedef void (*StateChangedFunc_T)(State_T currentState);
64
65public:
66 /** This method is used to initialize the WIFI engine in Station Mode. It
67 should only be called ONCE on startup before any other methods in this
68 interface is called.
69
70 This method ASSUMES that the hardware, WIFI stack, etc. has ALREADY
71 been initialized and is available for use.
72 */
73 static void initiailize() noexcept;
74
75 /** This method is used to initiate connecting to a WIFI network.
76
77 The method will optionally generate callbacks to the application when
78 the state of the connection changes. Note: Callbacks for EVERY transition
79 is NOT guaranteed. What is guaranteed is that latest state change when
80 the poll() method is called will trigger a callback
81
82 The 'ssid' and 'password' arguments MUST stay in scope until stop() is
83 called (i.e. the application is responsible for the memory of these
84 arguments).
85 */
86 static bool start( const char* ssid,
87 const char* password,
88 Authentication_T authenticationMethod,
89 StateChangedFunc_T callbackFunc = nullptr ) noexcept;
90
91 /** This method is used to monitor the current state of the WIFI connection
92 and attempts to re-establish the connect if it drops. The application
93 is responsible for calling this method periodically.
94 */
95 static void poll() noexcept;
96
97 /** This method returns true if the state of the WIFI connection is in
98 the eLINK_UP state.
99 */
100 static bool isConnected() noexcept;
101
102 /** This method returns true the current state of the WIFI connection
103 */
104 static State_T getState() noexcept;
105
106 /** This method disconnects the device from the from the WIFI network. The
107 Application must call start() again to reconnect to a/the WIFI network
108 */
109 static void stop() noexcept;
110
111 /// Convience method that convert the binary State_T enum to string
112 static const char* toString( State_T linkStatus ) noexcept;
113};
114
115
116
117/*--------------------------------------------------------------------------*/
118} // End namespace(s)
119}
120}
121#endif // end header latch
This class defines an asynchronous interface for a Station device to connect to a WIFI network.
Definition Connection.h:38
State_T
Connection state.
Definition Connection.h:42
@ eLINK_JOINED_NOIP
Connected to wifi, but no IP address.
Definition Connection.h:45
@ eLINK_BAD_AUTHENTICATION
Authentication failure.
Definition Connection.h:49
@ eLINK_UP
Connect to wifi with an IP address.
Definition Connection.h:46
@ eLINK_NO_NETWORK
No matching SSID found (could be out of range, or down)
Definition Connection.h:48
@ eLINK_JOINED
Connected to wifi.
Definition Connection.h:44
@ eLINK_FAILED
Connection failed.
Definition Connection.h:47
@ eLINK_DOWN
The link is down.
Definition Connection.h:43
static void poll() noexcept
This method is used to monitor the current state of the WIFI connection and attempts to re-establish ...
static void stop() noexcept
This method disconnects the device from the from the WIFI network.
static const char * toString(State_T linkStatus) noexcept
Convience method that convert the binary State_T enum to string.
static void initiailize() noexcept
This method is used to initialize the WIFI engine in Station Mode.
static bool start(const char *ssid, const char *password, Authentication_T authenticationMethod, StateChangedFunc_T callbackFunc=nullptr) noexcept
This method is used to initiate connecting to a WIFI network.
void(* StateChangedFunc_T)(State_T currentState)
Defines the function signature for callbacks.
Definition Connection.h:63
static bool isConnected() noexcept
This method returns true if the state of the WIFI connection is in the eLINK_UP state.
Authentication_T
Authorization options.
Definition Connection.h:54
@ eWPA2_AES_PSK
WPA2 authorization (preferred)
Definition Connection.h:57
@ eWPA2_MIXED_PSK
WPA2/WPA mixed authorization.
Definition Connection.h:58
@ eOPEN
No authorization required.
Definition Connection.h:55
@ eWPA_TKIP_PSK
WPA authorization.
Definition Connection.h:56
static State_T getState() noexcept
This method returns true the current state of the WIFI connection.
namespace