2023-09-09 16:57:06 +08:00
|
|
|
|
/** ------------------------------------------------------------
|
|
|
|
|
* File : xy.h
|
|
|
|
|
* License : MIT
|
|
|
|
|
* Authors : Aoran Zeng <ccmywish@qq.com>
|
|
|
|
|
* Created on : <2023-08-28>
|
2023-09-27 11:35:30 +08:00
|
|
|
|
* Last modified : <2023-09-27>
|
2023-09-09 16:57:06 +08:00
|
|
|
|
*
|
|
|
|
|
* xy:
|
|
|
|
|
*
|
2023-09-16 22:10:54 +08:00
|
|
|
|
* y = f(x)
|
2023-09-09 16:57:06 +08:00
|
|
|
|
*
|
2023-09-26 19:20:12 +08:00
|
|
|
|
* Corss-Platform C utilities for CLI applications in Ruby flavor
|
2023-09-09 16:57:06 +08:00
|
|
|
|
*
|
2023-09-16 22:10:54 +08:00
|
|
|
|
* 该文件采用 MIT 许可证,请查阅 LICENSE.txt 文件
|
2023-09-09 16:57:06 +08:00
|
|
|
|
* ------------------------------------------------------------*/
|
2023-08-28 22:21:14 +08:00
|
|
|
|
|
2023-08-30 15:34:56 +08:00
|
|
|
|
#ifndef XY_H
|
|
|
|
|
#define XY_H
|
|
|
|
|
|
2023-09-03 14:56:49 +08:00
|
|
|
|
#include <stdio.h>
|
2023-09-03 12:01:43 +08:00
|
|
|
|
#include <stdarg.h>
|
2023-08-28 22:21:14 +08:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
2023-08-30 10:57:17 +08:00
|
|
|
|
#include <stdbool.h>
|
2023-08-30 15:34:56 +08:00
|
|
|
|
#include <assert.h>
|
2023-09-05 22:02:47 +08:00
|
|
|
|
#include <stddef.h>
|
2023-09-10 14:50:41 +08:00
|
|
|
|
#include <unistd.h> // For access()
|
2023-08-30 15:34:56 +08:00
|
|
|
|
|
|
|
|
|
// #define NDEBUG
|
2023-08-28 22:21:14 +08:00
|
|
|
|
|
2023-08-29 21:58:51 +08:00
|
|
|
|
#ifdef _WIN32
|
2023-09-22 15:45:12 +08:00
|
|
|
|
#define xy_on_windows true
|
|
|
|
|
#define xy_on_linux false
|
|
|
|
|
#define xy_on_macos false
|
|
|
|
|
#define xy_on_bsd false
|
|
|
|
|
#define xy_os_devnull "nul"
|
2023-08-29 21:58:51 +08:00
|
|
|
|
#include <windows.h>
|
|
|
|
|
#define xy_useutf8() SetConsoleOutputCP(65001)
|
2023-08-30 17:09:59 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
#elif defined(__linux__) || defined(__linux)
|
2023-09-22 15:45:12 +08:00
|
|
|
|
#define xy_on_windows false
|
|
|
|
|
#define xy_on_linux true
|
|
|
|
|
#define xy_on_macos false
|
|
|
|
|
#define xy_on_bsd false
|
2023-09-22 15:57:30 +08:00
|
|
|
|
#define xy_os_devnull "/dev/null"
|
2023-09-03 12:01:43 +08:00
|
|
|
|
#define xy_useutf8()
|
|
|
|
|
|
2023-09-13 22:41:16 +08:00
|
|
|
|
#elif defined(__APPLE__)
|
2023-09-22 15:45:12 +08:00
|
|
|
|
#define xy_on_windows false
|
|
|
|
|
#define xy_on_linux false
|
|
|
|
|
#define xy_on_macos true
|
|
|
|
|
#define xy_on_bsd false
|
2023-09-22 15:57:30 +08:00
|
|
|
|
#define xy_os_devnull "/dev/null"
|
2023-08-29 21:58:51 +08:00
|
|
|
|
#define xy_useutf8()
|
2023-09-03 12:01:43 +08:00
|
|
|
|
|
|
|
|
|
#elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__)
|
2023-09-22 15:45:12 +08:00
|
|
|
|
#define xy_on_windows false
|
|
|
|
|
#define xy_on_linux false
|
|
|
|
|
#define xy_on_macos false
|
|
|
|
|
#define xy_on_bsd true
|
2023-09-22 15:57:30 +08:00
|
|
|
|
#define xy_os_devnull "/dev/null"
|
2023-09-03 12:01:43 +08:00
|
|
|
|
#define xy_useutf8()
|
2023-08-29 21:58:51 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2023-09-22 15:45:12 +08:00
|
|
|
|
|
2023-09-05 22:02:47 +08:00
|
|
|
|
void putf(double n) {printf("%f\n", n);}
|
|
|
|
|
void puti(long long n) {printf("%lld\n", n);}
|
|
|
|
|
void putb(bool n) {if(n) puts("true"); else puts("false");}
|
2023-09-27 16:25:59 +08:00
|
|
|
|
void print(char* s) {printf("%s", s);}
|
|
|
|
|
void println(char* s) {printf("%s\n", s);}
|
2023-08-30 17:09:59 +08:00
|
|
|
|
|
2023-08-31 21:48:05 +08:00
|
|
|
|
#define xy_arylen(x) (sizeof(x) / sizeof(x[0]))
|
2023-08-28 22:21:14 +08:00
|
|
|
|
|
2023-09-27 16:36:48 +08:00
|
|
|
|
#define assert_str(a,b) assert(xy_streql((a), (b)))
|
|
|
|
|
|
2023-08-30 09:50:38 +08:00
|
|
|
|
|
|
|
|
|
static inline void*
|
|
|
|
|
xy_malloc0 (size_t size)
|
|
|
|
|
{
|
|
|
|
|
void* ptr = malloc(size);
|
|
|
|
|
memset(ptr, 0, size);
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-26 20:52:49 +08:00
|
|
|
|
#define XY_Log_Info 00001
|
|
|
|
|
#define XY_Log_Success 00001<<1
|
|
|
|
|
#define XY_Log_Warn 00001<<2
|
|
|
|
|
#define XY_Log_Error 00001<<3
|
2023-09-05 15:36:26 +08:00
|
|
|
|
|
2023-09-26 20:52:49 +08:00
|
|
|
|
#define xy_success(str) _xy_log (XY_Log_Success, str)
|
|
|
|
|
#define xy_info(str) _xy_log (XY_Log_Info, str)
|
|
|
|
|
#define xy_warn(str) _xy_log (XY_Log_Warn, str)
|
|
|
|
|
#define xy_error(str) _xy_log (XY_Log_Error, str)
|
2023-08-30 10:57:17 +08:00
|
|
|
|
|
|
|
|
|
static void
|
2023-09-26 20:52:49 +08:00
|
|
|
|
_xy_log (int level, const char* str)
|
2023-08-30 10:57:17 +08:00
|
|
|
|
{
|
|
|
|
|
char* color_fmt_str = NULL;
|
|
|
|
|
|
|
|
|
|
bool to_stderr = false;
|
|
|
|
|
|
2023-09-26 20:52:49 +08:00
|
|
|
|
if (level & XY_Log_Info) {
|
2023-08-30 10:57:17 +08:00
|
|
|
|
color_fmt_str = "\033[34m%s\033[0m"; // 蓝色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (level & XY_Log_Success) {
|
2023-08-30 10:57:17 +08:00
|
|
|
|
color_fmt_str = "\033[32m%s\033[0m"; // 绿色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (level & XY_Log_Warn) {
|
2023-08-30 10:57:17 +08:00
|
|
|
|
color_fmt_str = "\033[33m%s\033[0m\n"; // 黄色
|
|
|
|
|
to_stderr = true;
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (level & XY_Log_Error) {
|
2023-08-30 10:57:17 +08:00
|
|
|
|
color_fmt_str = "\033[31m%s\033[0m\n"; // 红色
|
|
|
|
|
to_stderr = true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
//xy_assert ("CAN'T REACH!");
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-31 21:58:05 +08:00
|
|
|
|
// -2 把中间%s减掉
|
|
|
|
|
size_t len = strlen(color_fmt_str) -2;
|
2023-08-30 10:57:17 +08:00
|
|
|
|
char* buf = malloc(strlen(str) + len + 1);
|
|
|
|
|
|
|
|
|
|
sprintf (buf, color_fmt_str, str);
|
|
|
|
|
if (to_stderr) {
|
2023-09-05 22:02:47 +08:00
|
|
|
|
fprintf(stderr, "%s",buf);
|
2023-08-30 10:57:17 +08:00
|
|
|
|
} else {
|
|
|
|
|
puts(buf);
|
|
|
|
|
}
|
|
|
|
|
free(buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-08-30 20:06:28 +08:00
|
|
|
|
/**
|
2023-09-27 16:01:40 +08:00
|
|
|
|
* 将str中所有的pat字符串替换成replace,返回一个全新的字符串
|
2023-08-30 20:06:28 +08:00
|
|
|
|
*/
|
2023-08-30 14:24:26 +08:00
|
|
|
|
static char*
|
2023-09-27 16:01:40 +08:00
|
|
|
|
xy_str_gsub (const char* str, const char* pat, const char* replace)
|
2023-08-30 14:24:26 +08:00
|
|
|
|
{
|
2023-09-27 16:01:40 +08:00
|
|
|
|
size_t replace_len = strlen(replace);
|
|
|
|
|
size_t pat_len = strlen(pat);
|
|
|
|
|
|
|
|
|
|
int unit = replace_len - pat_len;
|
|
|
|
|
if (unit<=0) unit = 0;
|
|
|
|
|
|
|
|
|
|
size_t len = strlen(str);
|
|
|
|
|
|
|
|
|
|
const char* cur = str;
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
|
|
while (cur<str+len) {
|
|
|
|
|
char* fnd = strstr(cur, pat);
|
|
|
|
|
if (fnd) {
|
|
|
|
|
count++;
|
|
|
|
|
cur = fnd + pat_len;
|
|
|
|
|
} else break;
|
|
|
|
|
}
|
|
|
|
|
puti(count);
|
|
|
|
|
|
|
|
|
|
char* ret = malloc (unit * count + len + 1);
|
|
|
|
|
char* retcur = ret;
|
|
|
|
|
|
|
|
|
|
cur = str;
|
|
|
|
|
while(cur<str+len) {
|
|
|
|
|
char* fnd = strstr(cur, pat);
|
|
|
|
|
if (fnd) {
|
|
|
|
|
ptrdiff_t diff = fnd - cur;
|
|
|
|
|
strncpy(retcur, cur, diff);
|
|
|
|
|
cur = fnd + pat_len;
|
|
|
|
|
|
|
|
|
|
retcur += diff;
|
|
|
|
|
strcpy(retcur, replace);
|
|
|
|
|
retcur += replace_len;
|
|
|
|
|
} else break;
|
2023-08-30 14:24:26 +08:00
|
|
|
|
}
|
2023-09-27 16:01:40 +08:00
|
|
|
|
strcpy(retcur, cur);
|
|
|
|
|
|
2023-08-30 14:24:26 +08:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-08-30 19:40:42 +08:00
|
|
|
|
static char*
|
|
|
|
|
xy_2strjoin (const char* str1, const char* str2)
|
|
|
|
|
{
|
|
|
|
|
size_t len = strlen(str1);
|
|
|
|
|
size_t size = len + strlen(str2) + 1;
|
|
|
|
|
char* ret = malloc(size);
|
|
|
|
|
strcpy(ret, str1);
|
|
|
|
|
strcpy(ret+len, str2);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static char*
|
|
|
|
|
xy_strjoin (unsigned int count, ...)
|
|
|
|
|
{
|
2023-09-02 23:11:22 +08:00
|
|
|
|
size_t al_fixed = 128;
|
2023-08-30 19:40:42 +08:00
|
|
|
|
char* ret = calloc(1, al_fixed);
|
|
|
|
|
// 已分配次数
|
|
|
|
|
int al_times = 1;
|
|
|
|
|
// 当前已分配量
|
|
|
|
|
size_t al_cur = al_fixed;
|
|
|
|
|
|
|
|
|
|
const char* str = NULL;
|
|
|
|
|
// 需要分配的量
|
|
|
|
|
size_t al_need = 0;
|
|
|
|
|
// 用于 strcpy() 到 ret 的哪个位置
|
|
|
|
|
char* cur = ret + 0;
|
|
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
|
va_start(args, count);
|
|
|
|
|
|
|
|
|
|
for(int i=0; i<count; i++)
|
|
|
|
|
{
|
2023-09-02 23:11:22 +08:00
|
|
|
|
// 是否需要重新分配
|
|
|
|
|
bool need_realloc = false;
|
|
|
|
|
|
2023-08-30 19:40:42 +08:00
|
|
|
|
str = va_arg(args, const char*);
|
|
|
|
|
al_need += strlen(str);
|
2023-09-02 23:11:22 +08:00
|
|
|
|
while (al_need > al_cur) {
|
2023-08-30 19:40:42 +08:00
|
|
|
|
al_times += 1; al_cur = al_times * al_fixed;
|
2023-09-02 23:11:22 +08:00
|
|
|
|
need_realloc = true;
|
|
|
|
|
}
|
|
|
|
|
// printf("al_times %d, al_need %zd, al_cur %zd\n", al_times, al_need, al_cur);
|
|
|
|
|
if (need_realloc) {
|
|
|
|
|
ptrdiff_t diff = cur - ret;
|
2023-08-30 19:40:42 +08:00
|
|
|
|
ret = realloc(ret, al_cur);
|
2023-09-02 23:11:22 +08:00
|
|
|
|
cur = ret + diff;
|
|
|
|
|
}
|
|
|
|
|
if (NULL==ret) {
|
|
|
|
|
xy_error ("xy: No availble memory!"); return NULL;
|
2023-08-30 19:40:42 +08:00
|
|
|
|
}
|
|
|
|
|
strcpy(cur, str);
|
2023-09-02 23:11:22 +08:00
|
|
|
|
// puts(ret);
|
2023-08-30 19:40:42 +08:00
|
|
|
|
cur += strlen(str);
|
|
|
|
|
}
|
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
|
|
*cur = '\0';
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-31 16:54:06 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-04 15:10:18 +08:00
|
|
|
|
xy_strdup(const char* str)
|
|
|
|
|
{
|
|
|
|
|
size_t len = strlen(str);
|
|
|
|
|
char* new = xy_malloc0(len+1);
|
|
|
|
|
strcpy(new, str);
|
2023-09-06 16:56:38 +08:00
|
|
|
|
return new;
|
2023-09-04 15:10:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-26 20:52:49 +08:00
|
|
|
|
#define XY_Str_Bold 1
|
|
|
|
|
#define XY_Str_Faint 2
|
|
|
|
|
#define XY_Str_Italic 3
|
|
|
|
|
#define XY_Str_Underline 4
|
|
|
|
|
#define XY_Str_Blink 5
|
|
|
|
|
#define XY_Str_Cross 9
|
|
|
|
|
|
|
|
|
|
#define xy_str_to_bold(str) _xy_str_to_terminal_style(XY_Str_Bold, str)
|
|
|
|
|
#define xy_str_to_faint(str) _xy_str_to_terminal_style(XY_Str_Faint, str)
|
|
|
|
|
#define xy_str_to_italic(str) _xy_str_to_terminal_style(XY_Str_Italic, str)
|
|
|
|
|
#define xy_str_to_underline(str) _xy_str_to_terminal_style(XY_Str_Underline,str)
|
|
|
|
|
#define xy_str_to_blink(str) _xy_str_to_terminal_style(XY_Str_Blink, str)
|
|
|
|
|
#define xy_str_to_cross(str) _xy_str_to_terminal_style(XY_Str_Cross, str)
|
|
|
|
|
|
|
|
|
|
#define XY_Str_Red 31
|
|
|
|
|
#define XY_Str_Green 32
|
|
|
|
|
#define XY_Str_Yellow 33
|
|
|
|
|
#define XY_Str_Blue 34
|
|
|
|
|
#define XY_Str_Magenta 35
|
|
|
|
|
#define XY_Str_Cyan 36
|
|
|
|
|
|
|
|
|
|
#define xy_str_to_red(str) _xy_str_to_terminal_style(XY_Str_Red, str)
|
|
|
|
|
#define xy_str_to_green(str) _xy_str_to_terminal_style(XY_Str_Green, str)
|
|
|
|
|
#define xy_str_to_yellow(str) _xy_str_to_terminal_style(XY_Str_Yellow, str)
|
|
|
|
|
#define xy_str_to_blue(str) _xy_str_to_terminal_style(XY_Str_Blue, str)
|
|
|
|
|
#define xy_str_to_magenta(str) _xy_str_to_terminal_style(XY_Str_Magenta,str)
|
|
|
|
|
#define xy_str_to_purple xy_str_to_magenta
|
|
|
|
|
#define xy_str_to_cyan(str) _xy_str_to_terminal_style(XY_Str_Cyan, str)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-26 20:52:49 +08:00
|
|
|
|
_xy_str_to_terminal_style(int style, const char* str)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
char* color_fmt_str = NULL;
|
2023-09-26 20:52:49 +08:00
|
|
|
|
if (XY_Str_Red==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[31m%s\e[0m"; // 红色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Green==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[32m%s\e[0m"; // 绿色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Yellow==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[33m%s\e[0m"; // 黄色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Blue==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[34m%s\e[0m"; // 蓝色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Magenta==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[35m%s\e[0m"; // 蓝色
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Cyan==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[36m%s\e[0m"; // 蓝色
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Bold==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[1m%s\e[0m";
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Faint==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[2m%s\e[0m";
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Italic==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[3m%s\e[0m";
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Underline==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[4m%s\e[0m";
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Blink==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[5m%s\e[0m";
|
|
|
|
|
}
|
2023-09-26 20:52:49 +08:00
|
|
|
|
else if (XY_Str_Cross==style)
|
2023-09-05 15:15:55 +08:00
|
|
|
|
{
|
|
|
|
|
color_fmt_str = "\e[9m%s\e[0m";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -2 把中间%s减掉
|
|
|
|
|
size_t len = strlen(color_fmt_str) -2;
|
|
|
|
|
char* buf = malloc(strlen(str) + len + 1);
|
|
|
|
|
sprintf (buf, color_fmt_str, str);
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static bool
|
2023-08-31 16:54:06 +08:00
|
|
|
|
xy_streql(const char* str1, const char* str2) {
|
|
|
|
|
return strcmp(str1, str2) == 0 ? true : false;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-02 21:36:54 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-02 21:36:54 +08:00
|
|
|
|
xy_str_to_quietcmd (const char* cmd)
|
|
|
|
|
{
|
|
|
|
|
char* ret = NULL;
|
|
|
|
|
#ifdef _WIN32
|
2023-09-05 09:32:02 +08:00
|
|
|
|
ret = xy_2strjoin (cmd, " >nul 2>nul ");
|
2023-09-02 21:36:54 +08:00
|
|
|
|
#else
|
2023-09-05 09:32:02 +08:00
|
|
|
|
ret = xy_2strjoin (cmd, " 1>/dev/null 2>&1 ");
|
2023-09-02 21:36:54 +08:00
|
|
|
|
#endif
|
2023-09-04 15:10:18 +08:00
|
|
|
|
return ret;
|
2023-09-02 21:36:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 21:15:16 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static bool
|
2023-09-04 21:15:16 +08:00
|
|
|
|
xy_str_end_with (const char* str, const char* suffix)
|
|
|
|
|
{
|
|
|
|
|
size_t len1 = strlen(str);
|
|
|
|
|
size_t len2 = strlen(suffix);
|
|
|
|
|
|
|
|
|
|
if (0==len2) return true; // 空字符串直接返回
|
|
|
|
|
if (len1 < len2) return false;
|
|
|
|
|
|
|
|
|
|
const char* cur1 = str + len1 - 1;
|
|
|
|
|
const char* cur2 = suffix + len2 - 1;
|
|
|
|
|
|
|
|
|
|
for (int i=0; i<len2; i++)
|
|
|
|
|
{
|
|
|
|
|
if (*cur1 != *cur2) return false;
|
|
|
|
|
cur1--; cur2--;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static bool
|
2023-09-05 10:30:44 +08:00
|
|
|
|
xy_str_start_with (const char* str, const char* prefix)
|
|
|
|
|
{
|
|
|
|
|
size_t len1 = strlen(str);
|
|
|
|
|
size_t len2 = strlen(prefix);
|
|
|
|
|
|
|
|
|
|
if (0==len2) return true; // 空字符串直接返回
|
|
|
|
|
if (len1 < len2) return false;
|
|
|
|
|
|
|
|
|
|
const char* cur1 = str;
|
|
|
|
|
const char* cur2 = prefix;
|
|
|
|
|
|
|
|
|
|
for (int i=0; i<len2; i++)
|
|
|
|
|
{
|
|
|
|
|
if (*cur1 != *cur2) return false;
|
|
|
|
|
cur1++; cur2++;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-05 10:30:44 +08:00
|
|
|
|
xy_str_delete_prefix (const char* str, const char* prefix)
|
|
|
|
|
{
|
|
|
|
|
char* new = xy_strdup(str);
|
|
|
|
|
bool yes = xy_str_start_with(str, prefix);
|
|
|
|
|
if (!yes) return new;
|
|
|
|
|
|
|
|
|
|
size_t len = strlen(prefix);
|
|
|
|
|
char* cur = new + len;
|
|
|
|
|
return cur;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-04 21:21:36 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-04 21:21:36 +08:00
|
|
|
|
xy_str_delete_suffix (const char* str, const char* suffix)
|
|
|
|
|
{
|
|
|
|
|
char* new = xy_strdup(str);
|
|
|
|
|
bool yes = xy_str_end_with(str, suffix);
|
|
|
|
|
if (!yes) return new;
|
|
|
|
|
|
|
|
|
|
size_t len1 = strlen(str);
|
|
|
|
|
size_t len2 = strlen(suffix);
|
|
|
|
|
char* cur = new + len1 - len2;
|
|
|
|
|
*cur = '\0';
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-05 11:09:35 +08:00
|
|
|
|
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-05 11:09:35 +08:00
|
|
|
|
xy_str_strip (const char* str)
|
|
|
|
|
{
|
|
|
|
|
char* new = xy_strdup(str);
|
|
|
|
|
|
2023-09-27 16:12:22 +08:00
|
|
|
|
while (strchr("\n\r\v\t\f ", new[0]))
|
|
|
|
|
{
|
|
|
|
|
new += 1;
|
2023-09-05 11:09:35 +08:00
|
|
|
|
}
|
2023-09-27 16:12:22 +08:00
|
|
|
|
|
|
|
|
|
size_t len = strlen(new);
|
|
|
|
|
|
|
|
|
|
char* last = new + len - 1;
|
|
|
|
|
|
|
|
|
|
while (strchr("\n\r\v\t\f ", *last))
|
|
|
|
|
{
|
|
|
|
|
*last = '\0';
|
|
|
|
|
last -= 1;
|
2023-09-05 11:09:35 +08:00
|
|
|
|
}
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-10 13:15:34 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2023-09-27 11:32:13 +08:00
|
|
|
|
* 执行cmd,返回其最后一行输出结果
|
|
|
|
|
*
|
|
|
|
|
* @note 返回的字符串最后面可能有换行符号
|
2023-09-05 16:32:56 +08:00
|
|
|
|
*/
|
2023-09-27 11:32:13 +08:00
|
|
|
|
static char*
|
|
|
|
|
xy_getcmd(const char* cmd, bool (*func)(const char*))
|
2023-09-05 16:32:56 +08:00
|
|
|
|
{
|
2023-09-27 11:32:13 +08:00
|
|
|
|
const int size = 512;
|
|
|
|
|
char* buf = (char*) malloc(size);
|
2023-09-05 16:32:56 +08:00
|
|
|
|
|
2023-09-27 11:32:13 +08:00
|
|
|
|
FILE* stream = popen(cmd, "r");
|
2023-09-05 16:32:56 +08:00
|
|
|
|
if (stream == NULL) {
|
2023-09-27 12:46:47 +08:00
|
|
|
|
fprintf(stderr, "xy: 命令执行失败\n");
|
2023-09-06 15:59:53 +08:00
|
|
|
|
return NULL;
|
2023-09-05 16:32:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-27 11:32:13 +08:00
|
|
|
|
char* ret = NULL;
|
|
|
|
|
|
|
|
|
|
while (true) {
|
2023-09-27 12:46:47 +08:00
|
|
|
|
if(NULL==fgets(buf, size, stream)) break;
|
2023-09-27 11:32:13 +08:00
|
|
|
|
ret = buf;
|
|
|
|
|
if (func) { func(buf); }
|
|
|
|
|
}
|
2023-09-05 16:32:56 +08:00
|
|
|
|
|
2023-09-27 11:32:13 +08:00
|
|
|
|
pclose (stream);
|
2023-09-05 20:48:38 +08:00
|
|
|
|
return ret;
|
2023-09-05 16:32:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-10 13:31:48 +08:00
|
|
|
|
#define xy_os_home _xy_os_home()
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-10 13:31:48 +08:00
|
|
|
|
_xy_os_home ()
|
|
|
|
|
{
|
|
|
|
|
char* home = NULL;
|
|
|
|
|
if (xy_on_windows)
|
|
|
|
|
home = getenv("USERPROFILE");
|
|
|
|
|
else
|
|
|
|
|
home = getenv("HOME");
|
|
|
|
|
return home;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define xy_win_powershell_profile _xy_win_powershell_profile()
|
|
|
|
|
#define xy_win_powershellv5_profile _xy_win_powershellv5_profile()
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static char*
|
2023-09-10 13:31:48 +08:00
|
|
|
|
_xy_win_powershell_profile ()
|
|
|
|
|
{
|
|
|
|
|
return xy_2strjoin(xy_os_home, "\\Documents\\PowerShell\\Microsoft.PowerShell_profile.ps1");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char*
|
|
|
|
|
_xy_win_powershellv5_profile()
|
|
|
|
|
{
|
|
|
|
|
return xy_2strjoin(xy_os_home, "\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-09-10 13:15:34 +08:00
|
|
|
|
/**
|
|
|
|
|
* @note Windows上,`path` 不要夹带变量名,因为最终 access() 不会帮你转换
|
|
|
|
|
*/
|
2023-09-10 14:50:41 +08:00
|
|
|
|
static bool
|
2023-09-10 13:15:34 +08:00
|
|
|
|
xy_file_exist(char* path)
|
|
|
|
|
{
|
|
|
|
|
char* newpath = path;
|
|
|
|
|
if (xy_on_windows)
|
|
|
|
|
{
|
|
|
|
|
if (xy_str_start_with(path, "~")) {
|
2023-09-10 13:31:48 +08:00
|
|
|
|
newpath = xy_2strjoin(xy_os_home, path+1);
|
2023-09-10 13:15:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return access(newpath, 0) ? false : true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 15:34:56 +08:00
|
|
|
|
#endif
|