mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-15 11:48:12 +00:00
237 lines
5.0 KiB
C
237 lines
5.0 KiB
C
/* radare - LGPL - Copyright 2007-2020 - pancake */
|
|
|
|
#include "r_types.h"
|
|
#include "r_util.h"
|
|
#include "r_cons.h"
|
|
#include "r_bin.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <stdarg.h>
|
|
|
|
// TODO: simplify this horrible loop
|
|
R_API void r_str_trim_path(char *s) {
|
|
char *src, *dst, *p;
|
|
int i = 0;
|
|
if (!s || !*s) {
|
|
return;
|
|
}
|
|
dst = src = s + 1;
|
|
while (*src) {
|
|
if (*(src - 1) == '/' && *src == '.' && *(src + 1) == '.') {
|
|
if (*(src + 2) == '/' || *(src + 2) == '\0') {
|
|
p = dst - 1;
|
|
while (s != p) {
|
|
if (*p == '/') {
|
|
if (i) {
|
|
dst = p + 1;
|
|
i = 0;
|
|
break;
|
|
}
|
|
i = 1;
|
|
}
|
|
p--;
|
|
}
|
|
if (s == p && *p == '/') {
|
|
dst = p + 1;
|
|
}
|
|
src = src + 2;
|
|
} else {
|
|
*dst = *src;
|
|
dst++;
|
|
}
|
|
} else if (*src == '/' && *(src + 1) == '.' && (*(src + 2) == '/' || *(src + 2) == '\0')) {
|
|
src++;
|
|
} else if (*src != '/' || *(src - 1) != '/') {
|
|
*dst = *src;
|
|
dst++;
|
|
}
|
|
src++;
|
|
}
|
|
if (dst > s + 1 && *(dst - 1) == '/') {
|
|
*(dst - 1) = 0;
|
|
} else {
|
|
*dst = 0;
|
|
}
|
|
}
|
|
|
|
R_API char* r_str_trim_lines(char *str) {
|
|
RList *list = r_str_split_list (str, "\n", 0);
|
|
char *s;
|
|
RListIter *iter;
|
|
RStrBuf *sb = r_strbuf_new ("");
|
|
r_list_foreach (list, iter, s) {
|
|
//r_str_ansi_trim (s, -1, 99999);
|
|
r_str_ansi_filter (s, NULL, NULL, -1);
|
|
r_str_trim (s);
|
|
if (*s) {
|
|
r_strbuf_appendf (sb, "%s\n", s);
|
|
}
|
|
}
|
|
r_list_free (list);
|
|
free (str);
|
|
return r_strbuf_drain (sb);
|
|
}
|
|
|
|
R_API char *r_str_trim_dup(const char *str) {
|
|
char *a = strdup (str);
|
|
r_str_trim (a);
|
|
return a;
|
|
}
|
|
|
|
// Returns a pointer to the first non-whitespace character of str.
|
|
// TODO: Find a better name: to r_str_trim_head_ro(), r_str_skip_head or so
|
|
R_API const char *r_str_trim_head_ro(const char *str) {
|
|
r_return_val_if_fail (str, NULL);
|
|
for (; *str && IS_WHITECHAR (*str); str++) {
|
|
;
|
|
}
|
|
return str;
|
|
}
|
|
|
|
// TODO: find better name
|
|
R_API const char *r_str_trim_head_wp(const char *str) {
|
|
r_return_val_if_fail (str, NULL);
|
|
for (; *str && !IS_WHITESPACE (*str); str++) {
|
|
;
|
|
}
|
|
return str;
|
|
}
|
|
|
|
/* remove spaces from the head of the string.
|
|
* the string is changed in place */
|
|
R_API void r_str_trim_head(char *str) {
|
|
char *p = (char *)r_str_trim_head_ro (str);
|
|
if (p && p != str) {
|
|
memmove (str, p, strlen (p) + 1);
|
|
}
|
|
}
|
|
|
|
/* remove spaces between args of the string except if args are surrounding
|
|
* by quotes.
|
|
* the string is changed in place */
|
|
R_API void r_str_trim_args(char *str) {
|
|
const char *quotes = "\"'";
|
|
const char *isquote;
|
|
int idx, _b = 0, q = 0;
|
|
ut8 *b = (ut8*)&_b;
|
|
char *ws, *ch = str;
|
|
size_t len;
|
|
|
|
ws = (char *)r_str_trim_head_wp (ch);
|
|
len = strlen (ws);
|
|
while (*ws) {
|
|
ch = (char *)r_str_trim_head_ro (ws);
|
|
if (!*ch) {
|
|
break;
|
|
}
|
|
isquote = strchr (quotes, *ch);
|
|
if (isquote) {
|
|
idx = (int)(size_t)(isquote - quotes);
|
|
_b = R_BIT_TOGGLE (b, idx);
|
|
q = 1;
|
|
}
|
|
len -= ch - ws;
|
|
memmove (ws + 1, ch + q, len - q + 1);
|
|
if (q == 1) {
|
|
q = 0;
|
|
int i = 0;
|
|
for (; *ch; ch++) {
|
|
if (*ch == '\\') {
|
|
ch++;
|
|
continue;
|
|
}
|
|
isquote = strchr (quotes, *ch);
|
|
if (isquote) {
|
|
idx = (int)(size_t)(isquote - quotes);
|
|
_b = R_BIT_TOGGLE (b, idx);
|
|
if (!_b) {
|
|
break;
|
|
} else {
|
|
_b = R_BIT_TOGGLE (b, idx);
|
|
}
|
|
}
|
|
i++;
|
|
}
|
|
if (!*ch) {
|
|
break;
|
|
}
|
|
len -= i;
|
|
r_str_ncpy (ch, ch + 1, len);
|
|
ws = ch + 1;
|
|
} else {
|
|
ws = (char *)r_str_trim_head_wp (ch);
|
|
len -= ws - ch;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Remove whitespace chars from the tail of the string, replacing them with
|
|
// null bytes. The string is changed in-place.
|
|
R_API void r_str_trim_tail(char *str) {
|
|
r_return_if_fail (str);
|
|
size_t length = strlen (str);
|
|
while (length-- > 0) {
|
|
if (IS_WHITECHAR (str[length])) {
|
|
str[length] = '\0';
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Removes spaces from the head of the string, and zeros out whitespaces from
|
|
// the tail of the string. The string is changed in place.
|
|
R_API void r_str_trim(char *str) {
|
|
r_str_trim_head (str);
|
|
r_str_trim_tail (str);
|
|
}
|
|
|
|
// no copy, like trim_head+tail but with trim_head_ro, beware heap issues
|
|
// TODO: rename to r_str_trim_weak() ?
|
|
R_API char *r_str_trim_nc(char *str) {
|
|
char *s = (char *)r_str_trim_head_ro (str);
|
|
r_str_trim_tail (s);
|
|
return s;
|
|
}
|
|
|
|
/* supposed to chop a string with ansi controls to max length of n. */
|
|
R_API int r_str_ansi_trim(char *str, int str_len, int n) {
|
|
r_return_val_if_fail (str, 0);
|
|
char ch, ch2;
|
|
int back = 0, i = 0, len = 0;
|
|
/* simple case - no need to cut */
|
|
if (str_len < 0) {
|
|
str_len = strlen (str);
|
|
}
|
|
if (n >= str_len) {
|
|
str[str_len] = 0;
|
|
return str_len;
|
|
}
|
|
while ((i < str_len) && str[i] && len < n && n > 0) {
|
|
ch = str[i];
|
|
ch2 = str[i + 1];
|
|
if (ch == 0x1b) {
|
|
if (ch2 == '\\') {
|
|
i++;
|
|
} else if (ch2 == ']') {
|
|
if (!strncmp (str + 2 + 5, "rgb:", 4)) {
|
|
i += 18;
|
|
}
|
|
} else if (ch2 == '[') {
|
|
for (++i; (i < str_len) && str[i] && str[i] != 'J' && str[i] != 'm' && str[i] != 'H';
|
|
i++) {
|
|
;
|
|
}
|
|
}
|
|
} else if ((str[i] & 0xc0) != 0x80) {
|
|
len++;
|
|
}
|
|
i++;
|
|
back = i; /* index in the original array */
|
|
}
|
|
str[back] = 0;
|
|
return back;
|
|
}
|