|
|
| version 1.15, 2003/11/20 16:34:24 | version 1.33, 2024/11/04 03:53:25 |
|---|---|
| Line 1 | Line 1 |
| /** @file | /** @file |
| Parser: directory scanning for different OS-es decls. | Parser: directory scanning for different OS-es decls. |
| Copyright (c) 2000,2001-2003 ArtLebedev Group (http://www.artlebedev.com) | Copyright (c) 2000-2024 Art. Lebedev Studio (http://www.artlebedev.com) |
| Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru) | Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru> |
| */ | */ |
| #ifndef PA_DIR_H | #ifndef PA_DIR_H |
| #define PA_DIR_H | #define PA_DIR_H |
| static const char * const IDENT_DIR_H="$Date$"; | #define IDENT_PA_DIR_H "$Id$" |
| #include "pa_config_includes.h" | #include "pa_config_includes.h" |
| Line 17 static const char * const IDENT_DIR_H="$ | Line 17 static const char * const IDENT_DIR_H="$ |
| for findfirst/next/close interface | for findfirst/next/close interface |
| */ | */ |
| #ifdef WIN32 | #ifdef _MSC_VER |
| #include <windows.h> | #include <windows.h> |
| #define MAXPATH MAX_PATH | #define MAXPATH ((MAX_PATH)*2) /*UTF-16*/ |
| #define FA_DIREC FILE_ATTRIBUTE_DIRECTORY | |
| struct ffblk { | struct ffblk { |
| DWORD ff_attrib;/*dwFileAttributes;*/ | struct _WIN32_FIND_DATAW stat; |
| FILETIME ftCreationTime; | |
| FILETIME ftLastAccessTime; | |
| FILETIME ftLastWriteTime; | |
| DWORD nFileSizeHigh; | |
| DWORD nFileSizeLow; | |
| DWORD dwReserved0; | |
| DWORD dwReserved1; | |
| CHAR ff_name[ MAX_PATH ];/*cFileName[ MAX_PATH ];*/ | |
| CHAR cAlternateFileName[ 14 ]; | |
| /*helper*/ | |
| HANDLE handle; | HANDLE handle; |
| /* | const char *name(); |
| bool is_dir(bool); | |
| unsigned char ff_attrib __attribute__((packed)); | double size(); |
| unsigned short ff_ftime __attribute__((packed)); | time_t c_timestamp(); |
| unsigned short ff_fdate __attribute__((packed)); | time_t m_timestamp(); |
| unsigned long ff_fsize __attribute__((packed)); | time_t a_timestamp(); |
| char ff_name[260] __attribute__((packed)); | |
| */ | |
| }; | }; |
| #else | #else |
| #include <strings.h> | |
| #include <sys/types.h> | |
| #include <dirent.h> | |
| #include <sys/stat.h> | |
| #define MAXPATH 1000 /*NAME_MAX*/ | #define MAXPATH 1000 /*NAME_MAX*/ |
| #define FA_DIREC S_IFDIR | |
| struct ffblk { | struct ffblk { |
| /*as if in windows :)*/ | /*as if in windows :)*/ |
| unsigned char ff_attrib; | char ff_name[ MAXPATH ]; |
| char ff_name[ MAXPATH ]; | |
| /*helpers*/ | /*helpers*/ |
| DIR *dir; | DIR *dir; |
| char filePath[MAXPATH]; | const char *filePath; |
| struct stat _st; | |
| #ifdef HAVE_STRUCT_DIRENT_D_TYPE | |
| unsigned char _d_type; | |
| #endif | |
| const char *name(){ return ff_name; } | |
| bool is_dir(bool); | |
| void stat_file(); | |
| double size(); | |
| time_t c_timestamp(); | |
| time_t m_timestamp(); | |
| time_t a_timestamp(); | |
| }; | }; |
| #endif | #endif |
| Line 73 bool findfirst(const char* _pathname, st | Line 66 bool findfirst(const char* _pathname, st |
| bool findnext(struct ffblk *_ffblk); | bool findnext(struct ffblk *_ffblk); |
| void findclose(struct ffblk *_ffblk); | void findclose(struct ffblk *_ffblk); |
| /// main dir workhorse: calles win32/unix unified functions findfirst/next/close | /// main dir workhorse: calles win32/unix unified functions findfirst/next/close [skip . and ..] |
| #define LOAD_DIR(dir,action) {\ | #define LOAD_DIR(dir,action) { \ |
| ffblk ffblk; \ | ffblk ffblk; \ |
| if(!findfirst(dir, &ffblk, 0)) { \ | if(!findfirst(dir, &ffblk, 0)) { \ |
| do \ | do { \ |
| if(*ffblk.ff_name && ffblk.ff_name[0]!='.') {\ | const char *file_name=ffblk.name(); \ |
| if(*file_name && !(file_name[0]=='.' && (file_name[1]==0 || file_name[1]=='.' && file_name[2]==0) )) { \ | |
| action; \ | action; \ |
| } \ | } \ |
| while(!findnext(&ffblk)); \ | } while(!findnext(&ffblk)); \ |
| findclose(&ffblk); \ | findclose(&ffblk); \ |
| } \ | } \ |
| } | } |
| #endif | #endif |