rsiot/components/cmp_esp_wifi/
fn_process.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
use std::time::Duration;

use embedded_svc::wifi::Wifi;
use esp_idf_svc::hal::sys::EspError;
use esp_idf_svc::{
    netif::NetifStatus,
    wifi::{AsyncWifi, ClientConfiguration, Configuration, EspWifi, NonBlocking},
};
use tokio::time::sleep;
use tracing::{info, warn};

use crate::{
    executor::CmpInOut,
    message::{system_messages, Message, MsgData, MsgDataBound, ServiceBound},
};

use super::Config;

pub async fn fn_process<TMsg, TService>(
    config: Config,
    in_out: CmpInOut<TMsg, TService>,
) -> super::Result<()>
where
    TMsg: MsgDataBound,
    TService: ServiceBound,
{
    let wifi_config = prepare_wifi_config(&config);

    let driver = EspWifi::new(config.peripherals, config.event_loop.clone(), None).unwrap();

    let mut wifi = AsyncWifi::wrap(driver, config.event_loop, config.timer_service).unwrap();

    let mut state = ConnectionState::PreLaunch;

    loop {
        state = match state {
            ConnectionState::PreLaunch => state_prelaunch(&mut wifi, &wifi_config).await,
            ConnectionState::Connect => state_connect(&mut wifi, &in_out).await,
            ConnectionState::Check => state_check(&mut wifi).await,
            ConnectionState::Disconnect => state_disconnect(&mut wifi).await,
            ConnectionState::OnlyAP => state_onlyap(&in_out).await,
        };
    }
}

// pub fn wifi_setup(
//     wifi: &mut EspWifi<'static>,
//     sys_loop: EspEventLoop<System>,
//     configuration: Configuration,
// ) {
//     let mut wifi = BlockingWifi::wrap(wifi, sys_loop).unwrap();
//     wifi.set_configuration(&configuration).unwrap();
//     wifi.start().unwrap();
//     info!("is wifi started: {:?}", wifi.is_started());
//     info!("{:?}", wifi.get_capabilities());

//     // Подключаемся к внешней точке Wi-Fi
//     if matches!(configuration, Configuration::Client(_))
//         || matches!(configuration, Configuration::Mixed(_, _))
//     {
//         wifi.connect().unwrap();

//         info!("Wifi connected to external AP");

//         wifi.wait_netif_up().unwrap();
//         info!("Wifi netif up");
//         let ip_info = wifi.wifi().sta_netif().get_ip_info().unwrap();
//         info!("Wifi DHCP info: {:?}", ip_info);
//     }
// }

// async fn start_wifi<TMsg>(config: Config, in_out: CmpInOut<TMsg>)
// where
//     TMsg: MsgDataBound,
// {
//     let wifi_config = prepare_wifi_config(&config);

//     let driver = EspWifi::new(config.peripherals, config.event_loop.clone(), None).unwrap();

//     let mut wifi = AsyncWifi::wrap(driver, config.event_loop, config.timer_service).unwrap();

//     let mut state = ConnectionState::PreLaunch;

//     loop {
//         state = match state {
//             ConnectionState::PreLaunch => state_prelaunch(&mut wifi, &wifi_config).await,
//             ConnectionState::Connect => state_connect(&mut wifi, &in_out).await,
//             ConnectionState::Check => state_check(&mut wifi).await,
//             ConnectionState::Disconnect => state_disconnect(&mut wifi).await,
//             // ConnectionState::OnlyAP => state_onlyap(&in_out).await,
//             ConnectionState::OnlyAP => break,
//         };
//     }

//     wifi_connected(&in_out).await.unwrap();
// }

fn prepare_wifi_config(config: &Config) -> Configuration {
    let access_point_config =
        config
            .access_point
            .as_ref()
            .map(|ap| esp_idf_svc::wifi::AccessPointConfiguration {
                ssid: heapless::String::try_from(ap.ssid.as_str()).unwrap(),
                ..Default::default()
            });

    let client_config: Option<ClientConfiguration> =
        config.client.as_ref().map(|cl| ClientConfiguration {
            ssid: heapless::String::try_from(cl.ssid.as_str()).unwrap(),
            password: heapless::String::try_from(cl.password.as_str()).unwrap(),
            auth_method: cl.auth_method,
            ..Default::default()
        });

    if let Some(apc) = access_point_config {
        if let Some(cc) = client_config {
            Configuration::Mixed(cc, apc)
        } else {
            Configuration::AccessPoint(apc)
        }
    } else if let Some(cc) = client_config {
        Configuration::Client(cc)
    } else {
        todo!()
    }
}

async fn state_prelaunch<T>(wifi: &mut AsyncWifi<T>, wifi_config: &Configuration) -> ConnectionState
where
    T: Wifi<Error = EspError> + NonBlocking,
{
    info!("Wifi state: prelaunch");
    wifi.set_configuration(wifi_config).unwrap();
    wifi.start().await.unwrap();
    info!("is wifi started: {:?}", wifi.is_started());
    info!("{:?}", wifi.get_capabilities());

    if matches!(wifi_config, Configuration::Client(_))
        || matches!(wifi_config, Configuration::Mixed(_, _))
    {
        ConnectionState::Connect
    } else {
        ConnectionState::OnlyAP
    }
}

async fn state_connect<T, TMsg, TService>(
    wifi: &mut AsyncWifi<T>,
    in_out: &CmpInOut<TMsg, TService>,
) -> ConnectionState
where
    T: Wifi<Error = EspError> + NonBlocking + NetifStatus,
    TMsg: MsgDataBound,
    TService: ServiceBound,
{
    info!("Wifi state: connect");
    let res = wifi.connect().await;
    if let Err(err) = res {
        warn!("Wifi connect error: {}", err);
        return ConnectionState::Disconnect;
    }
    info!("Wifi connected to external AP");
    wifi.wait_netif_up().await.unwrap();
    info!("Wifi netif up");

    wifi_connected(in_out).await.unwrap();

    ConnectionState::Check
}

async fn state_check<T>(wifi: &mut AsyncWifi<T>) -> ConnectionState
where
    T: Wifi<Error = EspError> + NonBlocking,
{
    info!("Wifi state: check");

    loop {
        let wifi_connected = wifi.is_connected().unwrap();
        if !wifi_connected {
            return ConnectionState::Disconnect;
        } else {
            sleep(Duration::from_secs(5)).await;
        }
    }
}

async fn state_disconnect<T>(wifi: &mut AsyncWifi<T>) -> ConnectionState
where
    T: Wifi<Error = EspError> + NonBlocking + NetifStatus,
{
    info!("Wifi state: disconnect");
    wifi.disconnect().await.unwrap();
    ConnectionState::Connect
}

async fn state_onlyap<TMsg, TService>(in_out: &CmpInOut<TMsg, TService>) -> ConnectionState
where
    TMsg: MsgDataBound,
    TService: ServiceBound,
{
    info!("Wifi state: only AP");
    wifi_connected(in_out).await.unwrap();
    loop {
        sleep(Duration::from_secs(10)).await
    }
}

/// Состояние соединения
enum ConnectionState {
    /// Подготовка. Запускает точку доступа, если настроена
    PreLaunch,
    /// Подключение к внешней точке доступа
    Connect,
    /// Проверка соединения
    Check,
    /// Отключение
    Disconnect,
    /// Настроен режим только точки доступа
    OnlyAP,
}

async fn wifi_connected<TMsg, TService>(in_out: &CmpInOut<TMsg, TService>) -> super::Result<()>
where
    TMsg: MsgDataBound,
    TService: ServiceBound,
{
    // Рассылаем сообщение - wifi подключен
    let msg = Message::new(MsgData::System(system_messages::System::EspWifiConnected));
    in_out.send_output(msg).await.unwrap();

    Ok(())
}