W moim programie wybieram żądane pliki i przesyłam dane. Pola stat struct
są specjalne wszystkie rodzaje:Jak korzystać z printf do wyświetlania off_t, nlink_t, size_t i innych typów specjalnych?
struct stat {
dev_t st_dev; /* ID of device containing file */
ino_t st_ino; /* inode number */
mode_t st_mode; /* protection */
nlink_t st_nlink; /* number of hard links */
uid_t st_uid; /* user ID of owner */
gid_t st_gid; /* group ID of owner */
dev_t st_rdev; /* device ID (if special file) */
off_t st_size; /* total size, in bytes */
blksize_t st_blksize; /* blocksize for file system I/O */
blkcnt_t st_blocks; /* number of 512B blocks allocated */
time_t st_atime; /* time of last access */
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
};
Odpowiedni kod na moje pytanie w następujący sposób:
len = snprintf(statbuf, STAT_BUFFER_SIZE,
"%crwxrwxrwx %lu %u %u %lld %s %s\r\n",
S_ISDIR(filestats.st_mode) ? 'd' : '-',
(unsigned long) filestats.st_nlink,
filestats.st_uid,
filestats.st_gid,
(unsigned long long) filestats.st_size,
date,
filename);
Jak wydrukować te typy w przenośnym i skuteczny sposób? Na początku zrobiłem to bez rzutów, odgadując poprawne specyfikatory formatu. Oprócz bycia irytującym nawykiem programowania, oznaczało to również, że mój kod nie działałby na systemie 32-bitowym. Teraz z obsadami wydaje się działać, ale na ilu platformach?
Specyficzne dla clock_t: http://stackoverflow.com/questions/1083142/what-s-the-correct-way-to-use-printf-to-print-a-clock-t –
Dla '__uint128': http://stackoverflow.com/questions/11656241/how-to-print-uint128-t-number-using-gcc –