summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-08-20 21:13:27 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-08-20 21:13:43 +0200
commit3f515038371bde961c88bf62a9ba0a75667b95dd (patch)
tree17e765affdb8db8979e95735095cec2d953a0655
parentd236633a699b0f4dba30ac8853918a09c8d12445 (diff)
Remove fscompare program
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
-rw-r--r--difftool/Makemodule.am6
-rw-r--r--difftool/fscompare.c124
2 files changed, 0 insertions, 130 deletions
diff --git a/difftool/Makemodule.am b/difftool/Makemodule.am
index 83e5f83..8d0a4e7 100644
--- a/difftool/Makemodule.am
+++ b/difftool/Makemodule.am
@@ -1,8 +1,3 @@
-fscompare_SOURCES = difftool/fscompare.c difftool/difftool.h difftool/util.c
-fscompare_SOURCES += difftool/compare_dir.c difftool/node_compare.c
-fscompare_SOURCES += difftool/compare_file.c
-fscompare_LDADD = libfstree.a libutil.a
-
sqfsdiff_SOURCES = difftool/sqfsdiff.c difftool/difftool.h difftool/util.c
sqfsdiff_SOURCES += difftool/compare_dir.c difftool/node_compare.c
sqfsdiff_SOURCES += difftool/compare_files_sqfs.c difftool/super.c
@@ -10,5 +5,4 @@ sqfsdiff_SOURCES += difftool/extract.c
sqfsdiff_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a
sqfsdiff_LDADD += $(XZ_LIBS) $(ZLIB_LIBS) $(LZO_LIBS) $(LZ4_LIBS) $(ZSTD_LIBS)
-noinst_PROGRAMS += fscompare
bin_PROGRAMS += sqfsdiff
diff --git a/difftool/fscompare.c b/difftool/fscompare.c
deleted file mode 100644
index 6717610..0000000
--- a/difftool/fscompare.c
+++ /dev/null
@@ -1,124 +0,0 @@
-/* SPDX-License-Identifier: GPL-3.0-or-later */
-/*
- * fscompare.c
- *
- * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
- */
-#include "difftool.h"
-
-static struct option long_opts[] = {
- { "no-owner", no_argument, NULL, 'O' },
- { "no-permissions", no_argument, NULL, 'P' },
- { "timestamps", no_argument, NULL, 'T' },
- { "help", no_argument, NULL, 'h' },
- { "version", no_argument, NULL, 'V' },
-};
-
-static const char *short_opts = "OPThV";
-
-static const char *usagestr =
-"Usage: fscompare [OPTIONS...] <first> <second>\n"
-"\n"
-"Compare two directories, making sure that each contains the same entries.\n"
-"If an entry is a directory, comparison recurses into the directory.\n"
-"\n"
-"Possible options:\n"
-"\n"
-" --no-owner, -O Do not compare file owners.\n"
-" --no-permissions, -P Do not compare permission bits.\n"
-"\n"
-" --timestamps, -T Compare file timestamps.\n"
-"\n"
-" --help, -h Print help text and exit.\n"
-" --version, -V Print version information and exit.\n"
-"\n";
-
-const char *first_path;
-const char *second_path;
-int compare_flags = 0;
-
-static void process_options(int argc, char **argv)
-{
- int i;
-
- for (;;) {
- i = getopt_long(argc, argv, short_opts, long_opts, NULL);
- if (i == -1)
- break;
-
- switch (i) {
- case 'O':
- compare_flags |= COMPARE_NO_OWNER;
- break;
- case 'P':
- compare_flags |= COMPARE_NO_PERM;
- break;
- case 'T':
- compare_flags |= COMPARE_TIMESTAMP;
- break;
- case 'h':
- fputs(usagestr, stdout);
- exit(EXIT_SUCCESS);
- case 'V':
- print_version();
- exit(EXIT_SUCCESS);
- default:
- goto fail_arg;
- }
- }
-
- if (optind >= argc) {
- fputs("Missing arguments: first directory\n", stderr);
- goto fail_arg;
- }
-
- first_path = argv[optind++];
-
- if (optind >= argc) {
- fputs("Missing arguments: second directory\n", stderr);
- goto fail_arg;
- }
-
- second_path = argv[optind++];
-
- if (optind < argc) {
- fputs("Unknown extra arguments\n", stderr);
- goto fail_arg;
- }
- return;
-fail_arg:
- fprintf(stderr, "Try `fscompare --help' for more information.\n");
- exit(EXIT_FAILURE);
-}
-
-int main(int argc, char **argv)
-{
- int ret = EXIT_FAILURE;
- fstree_t afs, bfs;
-
- process_options(argc, argv);
-
- if (fstree_init(&afs, 512, NULL))
- return EXIT_FAILURE;
-
- if (fstree_init(&bfs, 512, NULL))
- goto out_afs;
-
- if (fstree_from_dir(&afs, first_path, DIR_SCAN_KEEP_TIME))
- goto out_bfs;
-
- if (fstree_from_dir(&bfs, second_path, DIR_SCAN_KEEP_TIME))
- goto out_bfs;
-
- tree_node_sort_recursive(afs.root);
- tree_node_sort_recursive(bfs.root);
-
- if (node_compare(afs.root, bfs.root) == 0)
- ret = EXIT_SUCCESS;
-
-out_bfs:
- fstree_cleanup(&bfs);
-out_afs:
- fstree_cleanup(&afs);
- return ret;
-}