diff options
author | n-peugnet <n.peugnet@free.fr> | 2021-10-01 19:43:56 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2021-10-01 19:43:56 +0200 |
commit | c4aaf908abd8127c43088201f34dd2c921286a23 (patch) | |
tree | 0ab0f81502dd15ab7ff2601ce5aef161d3f36d22 /exp/Makefile | |
parent | facd05e01768369c3b950093aba7e36814674439 (diff) | |
download | dna-backup-c4aaf908abd8127c43088201f34dd2c921286a23.tar.gz dna-backup-c4aaf908abd8127c43088201f34dd2c921286a23.zip |
compare against git diff gzipped
this is not looking good...
Diffstat (limited to 'exp/Makefile')
-rw-r--r-- | exp/Makefile | 59 |
1 files changed, 45 insertions, 14 deletions
diff --git a/exp/Makefile b/exp/Makefile index e7314bf..16d4b65 100644 --- a/exp/Makefile +++ b/exp/Makefile @@ -4,23 +4,50 @@ REPO_PATH := repo GIT_PATH := git GITC := git -C $(REPO_PATH) -TEMP := temp +MAX_VERSION ?= 3 + +DATADIRS := backup diffs +SIZEFILES := $(DATADIRS:%=%-size) .PHONY: all exp -all exp: versions results - @echo "total size : `head --lines=1 results | cut -f1`" - @echo "version count : `wc -l versions`" - @echo "repo results :\n`cat results`" +all exp: summary.csv $(SIZEFILES) + @echo "============== SUMMARY ==============" + @cat $< | tr ',' '\t' + @echo "============== TOTAL ==============" + @for i in $(SIZEFILES); do cat $$i | paste -sd+ | bc; done | tr '\n' '\t' + @echo + +summary.csv: $(SIZEFILES) + echo $(DATADIRS) | tr ' ' ',' > $@ + paste -d "," $^ >> $@ -versions: results - grep [0-9]$$ $< | cut -f1 > $@ +backup-size: versions + rm -rf $@ + for i in $</*; do \ + cut -f1 $$i | paste -sd+ | bc >> $@; \ + done -results: | $(TEMP) - du -bad 2 $(TEMP) | sort -k2 > $@ +diffs-size: diffs + find $< -type f -exec du -ba {} + | cut -f1 > $@ -$(TEMP): commits ../dna-backup +versions: results backup rm -rf $@ - ./exp.sh $< $(REPO_PATH) $@ + mkdir -p $@ + for i in backup/*; do \ + v=`echo $$i | cut -d / -f2`; \ + grep $$i $< > $@/$$v ; \ + done + +results: backup + find $< -type f -exec du -ba {} + \ + | grep -v hashes \ + | sort -k2 \ + > $@ + +$(DATADIRS): commits ../dna-backup + rm -rf $(DATADIRS) + ./exp.sh $< $(REPO_PATH) $(MAX_VERSION) $(DATADIRS) + touch $(DATADIRS) ../dna-backup: .FORCE @$(MAKE) -C .. --no-print-directory dna-backup @@ -36,8 +63,12 @@ repo git: $(GITC) config advice.detachedHead false .PHONY: clean -clean: - rm -rf $(REPO_PATH) $(GIT_PATH) $(TEMP) - rm -f commits results versions +clean: mostlyclean + rm -rf $(REPO_PATH) $(GIT_PATH) + rm commits + +mostlyclean: + rm -rf $(DATADIRS) versions + rm -f results summary.csv $(SIZEFILES) .FORCE: ; |