1 Star 0 Fork 26

mavistech / keil-autopiler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Keil-Autopiler.c 34.55 KB
一键复制 编辑 原始数据 按行查看 历史
侯巽杰 (Dino) 提交于 2023-10-20 03:26 . v1.2
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
/**
* \file Keil-Autopiler.c
* \brief main application
*/
/*
* Copyright (c) 2023 Dino Haw
*
* 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.
*
* This file is Keil-Autopiler - keil's automated compiler.
*
* Author: Dino Haw <347341799@qq.com>
* Version: v1.2
* Change Logs:
* Version Date Author Notes
* v1.0 2023-08-22 Dino the first version
* v1.1 2023-09-14 Dino 1. 修复保存 keil uv4.exe 路径数组过小的问题
* 2. 增加实时打印编译输出内容的功能
* v1.2 2023-10-20 Dino 1. 增加从系统环境变量 Path 中自动查找 keil UV4.exe 的功能
*/
/* Includes ------------------------------------------------------------------*/
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include <time.h>
#include <process.h>
#include <windows.h>
/* Defines -------------------------------------------------------------------*/
#define APP_NAME "Keil-Autopiler"
#define APP_VERSION "v1.2"
#define SYS_PATH_NAME "PATH"
#define KEIL_UV_MARK "UV4.exe"
#define MAX_DIR_HIERARCHY 32
#define MAX_PATH_QTY 10
#define MAX_PRJ_NAME_SIZE 64
#define MAX_COMPARE_CHAR 7
#define KEIL_VERSION_OFFSET 9
/* keil 工程路径存储链表 */
struct path_list
{
char **items;
size_t capacity;
size_t size;
};
typedef enum
{
KEIL4,
KEIL5,
} KEIL_VERSION;
/* Private variables ---------------------------------------------------------*/
static KEIL_VERSION _keil_version = KEIL5;
static char _current_dir[MAX_PATH];
static char _input_prj_path[MAX_PATH];
static char _input_prj_target[MAX_PRJ_NAME_SIZE];
static char _log_file_path[MAX_PATH];
static char _log_file_name[] = {"keil_compile_log.txt"};
static char _keil_uv_path[MAX_PATH] = {"D:\\Keil_v5\\UV4\\UV4.exe"};
static const char *_keil4_version[] =
{
"k4",
"keil4",
"keil_4",
"keilv4",
"keil_v4"
};
static const char *_keil5_version[] =
{
"k5",
"keil5",
"keil_5",
"keilv5",
"keil_v5"
};
static const char *_keil_prj_suffix[] =
{
".uvprojx",
".uvproj"
};
static const char *_object_suffix[] =
{
".hex",
".bin"
};
static const char *_build_file_suffix[] =
{
".axf"
};
static const char *_not_prj_target = "<>:|/\\\"*?";
/* Private function prototypes -----------------------------------------------*/
bool is_keil (const char *str1,
const char *str2[],
size_t str2_qty);
bool is_keil_project (const char *path);
bool is_keil_uv (const char *str);
bool is_project_target (const char *str, size_t str_len);
bool is_same_string (const char *str1,
const char *str2[],
size_t str2_qty);
bool combine_path (char *out_path,
const char *absolute_path,
const char *relative_path);
int get_object_info (const char *str,
char *object_path,
char *object_name);
void get_filename_from_path (const char *path, char *filename);
int parameter_process (const char *param);
int copy_files (const char *dir,
const char *paths[],
size_t file_qty);
void search_uv4 (char *out_uv4_path, size_t path_size);
void search_files_with_suffix (const char *dir,
const char *suffix[],
size_t suffix_qty,
struct path_list *list);
void search_files_with_name_and_suffix (const char *dir,
const char *name,
const char *suffix[],
size_t suffix_qty,
struct path_list *list);
struct path_list * path_list_init (size_t capacity);
void path_list_add (struct path_list *list, char *item);
void path_list_free (struct path_list *list);
unsigned __stdcall print_compile_output (void *data);
/* Exported functions ---------------------------------------------------------*/
/**
* @brief 主函数入口
* @note
* @param argc: 参数数量
* @param argv[0]: 程序路径
* @param argv[1]: keil 版本 (4 | 5) 或 keil UV4.exe 的绝对路径
* @param argv[2]: keil project target
* @param argv[3]: 指定的工程路径,支持相对和绝对路径
* @retval 0: 成功 | -1: 失败
*/
int main(int argc, char *argv[])
{
/* 1. 获取本程序所在目录 */
GetModuleFileName(NULL, _current_dir, MAX_PATH);
char *last_slash = strrchr(_current_dir, '\\');
if (last_slash != NULL) {
*last_slash = '\0';
}
search_uv4(_keil_uv_path, sizeof(_keil_uv_path));
/* 2. 参数合法性检查和转换 */
if (argc > 1)
{
if (parameter_process(argv[1]) != 0)
{
printf("[ERROR] NOT support %s\n", argv[1]);
printf("[Tips] Parameter 1st standard input: keil version (4 or 5)\n\n");
return -1;
}
}
if (argc > 2)
{
if (parameter_process(argv[2]) != 0)
{
printf("[ERROR] NOT support %s\n", argv[2]);
printf("[Tips] Parameter 2nd standard input: keil project target.\n");
printf("[Tips] If you don't know what 'project target' is or don't need to specify 'project target', just ignore parameter 2nd.\n\n");
return -1;
}
}
/* 指定工程路径 */
if (argc > 3)
{
if (parameter_process(argv[3]) != 0)
{
printf("[ERROR] NOT support %s\n", argv[3]);
printf("[Tips] Parameter 3nd standard input: keil project relative path with the suffix '.uvprojx' or '.uvproj'\n");
printf("[Tips] If you don't need to specify keil project, just ignore parameter 3nd.\n");
printf("[Tips] Example: .\\Keil-Autopiler.exe 5 Debug .\\Code\\Project\\MDK`(AC6`)\\project.uvprojx\n\n");
return -1;
}
}
/* 3. 拼接日志路径 */
snprintf(_log_file_path, sizeof(_log_file_path), "%s\\%s", _current_dir, _log_file_name);
printf("\n------------------------------------- %s %s --------------------------------------\n", APP_NAME, APP_VERSION);
printf("Keil path: %s\n", _keil_uv_path);
printf("Build log path: %s\n", _log_file_path);
/* 初始化存放工程路径的数组 */
struct path_list *prj_list = path_list_init(MAX_PATH_QTY);
/* 4. 遍历目录,查找 keil 工程 */
search_files_with_suffix( _current_dir,
_keil_prj_suffix,
sizeof(_keil_prj_suffix) / sizeof(_keil_prj_suffix[0]),
prj_list);
/* 5. 打印找到的所有 keil 工程路径 */
if (prj_list->size == 0 && _input_prj_path[0] == '\0')
{
printf("\n[ERROR] NO keil project found\n\n");
return -1;
}
else
{
printf("\nSearch keil project: %d item(s)\n", prj_list->size);
for (size_t i = 0; i < prj_list->size; i++)
{
printf("\t%s\n", prj_list->items[i]);
}
printf("\n");
}
/* 用户指定了 keil 工程 */
char *prj_path = prj_list->items[prj_list->size-1];
if (_input_prj_path[0] != '\0')
{
prj_path = _input_prj_path;
printf("[Hint] You specify the keil project!\n");
}
/* 6. 打印将被编译的工程 */
char prj_name[MAX_PRJ_NAME_SIZE] = {0};
get_filename_from_path(prj_path, prj_name);
printf("Build project name : %s\n", prj_name);
if (_input_prj_target[0] != '\0')
{
printf("Build project target: %s\n", _input_prj_target);
}
printf("Build project path : %s\n", prj_path);
/* 7. 打印编译时间 */
time_t raw_time;
struct tm *time_info;
time(&raw_time);
time_info = localtime(&raw_time);
printf("Build date and time : %.4d/%.2d/%.2d %.2d:%.2d:%.2d\n",
time_info->tm_year + 1900, time_info->tm_mon + 1, time_info->tm_mday,
time_info->tm_hour, time_info->tm_min, time_info->tm_sec);
/* 8. 拼接编译命令 */
char command[256];
if (_input_prj_target[0] == '\0')
{
snprintf(command, sizeof(command), "%s -j0 -r %s -o %s",
_keil_uv_path, prj_path, _log_file_path);
}
else
{
snprintf(command, sizeof(command), "%s -j0 -r %s -t %s -o %s",
_keil_uv_path, prj_path, _input_prj_target, _log_file_path);
}
printf("\n%s\n", command);
/* 9. 清空日志内容 */
FILE *fp = fopen(_log_file_path, "w+");
if (fp != NULL) {
fclose(fp);
}
printf("\nGet more information about command line:\n");
printf("https://developer.arm.com/documentation/101407/0538/Command-Line?lang=en\n\n");
printf("Please wait for keil_v%c build complete .........\n\n", _keil_uv_path[KEIL_VERSION_OFFSET]);
printf("------------------------------------------------------------------------------------------------\n\n");
/* 10. 创建读取和打印编译输出内容的线程 */
HANDLE thread_print = (HANDLE)_beginthreadex(NULL, 0, &print_compile_output, NULL, 0, NULL);
if (thread_print == NULL)
{
printf("\n[ERROR] Failed to create thread to print compile result.\n\n");
return -1;
}
/* 11. 执行编译命令 */
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
ZeroMemory(&pi, sizeof(pi));
si.cb = sizeof(si);
int result = CreateProcess(NULL, command, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
if (result == 0)
{
printf("[ERROR] Keil_v%c fails to build, please check the keil project or keil path\n\n", _keil_uv_path[KEIL_VERSION_OFFSET]);
goto __exit;
}
/* 等待进程结束 */
WaitForSingleObject(pi.hProcess, INFINITE);
/* 获取命令行返回的值 */
DWORD exit_code = -1;
GetExitCodeProcess(pi.hProcess, &exit_code);
/* 关闭句柄 */
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
/* 延时是必须的,需等待 keil5_compile_log.txt 内容完全写入 */
Sleep(1000);
/* 关闭线程 */
TerminateThread(thread_print, 0);
CloseHandle(thread_print);
/* 12. 打印编译日志并获取日志中 object 文件的相对路径 */
int info_result = 1;
char object_name[MAX_PRJ_NAME_SIZE] = {0};
char object_relative_path[MAX_PATH] = {0};
FILE *file = fopen(_log_file_path, "r");
if (file != NULL)
{
char line[512] = {0};
/* 逐行读取 */
while (fgets(line, sizeof(line), file))
{
/* 如果是 object 文件的相对路径一行,则处理并保存 */
if (line[0] == '"'
&& line[1] == '.'
&& strstr(line, "Error(s)") != NULL
&& strstr(line, "Warning(s)") != NULL)
{
info_result = get_object_info(line, object_relative_path, object_name);
}
}
fclose(file);
}
/* 获取 object 文件的相对路径出错 */
if (info_result == 1
&& (exit_code == 0 || exit_code == 1))
{
printf("[ERROR] can't get the object relative path\n\n");
printf("exit_code: %d\n", exit_code);
goto __exit;
}
if (info_result == -1)
{
printf("[ERROR] object path(s) in this format are not supported\n\n");
goto __exit;
}
else if (info_result == -2)
{
printf("[ERROR] can't get the object name\n\n");
goto __exit;
}
/* 13. 打印编译结果 */
char log[256] = {0};
printf("\n");
switch (exit_code)
{
case 0:
printf("------------------------------------------- SUCCESS -------------------------------------------\n\n");
break;
case 1:
printf("------------------------------------ SUCCESS with warnings ------------------------------------\n\n");
break;
case 2:
strncpy_s(log, sizeof(log), "[keil info] Errors (2)\n\n",
strlen("[keil info] Errors (2)\n\n"));
break;
case 3:
strncpy_s(log, sizeof(log), "[keil info] Fatal Errors (3)\n\n",
strlen("[keil info] Fatal Errors (3)\n\n"));
break;
case 11:
strncpy_s(log, sizeof(log), "[keil info] ERROR: Cannot open project file for writing (11)\n\n",
strlen("[keil info] ERROR: Cannot open project file for writing (11)\n\n"));
break;
case 12:
strncpy_s(log, sizeof(log), "[keil info] ERROR: Device with given name in not found in database (12)\n\n",
strlen("[keil info] ERROR: Device with given name in not found in database (12)\n\n"));
break;
case 13:
strncpy_s(log, sizeof(log), "[keil info] ERROR: writing project file (13)\n\n",
strlen("[keil info] ERROR: writing project file (13)\n\n"));
break;
case 15:
strncpy_s(log, sizeof(log), "[keil info] ERROR: reading import XML file (15)\n\n",
strlen("[keil info] ERROR: reading import XML file (15)\n\n"));
break;
case 20:
strncpy_s(log, sizeof(log), "[keil info] ERROR: converting project (20)\n\n",
strlen("[keil info] ERROR: converting project (20)\n\n"));
break;
default:
strncpy_s(log, sizeof(log), "[keil info] ERROR: Unknown Errors\n\n",
strlen("[keil info] ERROR: Unknown Errors\n\n"));
break;
}
printf(log);
/* 14. 出现错误则将错误信息追加到日志文件中 */
if (exit_code > 1)
{
FILE *fp = fopen(_log_file_path, "a+");
if (fp == NULL) {
fp = fopen(_log_file_path, "w+");
} else {
fseek(fp, 0, SEEK_END);
}
fputs(log, fp);
fclose(fp);
}
/* 14. 搬运生成的 hex 和 bin 文件至本程序的同级目录 */
else
{
char object_dir[MAX_PATH] = {0};
if (combine_path(object_dir, prj_path, object_relative_path) == false) {
goto __exit;
}
struct path_list *object_list = path_list_init(MAX_PATH_QTY);
search_files_with_name_and_suffix( object_dir,
object_name,
_object_suffix,
sizeof(_object_suffix) / sizeof(_object_suffix[0]),
object_list);
/* 打印找到的所有 object 文件的路径 */
if (object_list->size == 0)
{
printf("[ERROR] NO follow files found in %s\n", object_dir);
for (size_t i = 0; i < sizeof(_object_suffix) / sizeof(_object_suffix[0]); i++)
{
printf("\t%s%s\n", object_name, _object_suffix[i]);
}
printf("\n");
path_list_free(object_list);
goto __exit;
}
else
{
printf("Search object file(s): %d item(s)\n", object_list->size);
for (size_t i = 0; i < object_list->size; i++)
{
printf("\t%s\n", object_list->items[i]);
}
printf("\n");
}
/* 搬运文件 */
int move_result = copy_files(_current_dir, (const char **)object_list->items, object_list->size);
if (move_result == 0) {
printf("Copy above file(s) SUCCESS ==> %s\n\n", _current_dir);
} else {
printf("\n");
}
path_list_free(object_list);
}
__exit:
path_list_free(prj_list);
return 0;
}
/**
* @brief 参数 1 和 参数 2 的处理
* @note
* @param param: 参数 1 或 参数 2 ,详见 main 函数
* @retval 0: 成功 | -1: 失败
*/
int parameter_process(const char *param)
{
/* 指定了 keil UV4.exe 的路径 */
if (is_keil_uv(param))
{
strncpy_s(_keil_uv_path, sizeof(_keil_uv_path), param, strnlen_s(param, MAX_PATH));
}
/* 指定了 keil4 版本 */
else if (strspn(param, "0123456789") == strnlen_s(param, MAX_PRJ_NAME_SIZE)
&& param[1] == '\0')
{
if (param[0] == '4') {
_keil_uv_path[KEIL_VERSION_OFFSET] = '4';
}
else if (param[0] != '5') {
return -1;
}
}
else if (is_keil(param, _keil4_version, sizeof(_keil4_version) / sizeof(_keil4_version[0])))
{
_keil_uv_path[KEIL_VERSION_OFFSET] = '4';
}
/* 指定了要编译的 keil 工程 */
else if (is_keil_project(param))
{
strncpy_s(_input_prj_path, sizeof(_input_prj_path), _current_dir, strnlen_s(_current_dir, sizeof(_current_dir)));
/* 路径字符串拼接 */
if (param[0] == '.' && param[1] == '\\')
{
strncat_s(_input_prj_path, sizeof(_input_prj_path), &param[1], strnlen_s(&param[1], MAX_PATH));
}
else if (param[0] == '\\')
{
strncat_s(_input_prj_path, sizeof(_input_prj_path), param, strnlen_s(param, MAX_PATH));
}
else if (param[1] == ':')
{
strncpy_s(_input_prj_path, sizeof(_input_prj_path), param, strnlen_s(param, MAX_PATH));
}
else
{
/* 同级目录时,工程相对路径可不以 .\ 或 \ 开头 */
char slash[] = "\\";
strncat_s(_input_prj_path, sizeof(_input_prj_path), slash, sizeof(slash));
strncat_s(_input_prj_path, sizeof(_input_prj_path), param, strnlen_s(param, MAX_PATH));
}
}
/* 指定了 keil5 版本 */
else if (is_keil(param, _keil5_version, sizeof(_keil5_version) / sizeof(_keil5_version[0])))
{
return 0;
}
/* project target */
else if (is_project_target(param, strnlen_s(param, MAX_PRJ_NAME_SIZE)))
{
strncpy_s(_input_prj_target, sizeof(_input_prj_target), param, strnlen_s(param, MAX_PRJ_NAME_SIZE));
}
else
{
return -1;
}
return 0;
}
/**
* @brief 拼接路径
* @note
* @param out_path: [out] 拼接后输出的路径
* @param absolute_path: 输入的绝对路径
* @param relative_path: 输入的相对路径
* @retval true: 成功 | false: 失败
*/
bool combine_path(char *out_path, const char *absolute_path, const char *relative_path)
{
if (relative_path[0] != '.')
{
printf("[ERROR] relative path can only start with .\\ or ..\\\n\n");
return false;
}
/* 1. 将绝对路径 absolute_path 的文件名和扩展名去除 */
strncpy_s(out_path, MAX_PATH, absolute_path, strnlen_s(absolute_path, MAX_PATH));
char *last_slash = strrchr(out_path, '\\');
if (last_slash != NULL)
{
/* 说明不是是盘符根目录 */
if (*(last_slash - 1) != ':') {
*last_slash = '\0';
}
}
else
{
printf("[ERROR] %s not a absolute path\n\n", absolute_path);
return false;
}
/* 2. 读取绝对路径的目录层级 并 记录每一层级的相对偏移值 */
size_t hierarchy_count = 0;
size_t dir_hierarchy[MAX_DIR_HIERARCHY];
/* 逐字符遍历路径 */
for (size_t i = 0; i < strnlen_s(out_path, MAX_PATH); i++)
{
if (out_path[i] == '\\')
{
dir_hierarchy[hierarchy_count++] = i;
if (hierarchy_count >= MAX_DIR_HIERARCHY) {
break;
}
}
}
/* 3. 读取相对路径 relative_path 的向上层级数 */
size_t dir_up_count = 0;
size_t valid_path_offset = 0;
for (size_t i = 0; i < strnlen_s(relative_path, MAX_PATH); )
{
if (relative_path[i] == '.'
&& relative_path[i+1] == '.'
&& relative_path[i+2] == '\\')
{
i += 3;
dir_up_count++;
valid_path_offset += 3;
}
else if (relative_path[i] == '.'
&& relative_path[i+1] == '\\')
{
valid_path_offset = 2;
break;
}
else {
break;
}
}
/* 4. 根据 3 获得的级数,缩减绝对路径的目录层级 */
if (dir_up_count > 0)
{
if ((hierarchy_count - dir_up_count) > 0)
{
hierarchy_count -= (dir_up_count - 1);
size_t offset = dir_hierarchy[hierarchy_count - 1];
out_path[offset] = '\0';
}
else
{
printf("[ERROR] relative paths go up more levels than absolute paths\n\n");
return false;
}
}
/* 5. 根据 2 记录的偏移值和 3 获得的级数,将 absolute_path 和 relative_path 拼接 */
strncat_s(out_path, MAX_PATH, "\\", 1);
strncat_s(out_path, MAX_PATH, &relative_path[valid_path_offset], strnlen_s(&relative_path[valid_path_offset], MAX_PATH));
return true;
}
/**
* @brief 从路径中获取文件名
* @note
* @param path: 路径
* @param filename: 文件名
* @retval None
*/
void get_filename_from_path(const char *path, char *filename)
{
char *p = strrchr(path, '\\');
if (p != NULL)
{
p++; /* 跳过 \ */
strncpy_s(filename, MAX_PRJ_NAME_SIZE, p, strnlen_s(p, MAX_PATH));
}
else
{
/* 没有 \ 默认是文件名 */
strncpy_s(filename, MAX_PRJ_NAME_SIZE, path, strnlen_s(path, MAX_PATH));
}
}
/**
* @brief 获取 object 的相对路径和文件名
* @note
* @param str: 日志信息
* @param object_path: [out] object 所在的相对路径
* @param object_name: [out] object 的文件名
* @retval 0: 成功 | -1 -2: 失败
*/
int get_object_info(const char *str, char *object_path, char *object_name)
{
/* ".\list\MPC_VerB_MCU_V1_0_2_1-20230808" - 0 Error(s), 0 Warning(s). */
size_t i = 0;
bool second_quote = false;
/* 截取相对路径 */
while (*str != '\0')
{
if (*str == '"')
{
if (second_quote) {
break;
}
str++;
second_quote = true;
}
if (second_quote) {
object_path[i++] = *str;
}
str++;
}
if (second_quote == false) {
return -1;
}
/* 截取文件名 */
char *last_slash = strrchr(object_path, '\\');
if (last_slash != NULL)
{
size_t len = strnlen_s(object_path, MAX_PATH) - (last_slash - object_path);
strncpy_s(object_name, MAX_PRJ_NAME_SIZE, last_slash + 1, len);
/* 仅保留目录层级,去掉文件名 */
*last_slash = '\0';
}
else {
return -2;
}
/* 截取文件名 */
for (size_t i = 0; i < sizeof(_build_file_suffix) / sizeof(_build_file_suffix[0]); i++)
{
if (strstr(object_name, _build_file_suffix[i]) != NULL)
{
char *last_point = strrchr(object_name, '.');
*last_point = '\0';
}
}
return 0;
}
/**
* @brief 打印编译输出的内容
* @note
* @param data: 用户数据
* @retval unsigned
*/
unsigned __stdcall print_compile_output(void *data)
{
char buffer[1024];
FILE *file = NULL;
long last_position = 0;
while (1)
{
file = fopen(_log_file_path, "r");
if (file == NULL)
{
Sleep(500);
continue;
}
fseek(file, last_position, SEEK_SET);
while (fgets(buffer, sizeof(buffer), file) != NULL) {
printf("%s", buffer);
}
/* 更新读取位置 */
last_position = ftell(file);
fclose(file);
/* 暂停一段时间再继续读取 */
Sleep(500);
}
return 0;
}
/**
* @brief 某路径是否为 keil 工程
* @note
* @param path: 路径
* @retval true: 是 | false: 否
*/
bool is_keil_project(const char *path)
{
for (size_t i = 0; i < sizeof(_keil_prj_suffix) / sizeof(_keil_prj_suffix[0]); i++)
{
if (strstr(path, _keil_prj_suffix[i]) != NULL) {
return true;
}
}
return false;
}
/**
* @brief 字符串比对
* @note
* @param str1: 字符串 1
* @param str2[]: 字符串组 2
* @param str2_qty: 字符串组 2 的数量
* @retval true: 一致 | false: 不一致
*/
bool is_same_string(const char *str1, const char *str2[], size_t str2_qty)
{
for (size_t i = 0; i < str2_qty; i++)
{
if (strcmp(str1, str2[i]) == 0) {
return true;
}
}
return false;
}
/**
* @brief 是否为 keil
* @note
* @param str1: 字符串 1
* @param str2[]: 字符串组 2
* @param str2_qty: 字符串组 2 数量
* @retval true: 是 | false: 否
*/
bool is_keil(const char *str1, const char *str2[], size_t str2_qty)
{
size_t c;
for (size_t i = 0; i < str2_qty; i++)
{
size_t count = strnlen_s(str2[i], MAX_COMPARE_CHAR);
for (c = 0; c < count; c++)
{
if (tolower(str1[c]) != str2[i][c]) {
break;
}
}
if (c == count) {
return true;
}
}
return false;
}
/**
* @brief 是否为 keil UV 程序
* @note
* @param str: 字符串
* @retval true: 是 | false: 否
*/
bool is_keil_uv(const char *str)
{
if (strstr(str, KEIL_UV_MARK) != NULL) {
return true;
}
return false;
}
/**
* @brief 是否为 project target
* @note
* @param str: 字符串
* @param str_len: 字符串长度
* @retval true: 是 | false: 否
*/
bool is_project_target(const char *str, size_t str_len)
{
for (size_t i = 0; i < str_len; i++)
{
for (size_t k = 0; k < strlen(_not_prj_target); k++)
{
if (str[i] == _not_prj_target[k]) {
return false;
}
}
}
return true;
}
/**
* @brief 初始化动态列表
* @note
* @param capacity: 列表容量
* @retval struct path_list *
*/
struct path_list *path_list_init(size_t capacity)
{
struct path_list *list = malloc(sizeof(struct path_list));
list->items = malloc(capacity * sizeof(char *));
list->capacity = capacity;
list->size = 0;
return list;
}
/**
* @brief 向动态列表添加元素
* @note
* @param list: 列表对象
* @param item: 要新增的项
* @retval None
*/
void path_list_add(struct path_list *list, char *item)
{
/* 如果数组已满,将其最大容量翻倍 */
if (list->size == list->capacity)
{
list->capacity *= 2;
list->items = realloc(list->items, list->capacity * sizeof(char *));
}
list->items[list->size++] = item;
}
/**
* @brief 释放动态列表
* @note
* @param list: 列表对象
* @retval None
*/
void path_list_free(struct path_list *list)
{
for (size_t i = 0; i < list->size; i++) {
free(list->items[i]);
}
free(list->items);
free(list);
}
/**
* @brief 搜寻系统 Path 中是否存在 UV4.exe
* @note
* @param out_uv4_path: [out] uv4.exe 所在路径
* @param path_size: 路径最大 size
* @retval None
*/
void search_uv4(char *out_uv4_path, size_t path_size)
{
DWORD size = GetEnvironmentVariable(SYS_PATH_NAME, NULL, 0);
char *path = (char *)malloc(size * sizeof(char));
char *sub_path = (char *)malloc(size * sizeof(char) + MAX_PRJ_NAME_SIZE);
GetEnvironmentVariable(SYS_PATH_NAME, path, size);
path[size - 1] = '\0';
char *path_ptr = path;
while (*path_ptr)
{
size_t i = 0;
while ((*path_ptr != ';') && (*path_ptr != '\0'))
{
sub_path[i++] = *path_ptr;
path_ptr++;
}
sub_path[i] = '\0';
if (strstr(sub_path, "\\UV4"))
{
snprintf(sub_path, size * sizeof(char) + MAX_PRJ_NAME_SIZE, "%s\\%s", sub_path, KEIL_UV_MARK);
FILE *p_file = fopen(sub_path, "r");
if (p_file)
{
fclose(p_file);
strncpy_s(out_uv4_path, path_size, sub_path, strnlen_s(sub_path, path_size));
break;
}
}
if (*path_ptr) {
path_ptr++;
}
}
free(path);
free(sub_path);
}
/**
* @brief 按文件名和扩展名搜索文件
* @note 本函数不会递归搜索
* @param dir: 要搜索的目录
* @param name: 文件名
* @param suffix[]: 扩展名,支持多个
* @param suffix_qty: 扩展名数量
* @param list: [out] 保存搜索到的文件路径
* @retval None
*/
void search_files_with_name_and_suffix( const char *dir,
const char *name,
const char *suffix[],
size_t suffix_qty,
struct path_list *list)
{
HANDLE h_find;
WIN32_FIND_DATA find_data;
char file_name[MAX_PRJ_NAME_SIZE] = {0};
/* 加上 '*' 以搜索所有文件和文件夹 */
char path[MAX_PATH];
snprintf(path, sizeof(path), "%s\\*", dir);
/* 开始搜索 */
h_find = FindFirstFile(path, &find_data);
if (h_find == INVALID_HANDLE_VALUE) {
return;
}
do {
char *str = strrchr(find_data.cFileName, '.');
if (str != NULL)
{
if (is_same_string(str, suffix, suffix_qty) == false) {
continue;
}
strncpy_s(file_name, sizeof(file_name), find_data.cFileName, strnlen_s(find_data.cFileName, sizeof(find_data.cFileName)));
char *last_point = strrchr(file_name, '.');
if (last_point != NULL) {
*last_point = '\0';
}
const char **pp_name = &name;
if (is_same_string(file_name, pp_name, 1))
{
char *file_path = malloc(MAX_PATH * sizeof(char));
snprintf(file_path, MAX_PATH * sizeof(char), "%s\\%s", dir, find_data.cFileName);
path_list_add(list, file_path);
}
}
} while (FindNextFile(h_find, &find_data) != 0);
FindClose(h_find);
}
/**
* @brief 按扩展名搜索文件
* @note 本函数会递归搜索
* @param dir: 要搜索的目录
* @param suffix[]: 扩展名,支持多个
* @param suffix_qty: 扩展名数量
* @param list: [out] 保存搜索到的文件路径
* @retval None
*/
void search_files_with_suffix(const char *dir, const char *suffix[], size_t suffix_qty, struct path_list *list)
{
HANDLE h_find;
WIN32_FIND_DATA find_data;
/* 加上 '*' 以搜索所有文件和文件夹 */
char path[MAX_PATH];
snprintf(path, sizeof(path), "%s\\*", dir);
/* 开始搜索 */
h_find = FindFirstFile(path, &find_data);
if (h_find == INVALID_HANDLE_VALUE) {
return;
}
do {
/* 如果找到的是目录,且不是 "." 或 ".." ,则递归搜索该目录 */
if (find_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
if (strcmp(find_data.cFileName, ".") != 0
&& strcmp(find_data.cFileName, "..") != 0)
{
char sub_dir[MAX_PATH] = {0};
snprintf(sub_dir, sizeof(sub_dir), "%s\\%s", dir, find_data.cFileName);
search_files_with_suffix(sub_dir, suffix, suffix_qty, list);
}
}
/* 如果找到的是文件,判断其后缀是否为 keil 工程 */
else
{
char *str = strrchr(find_data.cFileName, '.');
if (str && is_same_string(str, suffix, suffix_qty))
{
char *file_path = malloc(MAX_PATH * sizeof(char));
snprintf(file_path, MAX_PATH * sizeof(char), "%s\\%s", dir, find_data.cFileName);
path_list_add(list, file_path);
}
}
} while (FindNextFile(h_find, &find_data) != 0);
FindClose(h_find);
}
/**
* @brief 复制文件
* @note
* @param dir: 要复制到的目录
* @param paths[]: 被复制的路径,支持多个
* @param file_qty: 文件数量
* @retval 0: 成功 | -1: 失败
*/
int copy_files(const char *dir, const char *paths[], size_t file_qty)
{
WINBOOL result;
char new_path[MAX_PATH];
for (size_t i = 0; i < file_qty; i++)
{
char *file_name = strrchr(paths[i], '\\');
if (file_name != NULL)
{
strncpy_s(new_path, sizeof(new_path), dir, strnlen_s(dir, MAX_PATH));
strncat_s(new_path, sizeof(new_path), file_name, strnlen_s(file_name, MAX_PATH));
}
else {
continue;
}
result = CopyFile(paths[i], new_path, FALSE);
if (result == 0) {
printf("[ERROR] copy %s to %s\n", paths[i], dir);
}
}
if (result == 0) {
return -1;
}
return 0;
}
C
1
https://gitee.com/mavistech/keil-autopiler.git
git@gitee.com:mavistech/keil-autopiler.git
mavistech
keil-autopiler
keil-autopiler
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891