| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- #include "path.h"
- #include <stddef.h>
- void path_extract_filename_no_ext(const char* path, FuriString* filename) {
- furi_string_set(filename, path);
- size_t start_position = furi_string_search_rchar(filename, '/');
- size_t end_position = furi_string_search_rchar(filename, '.');
- if(start_position == FURI_STRING_FAILURE) {
- start_position = 0;
- } else {
- start_position += 1;
- }
- if(end_position == FURI_STRING_FAILURE) {
- end_position = furi_string_size(filename);
- }
- furi_string_mid(filename, start_position, end_position - start_position);
- }
- void path_extract_filename(FuriString* path, FuriString* name, bool trim_ext) {
- size_t filename_start = furi_string_search_rchar(path, '/');
- if(filename_start > 0) {
- filename_start++;
- furi_string_set_n(name, path, filename_start, furi_string_size(path) - filename_start);
- }
- if(trim_ext) {
- size_t dot = furi_string_search_rchar(name, '.');
- if(dot > 0) {
- furi_string_left(name, dot);
- }
- }
- }
- void path_extract_extension(FuriString* path, char* ext, size_t ext_len_max) {
- size_t dot = furi_string_search_rchar(path, '.');
- size_t filename_start = furi_string_search_rchar(path, '/');
- if((dot > 0) && (filename_start < dot)) {
- strlcpy(ext, &(furi_string_get_cstr(path))[dot], ext_len_max);
- }
- }
- static inline void path_cleanup(FuriString* path) {
- furi_string_trim(path);
- while(furi_string_end_with(path, "/")) {
- furi_string_left(path, furi_string_size(path) - 1);
- }
- }
- void path_extract_basename(const char* path, FuriString* basename) {
- furi_string_set(basename, path);
- path_cleanup(basename);
- size_t pos = furi_string_search_rchar(basename, '/');
- if(pos != FURI_STRING_FAILURE) {
- furi_string_right(basename, pos + 1);
- }
- }
- void path_extract_dirname(const char* path, FuriString* dirname) {
- furi_string_set(dirname, path);
- path_cleanup(dirname);
- size_t pos = furi_string_search_rchar(dirname, '/');
- if(pos != FURI_STRING_FAILURE) {
- furi_string_left(dirname, pos);
- }
- }
- void path_append(FuriString* path, const char* suffix) {
- path_cleanup(path);
- FuriString* suffix_str;
- suffix_str = furi_string_alloc_set(suffix);
- furi_string_trim(suffix_str);
- furi_string_trim(suffix_str, "/");
- furi_string_cat_printf(path, "/%s", furi_string_get_cstr(suffix_str));
- furi_string_free(suffix_str);
- }
- void path_concat(const char* path, const char* suffix, FuriString* out_path) {
- furi_string_set(out_path, path);
- path_append(out_path, suffix);
- }
- bool path_contains_only_ascii(const char* path) {
- if(!path) {
- return false;
- }
- const char* name_pos = strrchr(path, '/');
- if(name_pos == NULL) {
- name_pos = path;
- } else {
- name_pos++;
- }
- while(*name_pos != '\0') {
- if((*name_pos >= '0') && (*name_pos <= '9')) {
- name_pos++;
- continue;
- } else if((*name_pos >= 'A') && (*name_pos <= 'Z')) {
- name_pos++;
- continue;
- } else if((*name_pos >= 'a') && (*name_pos <= 'z')) {
- name_pos++;
- continue;
- } else if(strchr(" .!#\\$%&'()-@^_`{}~", *name_pos) != NULL) {
- name_pos++;
- continue;
- }
- return false;
- }
- return true;
- }
|