224d0aefe4
* First part of multitarget porting * Delete firmware/targets/f7/Inc directory * Delete firmware/targets/f7/Src directory * gpio: cli fixes; about: using version from HAL * sdk: path fixes * gui: include fixes * applications: more include fixes * gpio: ported to new apis * hal: introduced furi_hal_target_hw.h; libs: added one_wire * hal: f18 target * github: also build f18 by default * typo fix * fbt: removed extra checks on app list * api: explicitly bundling select mlib headers with sdk * hal: f18: changed INPUT_DEBOUNCE_TICKS to match f7 * cleaned up commented out code * docs: added info on hw targets * docs: targets: formatting fixes * f18: fixed link error * f18: fixed API version to match f7 * docs: hardware: minor wording fixes * faploader: added fw target check * docs: typo fixes * github: not building komi target by default * fbt: support for `targets` field for built-in apps * github: reworked build flow to exclude app_set; fbt: removed komi-specific appset; added additional target buildset check * github: fixed build; nfc: fixed pvs warnings * attempt to fix target id * f7, f18: removed certain HAL function from public API * apps: debug: enabled bt_debug_app for f18 * Targets: backport input pins configuration routine from F7 to F18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
568 lines
20 KiB
C
568 lines
20 KiB
C
#include <furi_hal_light.h>
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
#include <storage/storage.h>
|
|
#include <input/input.h>
|
|
#include "notification.h"
|
|
#include "notification_messages.h"
|
|
#include "notification_app.h"
|
|
|
|
#define TAG "NotificationSrv"
|
|
|
|
static const uint8_t minimal_delay = 100;
|
|
static const uint8_t led_off_values[NOTIFICATION_LED_COUNT] = {0x00, 0x00, 0x00};
|
|
|
|
static const uint8_t reset_red_mask = 1 << 0;
|
|
static const uint8_t reset_green_mask = 1 << 1;
|
|
static const uint8_t reset_blue_mask = 1 << 2;
|
|
static const uint8_t reset_vibro_mask = 1 << 3;
|
|
static const uint8_t reset_sound_mask = 1 << 4;
|
|
static const uint8_t reset_display_mask = 1 << 5;
|
|
static const uint8_t reset_blink_mask = 1 << 6;
|
|
|
|
void notification_vibro_on();
|
|
void notification_vibro_off();
|
|
void notification_sound_on(float freq, float volume);
|
|
void notification_sound_off();
|
|
|
|
uint8_t notification_settings_get_display_brightness(NotificationApp* app, uint8_t value);
|
|
uint8_t notification_settings_get_rgb_led_brightness(NotificationApp* app, uint8_t value);
|
|
uint32_t notification_settings_display_off_delay_ticks(NotificationApp* app);
|
|
|
|
void notification_message_save_settings(NotificationApp* app) {
|
|
NotificationAppMessage m = {
|
|
.type = SaveSettingsMessage, .back_event = furi_event_flag_alloc()};
|
|
furi_check(furi_message_queue_put(app->queue, &m, FuriWaitForever) == FuriStatusOk);
|
|
furi_event_flag_wait(
|
|
m.back_event, NOTIFICATION_EVENT_COMPLETE, FuriFlagWaitAny, FuriWaitForever);
|
|
furi_event_flag_free(m.back_event);
|
|
};
|
|
|
|
// internal layer
|
|
void notification_apply_internal_led_layer(NotificationLedLayer* layer, uint8_t layer_value) {
|
|
furi_assert(layer);
|
|
furi_assert(layer->index < LayerMAX);
|
|
|
|
// set value
|
|
layer->value[LayerInternal] = layer_value;
|
|
|
|
// apply if current layer is internal
|
|
if(layer->index == LayerInternal) {
|
|
furi_hal_light_set(layer->light, layer->value[LayerInternal]);
|
|
}
|
|
}
|
|
|
|
bool notification_is_any_led_layer_internal_and_not_empty(NotificationApp* app) {
|
|
bool result = false;
|
|
if((app->led[0].index == LayerInternal) || (app->led[1].index == LayerInternal) ||
|
|
(app->led[2].index == LayerInternal)) {
|
|
if((app->led[0].value[LayerInternal] != 0x00) ||
|
|
(app->led[1].value[LayerInternal] != 0x00) ||
|
|
(app->led[2].value[LayerInternal] != 0x00)) {
|
|
result = true;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// notification layer
|
|
void notification_apply_notification_led_layer(
|
|
NotificationLedLayer* layer,
|
|
const uint8_t layer_value) {
|
|
furi_assert(layer);
|
|
furi_assert(layer->index < LayerMAX);
|
|
|
|
// set value
|
|
layer->index = LayerNotification;
|
|
// set layer
|
|
layer->value[LayerNotification] = layer_value;
|
|
// apply
|
|
furi_hal_light_set(layer->light, layer->value[LayerNotification]);
|
|
}
|
|
|
|
void notification_reset_notification_led_layer(NotificationLedLayer* layer) {
|
|
furi_assert(layer);
|
|
furi_assert(layer->index < LayerMAX);
|
|
|
|
// set value
|
|
layer->value[LayerNotification] = 0;
|
|
// set layer
|
|
layer->index = LayerInternal;
|
|
|
|
// apply
|
|
furi_hal_light_set(layer->light, layer->value[LayerInternal]);
|
|
}
|
|
|
|
void notification_reset_notification_layer(NotificationApp* app, uint8_t reset_mask) {
|
|
if(reset_mask & reset_blink_mask) {
|
|
furi_hal_light_blink_stop();
|
|
}
|
|
if(reset_mask & reset_red_mask) {
|
|
notification_reset_notification_led_layer(&app->led[0]);
|
|
}
|
|
if(reset_mask & reset_green_mask) {
|
|
notification_reset_notification_led_layer(&app->led[1]);
|
|
}
|
|
if(reset_mask & reset_blue_mask) {
|
|
notification_reset_notification_led_layer(&app->led[2]);
|
|
}
|
|
if(reset_mask & reset_vibro_mask) {
|
|
notification_vibro_off();
|
|
}
|
|
if(reset_mask & reset_sound_mask) {
|
|
notification_sound_off();
|
|
}
|
|
if(reset_mask & reset_display_mask) {
|
|
furi_timer_start(app->display_timer, notification_settings_display_off_delay_ticks(app));
|
|
}
|
|
}
|
|
|
|
static void notification_apply_notification_leds(NotificationApp* app, const uint8_t* values) {
|
|
for(uint8_t i = 0; i < NOTIFICATION_LED_COUNT; i++) {
|
|
notification_apply_notification_led_layer(
|
|
&app->led[i], notification_settings_get_rgb_led_brightness(app, values[i]));
|
|
}
|
|
}
|
|
|
|
// settings
|
|
uint8_t notification_settings_get_display_brightness(NotificationApp* app, uint8_t value) {
|
|
return (value * app->settings.display_brightness);
|
|
}
|
|
|
|
uint8_t notification_settings_get_rgb_led_brightness(NotificationApp* app, uint8_t value) {
|
|
return (value * app->settings.led_brightness);
|
|
}
|
|
|
|
uint32_t notification_settings_display_off_delay_ticks(NotificationApp* app) {
|
|
return (
|
|
(float)(app->settings.display_off_delay_ms) /
|
|
(1000.0f / furi_kernel_get_tick_frequency()));
|
|
}
|
|
|
|
// generics
|
|
void notification_vibro_on() {
|
|
furi_hal_vibro_on(true);
|
|
}
|
|
|
|
void notification_vibro_off() {
|
|
furi_hal_vibro_on(false);
|
|
}
|
|
|
|
void notification_sound_on(float freq, float volume) {
|
|
if(furi_hal_speaker_is_mine() || furi_hal_speaker_acquire(30)) {
|
|
furi_hal_speaker_start(freq, volume);
|
|
}
|
|
}
|
|
|
|
void notification_sound_off() {
|
|
if(furi_hal_speaker_is_mine()) {
|
|
furi_hal_speaker_stop();
|
|
furi_hal_speaker_release();
|
|
}
|
|
}
|
|
|
|
// display timer
|
|
static void notification_display_timer(void* ctx) {
|
|
furi_assert(ctx);
|
|
NotificationApp* app = ctx;
|
|
notification_message(app, &sequence_display_backlight_off);
|
|
}
|
|
|
|
// message processing
|
|
void notification_process_notification_message(
|
|
NotificationApp* app,
|
|
NotificationAppMessage* message) {
|
|
uint32_t notification_message_index = 0;
|
|
const NotificationMessage* notification_message;
|
|
notification_message = (*message->sequence)[notification_message_index];
|
|
|
|
bool led_active = false;
|
|
uint8_t led_values[NOTIFICATION_LED_COUNT] = {0x00, 0x00, 0x00};
|
|
bool reset_notifications = true;
|
|
float speaker_volume_setting = app->settings.speaker_volume;
|
|
bool vibro_setting = app->settings.vibro_on;
|
|
float display_brightness_setting = app->settings.display_brightness;
|
|
|
|
uint8_t reset_mask = 0;
|
|
|
|
while(notification_message != NULL) {
|
|
switch(notification_message->type) {
|
|
case NotificationMessageTypeLedDisplayBacklight:
|
|
// if on - switch on and start timer
|
|
// if off - switch off and stop timer
|
|
// on timer - switch off
|
|
if(notification_message->data.led.value > 0x00) {
|
|
notification_apply_notification_led_layer(
|
|
&app->display,
|
|
notification_message->data.led.value * display_brightness_setting);
|
|
} else {
|
|
notification_reset_notification_led_layer(&app->display);
|
|
if(furi_timer_is_running(app->display_timer)) {
|
|
furi_timer_stop(app->display_timer);
|
|
}
|
|
}
|
|
reset_mask |= reset_display_mask;
|
|
break;
|
|
case NotificationMessageTypeLedDisplayBacklightEnforceOn:
|
|
furi_assert(app->display_led_lock < UINT8_MAX);
|
|
app->display_led_lock++;
|
|
if(app->display_led_lock == 1) {
|
|
notification_apply_internal_led_layer(
|
|
&app->display,
|
|
notification_message->data.led.value * display_brightness_setting);
|
|
}
|
|
break;
|
|
case NotificationMessageTypeLedDisplayBacklightEnforceAuto:
|
|
furi_assert(app->display_led_lock > 0);
|
|
app->display_led_lock--;
|
|
if(app->display_led_lock == 0) {
|
|
notification_apply_internal_led_layer(
|
|
&app->display,
|
|
notification_message->data.led.value * display_brightness_setting);
|
|
}
|
|
break;
|
|
case NotificationMessageTypeLedRed:
|
|
// store and send on delay or after seq
|
|
led_active = true;
|
|
led_values[0] = notification_message->data.led.value;
|
|
app->led[0].value_last[LayerNotification] = led_values[0];
|
|
reset_mask |= reset_red_mask;
|
|
break;
|
|
case NotificationMessageTypeLedGreen:
|
|
// store and send on delay or after seq
|
|
led_active = true;
|
|
led_values[1] = notification_message->data.led.value;
|
|
app->led[1].value_last[LayerNotification] = led_values[1];
|
|
reset_mask |= reset_green_mask;
|
|
break;
|
|
case NotificationMessageTypeLedBlue:
|
|
// store and send on delay or after seq
|
|
led_active = true;
|
|
led_values[2] = notification_message->data.led.value;
|
|
app->led[2].value_last[LayerNotification] = led_values[2];
|
|
reset_mask |= reset_blue_mask;
|
|
break;
|
|
case NotificationMessageTypeLedBlinkStart:
|
|
// store and send on delay or after seq
|
|
led_active = true;
|
|
furi_hal_light_blink_start(
|
|
notification_message->data.led_blink.color,
|
|
app->settings.led_brightness * 255,
|
|
notification_message->data.led_blink.on_time,
|
|
notification_message->data.led_blink.period);
|
|
reset_mask |= reset_blink_mask;
|
|
reset_mask |= reset_red_mask;
|
|
reset_mask |= reset_green_mask;
|
|
reset_mask |= reset_blue_mask;
|
|
break;
|
|
case NotificationMessageTypeLedBlinkColor:
|
|
led_active = true;
|
|
furi_hal_light_blink_set_color(notification_message->data.led_blink.color);
|
|
break;
|
|
case NotificationMessageTypeLedBlinkStop:
|
|
furi_hal_light_blink_stop();
|
|
reset_mask &= ~reset_blink_mask;
|
|
reset_mask |= reset_red_mask;
|
|
reset_mask |= reset_green_mask;
|
|
reset_mask |= reset_blue_mask;
|
|
break;
|
|
case NotificationMessageTypeVibro:
|
|
if(notification_message->data.vibro.on) {
|
|
if(vibro_setting) notification_vibro_on();
|
|
} else {
|
|
notification_vibro_off();
|
|
}
|
|
reset_mask |= reset_vibro_mask;
|
|
break;
|
|
case NotificationMessageTypeSoundOn:
|
|
notification_sound_on(
|
|
notification_message->data.sound.frequency,
|
|
notification_message->data.sound.volume * speaker_volume_setting);
|
|
reset_mask |= reset_sound_mask;
|
|
break;
|
|
case NotificationMessageTypeSoundOff:
|
|
notification_sound_off();
|
|
reset_mask |= reset_sound_mask;
|
|
break;
|
|
case NotificationMessageTypeDelay:
|
|
if(led_active) {
|
|
if(notification_is_any_led_layer_internal_and_not_empty(app)) {
|
|
notification_apply_notification_leds(app, led_off_values);
|
|
furi_delay_ms(minimal_delay);
|
|
}
|
|
|
|
led_active = false;
|
|
|
|
notification_apply_notification_leds(app, led_values);
|
|
reset_mask |= reset_red_mask;
|
|
reset_mask |= reset_green_mask;
|
|
reset_mask |= reset_blue_mask;
|
|
}
|
|
|
|
furi_delay_ms(notification_message->data.delay.length);
|
|
break;
|
|
case NotificationMessageTypeDoNotReset:
|
|
reset_notifications = false;
|
|
break;
|
|
case NotificationMessageTypeForceSpeakerVolumeSetting:
|
|
speaker_volume_setting = notification_message->data.forced_settings.speaker_volume;
|
|
break;
|
|
case NotificationMessageTypeForceVibroSetting:
|
|
vibro_setting = notification_message->data.forced_settings.vibro;
|
|
break;
|
|
case NotificationMessageTypeForceDisplayBrightnessSetting:
|
|
display_brightness_setting =
|
|
notification_message->data.forced_settings.display_brightness;
|
|
break;
|
|
case NotificationMessageTypeLedBrightnessSettingApply:
|
|
led_active = true;
|
|
for(uint8_t i = 0; i < NOTIFICATION_LED_COUNT; i++) {
|
|
led_values[i] = app->led[i].value_last[LayerNotification];
|
|
}
|
|
reset_mask |= reset_red_mask;
|
|
reset_mask |= reset_green_mask;
|
|
reset_mask |= reset_blue_mask;
|
|
break;
|
|
}
|
|
notification_message_index++;
|
|
notification_message = (*message->sequence)[notification_message_index];
|
|
};
|
|
|
|
// send and do minimal delay
|
|
if(led_active) {
|
|
bool need_minimal_delay = false;
|
|
if(notification_is_any_led_layer_internal_and_not_empty(app)) {
|
|
need_minimal_delay = true;
|
|
}
|
|
|
|
notification_apply_notification_leds(app, led_values);
|
|
reset_mask |= reset_red_mask;
|
|
reset_mask |= reset_green_mask;
|
|
reset_mask |= reset_blue_mask;
|
|
|
|
if((need_minimal_delay) && (reset_notifications)) {
|
|
notification_apply_notification_leds(app, led_off_values);
|
|
furi_delay_ms(minimal_delay);
|
|
}
|
|
}
|
|
|
|
if(reset_notifications) {
|
|
notification_reset_notification_layer(app, reset_mask);
|
|
}
|
|
}
|
|
|
|
void notification_process_internal_message(NotificationApp* app, NotificationAppMessage* message) {
|
|
uint32_t notification_message_index = 0;
|
|
const NotificationMessage* notification_message;
|
|
notification_message = (*message->sequence)[notification_message_index];
|
|
|
|
while(notification_message != NULL) {
|
|
switch(notification_message->type) {
|
|
case NotificationMessageTypeLedDisplayBacklight:
|
|
notification_apply_internal_led_layer(
|
|
&app->display,
|
|
notification_settings_get_display_brightness(
|
|
app, notification_message->data.led.value));
|
|
break;
|
|
case NotificationMessageTypeLedRed:
|
|
app->led[0].value_last[LayerInternal] = notification_message->data.led.value;
|
|
notification_apply_internal_led_layer(
|
|
&app->led[0],
|
|
notification_settings_get_rgb_led_brightness(
|
|
app, notification_message->data.led.value));
|
|
break;
|
|
case NotificationMessageTypeLedGreen:
|
|
app->led[1].value_last[LayerInternal] = notification_message->data.led.value;
|
|
notification_apply_internal_led_layer(
|
|
&app->led[1],
|
|
notification_settings_get_rgb_led_brightness(
|
|
app, notification_message->data.led.value));
|
|
break;
|
|
case NotificationMessageTypeLedBlue:
|
|
app->led[2].value_last[LayerInternal] = notification_message->data.led.value;
|
|
notification_apply_internal_led_layer(
|
|
&app->led[2],
|
|
notification_settings_get_rgb_led_brightness(
|
|
app, notification_message->data.led.value));
|
|
break;
|
|
case NotificationMessageTypeLedBrightnessSettingApply:
|
|
for(uint8_t i = 0; i < NOTIFICATION_LED_COUNT; i++) {
|
|
uint8_t new_val = notification_settings_get_rgb_led_brightness(
|
|
app, app->led[i].value_last[LayerInternal]);
|
|
notification_apply_internal_led_layer(&app->led[i], new_val);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
notification_message_index++;
|
|
notification_message = (*message->sequence)[notification_message_index];
|
|
}
|
|
}
|
|
|
|
static bool notification_load_settings(NotificationApp* app) {
|
|
NotificationSettings settings;
|
|
File* file = storage_file_alloc(furi_record_open(RECORD_STORAGE));
|
|
const size_t settings_size = sizeof(NotificationSettings);
|
|
|
|
FURI_LOG_I(TAG, "loading settings from \"%s\"", NOTIFICATION_SETTINGS_PATH);
|
|
bool fs_result =
|
|
storage_file_open(file, NOTIFICATION_SETTINGS_PATH, FSAM_READ, FSOM_OPEN_EXISTING);
|
|
|
|
if(fs_result) {
|
|
uint16_t bytes_count = storage_file_read(file, &settings, settings_size);
|
|
|
|
if(bytes_count != settings_size) {
|
|
fs_result = false;
|
|
}
|
|
}
|
|
|
|
if(fs_result) {
|
|
FURI_LOG_I(TAG, "load success");
|
|
|
|
if(settings.version != NOTIFICATION_SETTINGS_VERSION) {
|
|
FURI_LOG_E(
|
|
TAG, "version(%d != %d) mismatch", settings.version, NOTIFICATION_SETTINGS_VERSION);
|
|
} else {
|
|
furi_kernel_lock();
|
|
memcpy(&app->settings, &settings, settings_size);
|
|
furi_kernel_unlock();
|
|
}
|
|
} else {
|
|
FURI_LOG_E(TAG, "load failed, %s", storage_file_get_error_desc(file));
|
|
}
|
|
|
|
storage_file_close(file);
|
|
storage_file_free(file);
|
|
furi_record_close(RECORD_STORAGE);
|
|
|
|
return fs_result;
|
|
};
|
|
|
|
static bool notification_save_settings(NotificationApp* app) {
|
|
NotificationSettings settings;
|
|
File* file = storage_file_alloc(furi_record_open(RECORD_STORAGE));
|
|
const size_t settings_size = sizeof(NotificationSettings);
|
|
|
|
FURI_LOG_I(TAG, "saving settings to \"%s\"", NOTIFICATION_SETTINGS_PATH);
|
|
|
|
furi_kernel_lock();
|
|
memcpy(&settings, &app->settings, settings_size);
|
|
furi_kernel_unlock();
|
|
|
|
bool fs_result =
|
|
storage_file_open(file, NOTIFICATION_SETTINGS_PATH, FSAM_WRITE, FSOM_CREATE_ALWAYS);
|
|
|
|
if(fs_result) {
|
|
uint16_t bytes_count = storage_file_write(file, &settings, settings_size);
|
|
|
|
if(bytes_count != settings_size) {
|
|
fs_result = false;
|
|
}
|
|
}
|
|
|
|
if(fs_result) {
|
|
FURI_LOG_I(TAG, "save success");
|
|
} else {
|
|
FURI_LOG_E(TAG, "save failed, %s", storage_file_get_error_desc(file));
|
|
}
|
|
|
|
storage_file_close(file);
|
|
storage_file_free(file);
|
|
furi_record_close(RECORD_STORAGE);
|
|
|
|
return fs_result;
|
|
};
|
|
|
|
static void input_event_callback(const void* value, void* context) {
|
|
furi_assert(value);
|
|
furi_assert(context);
|
|
NotificationApp* app = context;
|
|
notification_message(app, &sequence_display_backlight_on);
|
|
}
|
|
|
|
// App alloc
|
|
static NotificationApp* notification_app_alloc() {
|
|
NotificationApp* app = malloc(sizeof(NotificationApp));
|
|
app->queue = furi_message_queue_alloc(8, sizeof(NotificationAppMessage));
|
|
app->display_timer = furi_timer_alloc(notification_display_timer, FuriTimerTypeOnce, app);
|
|
|
|
app->settings.speaker_volume = 1.0f;
|
|
app->settings.display_brightness = 1.0f;
|
|
app->settings.led_brightness = 1.0f;
|
|
app->settings.display_off_delay_ms = 30000;
|
|
app->settings.vibro_on = true;
|
|
|
|
app->display.value[LayerInternal] = 0x00;
|
|
app->display.value[LayerNotification] = 0x00;
|
|
app->display.index = LayerInternal;
|
|
app->display.light = LightBacklight;
|
|
|
|
app->led[0].value[LayerInternal] = 0x00;
|
|
app->led[0].value[LayerNotification] = 0x00;
|
|
app->led[0].index = LayerInternal;
|
|
app->led[0].light = LightRed;
|
|
|
|
app->led[1].value[LayerInternal] = 0x00;
|
|
app->led[1].value[LayerNotification] = 0x00;
|
|
app->led[1].index = LayerInternal;
|
|
app->led[1].light = LightGreen;
|
|
|
|
app->led[2].value[LayerInternal] = 0x00;
|
|
app->led[2].value[LayerNotification] = 0x00;
|
|
app->led[2].index = LayerInternal;
|
|
app->led[2].light = LightBlue;
|
|
|
|
app->settings.version = NOTIFICATION_SETTINGS_VERSION;
|
|
|
|
// display backlight control
|
|
app->event_record = furi_record_open(RECORD_INPUT_EVENTS);
|
|
furi_pubsub_subscribe(app->event_record, input_event_callback, app);
|
|
notification_message(app, &sequence_display_backlight_on);
|
|
|
|
return app;
|
|
};
|
|
|
|
// App
|
|
int32_t notification_srv(void* p) {
|
|
UNUSED(p);
|
|
NotificationApp* app = notification_app_alloc();
|
|
|
|
if(!notification_load_settings(app)) {
|
|
notification_save_settings(app);
|
|
}
|
|
|
|
notification_vibro_off();
|
|
notification_sound_off();
|
|
notification_apply_internal_led_layer(&app->display, 0x00);
|
|
notification_apply_internal_led_layer(&app->led[0], 0x00);
|
|
notification_apply_internal_led_layer(&app->led[1], 0x00);
|
|
notification_apply_internal_led_layer(&app->led[2], 0x00);
|
|
|
|
furi_record_create(RECORD_NOTIFICATION, app);
|
|
|
|
NotificationAppMessage message;
|
|
while(1) {
|
|
furi_check(furi_message_queue_get(app->queue, &message, FuriWaitForever) == FuriStatusOk);
|
|
|
|
switch(message.type) {
|
|
case NotificationLayerMessage:
|
|
notification_process_notification_message(app, &message);
|
|
break;
|
|
case InternalLayerMessage:
|
|
notification_process_internal_message(app, &message);
|
|
break;
|
|
case SaveSettingsMessage:
|
|
notification_save_settings(app);
|
|
break;
|
|
}
|
|
|
|
if(message.back_event != NULL) {
|
|
furi_event_flag_set(message.back_event, NOTIFICATION_EVENT_COMPLETE);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
};
|