forked from adafruit/circuitpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflow.c
More file actions
255 lines (230 loc) · 7.66 KB
/
workflow.c
File metadata and controls
255 lines (230 loc) · 7.66 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include <stdbool.h>
#include "py/mpconfig.h"
#include "py/mpstate.h"
#include "py/stackctrl.h"
#include "supervisor/background_callback.h"
#include "supervisor/fatfs.h"
#include "supervisor/filesystem.h"
#include "supervisor/workflow.h"
#include "supervisor/shared/serial.h"
#include "supervisor/shared/workflow.h"
#if CIRCUITPY_BLEIO
#include "shared-bindings/_bleio/__init__.h"
#include "supervisor/shared/bluetooth/bluetooth.h"
#if CIRCUITPY_SERIAL_BLE
#include "supervisor/shared/bluetooth/serial.h"
#endif
#endif
#if CIRCUITPY_TINYUSB || CIRCUITPY_USB_KEYBOARD_WORKFLOW
#include "supervisor/usb.h"
#include "tusb.h"
#endif
#if CIRCUITPY_WEB_WORKFLOW
#include "supervisor/shared/web_workflow/web_workflow.h"
#include "supervisor/shared/web_workflow/websocket.h"
static background_callback_t workflow_background_cb = {NULL, NULL};
#endif
// Called during a VM reset. Doesn't actually reset things.
void supervisor_workflow_reset(void) {
#if CIRCUITPY_BLEIO
supervisor_start_bluetooth();
#endif
#if CIRCUITPY_WEB_WORKFLOW
bool result = supervisor_start_web_workflow();
if (workflow_background_cb.fun) {
if (result) {
supervisor_workflow_request_background();
}
}
#endif
}
void supervisor_workflow_request_background(void) {
#if CIRCUITPY_WEB_WORKFLOW
if (workflow_background_cb.fun) {
workflow_background_cb.data = NULL;
background_callback_add_core(&workflow_background_cb);
} else {
// Unblock polling thread if necessary
socketpool_socket_poll_resume();
}
#endif
}
// Return true if host has completed connection to us (such as USB enumeration).
// This is used to determine when to pretend to deep sleep.
bool supervisor_workflow_active(void) {
#if CIRCUITPY_USB_DEVICE
// Eventually there might be other non-USB workflows, such as BLE.
// tud_ready() checks for usb mounted and not suspended.
if (tud_ready()) {
return true;
}
#endif
#if CIRCUITPY_WEB_WORKFLOW
if (websocket_connected()) {
return true;
}
#endif
#if CIRCUITPY_SERIAL_BLE
if (ble_serial_connected()) {
return true;
}
#endif
return false;
}
void supervisor_workflow_start(void) {
// Start USB after giving boot.py a chance to tweak behavior.
#if CIRCUITPY_TINYUSB
// Setup USB connection after heap is available.
// It needs the heap to build descriptors.
usb_init();
#endif
// Set up any other serial connection.
serial_init();
#if CIRCUITPY_BLEIO
bleio_reset();
supervisor_start_bluetooth();
#endif
#if CIRCUITPY_WEB_WORKFLOW
if (supervisor_start_web_workflow()) {
// Enable background callbacks if web_workflow startup successful
memset(&workflow_background_cb, 0, sizeof(workflow_background_cb));
workflow_background_cb.fun = supervisor_web_workflow_background;
}
#endif
#if CIRCUITPY_USB_KEYBOARD_WORKFLOW
usb_keyboard_init();
#endif
}
FRESULT supervisor_workflow_move(const char *old_path, const char *new_path) {
const char *old_mount_path;
const char *new_mount_path;
fs_user_mount_t *active_mount = filesystem_for_path(old_path, &old_mount_path);
fs_user_mount_t *new_mount = filesystem_for_path(new_path, &new_mount_path);
if (active_mount == NULL || new_mount == NULL || active_mount != new_mount || !filesystem_native_fatfs(active_mount)) {
return FR_NO_PATH;
}
if (!filesystem_lock(active_mount)) {
return FR_WRITE_PROTECTED;
}
FATFS *fs = &active_mount->fatfs;
FRESULT result = f_rename(fs, old_mount_path, new_mount_path);
filesystem_unlock(active_mount);
return result;
}
FRESULT supervisor_workflow_mkdir(DWORD fattime, const char *full_path) {
const char *mount_path;
fs_user_mount_t *active_mount = filesystem_for_path(full_path, &mount_path);
if (active_mount == NULL || !filesystem_native_fatfs(active_mount)) {
return FR_NO_PATH;
}
// If there is a mount on the directory, then the mount_path will be empty.
if (strlen(mount_path) == 0) {
return FR_EXIST;
}
// Check to see if the directory exists already. We don't care about writing
// it if it already exists.
FATFS *fs = &active_mount->fatfs;
FILINFO file;
FRESULT result = f_stat(fs, mount_path, &file);
if (result == FR_OK) {
return FR_EXIST;
}
if (!filesystem_lock(active_mount)) {
return FR_WRITE_PROTECTED;
}
override_fattime(fattime);
result = f_mkdir(fs, mount_path);
override_fattime(0);
filesystem_unlock(active_mount);
return result;
}
FRESULT supervisor_workflow_mkdir_parents(DWORD fattime, char *path) {
override_fattime(fattime);
FRESULT result = FR_OK;
// Make parent directories.
for (size_t j = 1; j < strlen(path); j++) {
if (path[j] == '/') {
path[j] = '\0';
result = supervisor_workflow_mkdir(fattime, path);
path[j] = '/';
if (result != FR_OK && result != FR_EXIST) {
break;
}
}
}
// Make the target directory.
if (result == FR_OK || result == FR_EXIST) {
result = supervisor_workflow_mkdir(fattime, path);
// This may return FR_EXIST when a file with the same name already exists.
// FATFS does the same thing.
}
override_fattime(0);
return result;
}
static FRESULT supervisor_workflow_delete_directory_contents(FATFS *fs, const TCHAR *path) {
FF_DIR dir;
FILINFO file_info;
// Check the stack since we're putting paths on it.
if (mp_stack_usage() >= MP_STATE_THREAD(stack_limit)) {
return FR_INT_ERR;
}
FRESULT res = FR_OK;
while (res == FR_OK) {
res = f_opendir(fs, &dir, path);
if (res != FR_OK) {
break;
}
res = f_readdir(&dir, &file_info);
// We close and reopen the directory every time since we're deleting
// entries and it may invalidate the directory handle.
f_closedir(&dir);
if (res != FR_OK || file_info.fname[0] == '\0') {
break;
}
size_t pathlen = strlen(path);
size_t fnlen = strlen(file_info.fname);
TCHAR full_path[pathlen + 1 + fnlen];
memcpy(full_path, path, pathlen);
full_path[pathlen] = '/';
size_t full_pathlen = pathlen + 1 + fnlen;
memcpy(full_path + pathlen + 1, file_info.fname, fnlen);
full_path[full_pathlen] = '\0';
if ((file_info.fattrib & AM_DIR) != 0) {
res = supervisor_workflow_delete_directory_contents(fs, full_path);
}
if (res != FR_OK) {
break;
}
res = f_unlink(fs, full_path);
}
f_closedir(&dir);
return res;
}
FRESULT supervisor_workflow_delete_recursive(const char *full_path) {
const char *mount_path;
fs_user_mount_t *active_mount = filesystem_for_path(full_path, &mount_path);
if (active_mount == NULL || !filesystem_native_fatfs(active_mount)) {
return FR_NO_PATH;
}
if (!filesystem_lock(active_mount)) {
return FR_WRITE_PROTECTED;
}
FATFS *fs = &active_mount->fatfs;
FILINFO file;
FRESULT result = f_stat(fs, mount_path, &file);
if (result == FR_OK) {
if ((file.fattrib & AM_DIR) != 0) {
result = supervisor_workflow_delete_directory_contents(fs, mount_path);
}
if (result == FR_OK) {
result = f_unlink(fs, mount_path);
}
}
filesystem_unlock(active_mount);
return result;
}