2022-07-27 20:00:38 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2022 Scott Shawcroft for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "genhdr/mpversion.h"
|
|
|
|
#include "py/mpconfig.h"
|
|
|
|
#include "supervisor/background_callback.h"
|
|
|
|
#include "supervisor/serial.h"
|
|
|
|
#include "supervisor/shared/title_bar.h"
|
|
|
|
|
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
#include "supervisor/shared/web_workflow/web_workflow.h"
|
|
|
|
#endif
|
|
|
|
static background_callback_t title_bar_background_cb;
|
|
|
|
|
|
|
|
static bool _forced_dirty = false;
|
|
|
|
static bool _suspended = false;
|
|
|
|
|
|
|
|
static void title_bar_background(void *data) {
|
2022-07-29 14:02:35 -04:00
|
|
|
#if !CIRCUITPY_STATUS_BAR
|
|
|
|
return;
|
|
|
|
#endif
|
2022-07-27 20:00:38 -04:00
|
|
|
if (_suspended) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool dirty = _forced_dirty;
|
|
|
|
|
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
dirty = dirty || supervisor_web_workflow_status_dirty();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!dirty) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_forced_dirty = false;
|
|
|
|
// Neighboring "" "" are concatenated by the compiler. Without this separation, the hex code
|
|
|
|
// doesn't get terminated after two following characters and the value is invalid.
|
|
|
|
// This is the OSC command to set the title and the icon text. It can be up to 255 characters
|
|
|
|
// but some may be cut off.
|
|
|
|
serial_write("\x1b" "]0;");
|
|
|
|
serial_write("🐍 ");
|
|
|
|
#if CIRCUITPY_WEB_WORKFLOW
|
|
|
|
supervisor_web_workflow_status();
|
|
|
|
#endif
|
|
|
|
serial_write("|");
|
|
|
|
serial_write(MICROPY_GIT_TAG);
|
|
|
|
// Send string terminator
|
|
|
|
serial_write("\x1b" "\\");
|
|
|
|
}
|
|
|
|
|
|
|
|
void supervisor_title_bar_start(void) {
|
2022-07-29 14:02:35 -04:00
|
|
|
#if !CIRCUITPY_STATUS_BAR
|
|
|
|
return;
|
|
|
|
#endif
|
2022-07-27 20:00:38 -04:00
|
|
|
title_bar_background_cb.fun = title_bar_background;
|
|
|
|
title_bar_background_cb.data = NULL;
|
|
|
|
supervisor_title_bar_request_update(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void supervisor_title_bar_request_update(bool force_dirty) {
|
2022-07-29 14:02:35 -04:00
|
|
|
#if !CIRCUITPY_STATUS_BAR
|
|
|
|
return;
|
|
|
|
#endif
|
2022-07-27 20:00:38 -04:00
|
|
|
if (force_dirty) {
|
|
|
|
_forced_dirty = true;
|
|
|
|
}
|
|
|
|
background_callback_add_core(&title_bar_background_cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
void supervisor_title_bar_suspend(void) {
|
2022-07-29 14:02:35 -04:00
|
|
|
#if !CIRCUITPY_STATUS_BAR
|
|
|
|
return;
|
|
|
|
#endif
|
2022-07-27 20:00:38 -04:00
|
|
|
_suspended = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void supervisor_title_bar_resume(void) {
|
2022-07-29 14:02:35 -04:00
|
|
|
#if !CIRCUITPY_STATUS_BAR
|
|
|
|
return;
|
|
|
|
#endif
|
2022-07-27 20:00:38 -04:00
|
|
|
_suspended = false;
|
|
|
|
supervisor_title_bar_request_update(false);
|
|
|
|
}
|