diff options
author | midipix <writeonce@midipix.org> | 2020-04-29 22:01:35 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-05-23 05:59:02 +0000 |
commit | 845037353c2db876f004f024b5b50cc18cb70a7a (patch) | |
tree | 34f413ee1d2f997ea3592303f9d7c77f0df1e83e /src | |
parent | e407b8dc73e1bb9c2f5cad4dedf255ca431b1f06 (diff) | |
download | tpax-845037353c2db876f004f024b5b50cc18cb70a7a.tar.bz2 tpax-845037353c2db876f004f024b5b50cc18cb70a7a.tar.xz |
helper interfaces: tpax_stat_compare(): initial implementation.
Diffstat (limited to 'src')
-rw-r--r-- | src/helper/tpax_stat_compare.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/helper/tpax_stat_compare.c b/src/helper/tpax_stat_compare.c new file mode 100644 index 0000000..afbe2f4 --- /dev/null +++ b/src/helper/tpax_stat_compare.c @@ -0,0 +1,41 @@ +/******************************************************/ +/* tpax: a topological pax implementation */ +/* Copyright (C) 2020 Z. Gilboa */ +/* Released under GPLv2 and GPLv3; see COPYING.TPAX. */ +/******************************************************/ + +#include <stdint.h> +#include <stdlib.h> +#include <string.h> +#include <errno.h> +#include <sys/stat.h> + +#include <tpax/tpax.h> +#include "tpax_driver_impl.h" + +#define TPAX_STAT_COMPARE(member) \ + if (src -> member - dst -> member) \ + return (src -> member > dst -> member) \ + ? (1) : (-1) + +int tpax_stat_compare( + const struct stat * src, + const struct stat * dst) +{ + TPAX_STAT_COMPARE(st_dev); + TPAX_STAT_COMPARE(st_ino); + + TPAX_STAT_COMPARE(st_mode); + TPAX_STAT_COMPARE(st_uid); + TPAX_STAT_COMPARE(st_gid); + + TPAX_STAT_COMPARE(st_rdev); + TPAX_STAT_COMPARE(st_size); + TPAX_STAT_COMPARE(st_blksize); + TPAX_STAT_COMPARE(st_blocks); + + TPAX_STAT_COMPARE(st_mtim.tv_sec); + TPAX_STAT_COMPARE(st_mtim.tv_nsec); + + return 0; +} |