2023-05-26 14:03:23 +00:00
|
|
|
/************************************************************//**
|
|
|
|
*
|
|
|
|
* @file: win32_path.c
|
|
|
|
* @author: Martin Fouilleul
|
|
|
|
* @date: 24/05/2023
|
|
|
|
*
|
|
|
|
*****************************************************************/
|
2023-06-16 13:30:48 +00:00
|
|
|
#include<shlwapi.h> // PathIsRelative()
|
2023-05-26 14:03:23 +00:00
|
|
|
|
2023-06-16 13:30:48 +00:00
|
|
|
#include"win32_string_helpers.h"
|
2023-05-26 14:03:23 +00:00
|
|
|
#include"platform_path.c"
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
bool oc_path_is_absolute(oc_str8 path)
|
2023-06-16 13:30:48 +00:00
|
|
|
{
|
2023-08-14 08:26:11 +00:00
|
|
|
oc_arena_scope scratch = oc_scratch_begin();
|
|
|
|
oc_str16 pathW = oc_win32_utf8_to_wide_null_terminated(scratch.arena, path);
|
2023-06-16 13:30:48 +00:00
|
|
|
bool result = !PathIsRelativeW(pathW.ptr);
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
oc_scratch_end(scratch);
|
2023-06-16 13:30:48 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
oc_str8 oc_path_executable(oc_arena* arena)
|
2023-05-26 14:03:23 +00:00
|
|
|
{
|
2023-06-26 14:06:26 +00:00
|
|
|
///////////////////////////////////////////////////////////////////
|
2023-05-26 14:03:23 +00:00
|
|
|
//TODO use wide chars
|
2023-06-26 14:06:26 +00:00
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
char* buffer = oc_arena_push_array(arena, char, MAX_PATH+2);
|
2023-05-26 14:03:23 +00:00
|
|
|
int size = GetModuleFileName(NULL, buffer, MAX_PATH+1);
|
|
|
|
//TODO: check for errors...
|
|
|
|
for(int i=0; i<size; i++)
|
|
|
|
{
|
|
|
|
if(buffer[i] == '\\')
|
|
|
|
{
|
|
|
|
buffer[i] = '/';
|
|
|
|
}
|
|
|
|
}
|
2023-08-14 08:26:11 +00:00
|
|
|
return(oc_str8_from_buffer(size, buffer));
|
2023-05-26 14:03:23 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
oc_str8 oc_path_canonical(oc_arena* arena, oc_str8 path); //TODO
|