Project

General

Profile

1
selfDir_NzrNZp := $(dir $(lastword $(MAKEFILE_LIST)))
2
root := $(selfDir_NzrNZp)..
3
include $(root)/lib/common.Makefile
4

    
5

    
6
##### Vars/functions
7

    
8
# Make
9
SHELL := /bin/bash
10

    
11
# OS
12
os := $(shell uname)
13
isMac := $(filter Darwin,$(os))
14

    
15
# System
16
dateFmt := %Y-%m-%d-%H-%M-%S
17
mtime = $(shell $(if $(isMac),stat -f %Sm -t "$(dateFmt)" $(1),date\
18
--reference=$(1) +"$(dateFmt)"))
19

    
20
# Terminal
21
esc := '['
22
reset := $(esc)'0m'
23
emph := $(esc)'7m '
24
endEmph := ' '$(reset)
25

    
26
# User interaction
27

    
28
confirm = $(if $(shell read -p $(emph)"$(1)"$(endEmph)$$'$(if\
29
$(2),\n$(2))\nContinue? (y/n) ' REPLY; test "$$REPLY" = y && echo t),,\
30
$(error Aborting))
31

    
32
# Paths
33
bin := $(root)/bin
34

    
35
# DB
36
psqlVerbose := $(bin)/psql_script_vegbien --echo-all
37
pg_dump := $(bin)/pg_dump_vegbien
38
backup := "time" env data=1 $(pg_dump)
39
restore := "time" $(bin)/postgres_vegbien pg_restore --exit-on-error
40
restoreBien := $(restore) --dbname=vegbien
41
# pg_restore doesn't support PGDATABASE env var
42
rmSchema = 'DROP SCHEMA IF EXISTS "$(1)" CASCADE;'
43

    
44
##### Backups
45

    
46
backups := $(wildcard *.backup)
47

    
48
#### Checksums
49

    
50
md5s: _always $(backups:%=%.md5) ;
51

    
52
%.md5: %
53
	nice -n +5 md5sum $<|cut -d ' ' -f 1 >$@
54

    
55
%.md5/test: %.md5 % _always
56
	echo '$(shell cat $<)  $*'|nice -n +5 md5sum -vc /dev/stdin
57

    
58
#### SQL
59

    
60
# Must come before %.sql with no prerequisites to be matched first
61
%.sql: %
62
	$(restore) $< >$@
63

    
64
# Full DB
65
# Must come before %.backup to be matched first
66
vegbien.%.backup:
67
	$(backup) all >$@
68

    
69
backup* = $(backup) $* >$@
70

    
71
# Note: This can't be used for the current (unrotated) public schema because
72
# pg_dump doesn't back up the CREATE SCHEMA statement for it, assuming falsely
73
# that public already exists because it's in template1.
74
%.backup:
75
	$(backup*)
76
	$(MAKE) $@.md5
77

    
78
# When testing, turn off %.sql so make won't skip `%.sql: %` in favor of it
79
ifeq ($(filter %.backup/test,$(MAKECMDGOALS)),)
80
%.sql:
81
	env plain=1 $(backup*)
82
endif
83

    
84
%.backup/restore: %.backup _always
85
	$(restoreBien) $<
86

    
87
%.sql/restore: %.sql _always
88
	$(bin)/psql_script_vegbien <$<
89
# pg_restore only supports "non-plain-text formats"
90
# (http://www.postgresql.org/docs/9.1/static/app-pgrestore.html)
91

    
92
%.backup/test: %.backup.sql _always
93
	rm $<
94

    
95
%.backup/rotate: %.backup _always
96
	mv $< $*.$(call mtime,$<).backup
97

    
98
#### Archived imports
99

    
100
confirmRm = $(call confirm,WARNING: This will delete the archived import $(1)!)
101

    
102
public* = $(*:vegbien.%=public.%)
103

    
104
%.backup/remove: %.backup _always
105
	@$(call confirmRm,$(public*))
106
	echo $(call rmSchema,$(public*))|$(bin)/psql_script_vegbien
107

    
108
%.backup/rm_indexes: %.backup _always
109
	$(pg_dump) $*|$(bin)/mk_rm_indexes|$(psqlVerbose)
110

    
111
##### Synchronization
112

    
113
rsyncBackups := $(rsync) --include="/*.backup" --include="/*.sql"\
114
--include="/*.csv" --include="/*.md5" --exclude="**"
115

    
116
upload: _always
117
	$(rsyncBackups) $(local) $(remote)
118
download: _always
119
	$(rsyncBackups) $(remote) $(local)
    (1-1/1)