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
#### SQL
56

    
57
# Must come before %.sql with no prerequisites to be matched first
58
%.sql: %
59
	$(restore) $< >$@
60

    
61
# Full DB
62
# Must come before %.backup to be matched first
63
vegbien.%.backup:
64
	$(backup) all >$@
65

    
66
backup* = $(backup) $* >$@
67

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

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

    
81
%.backup/restore: %.backup _always
82
	$(restoreBien) $<
83

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

    
89
%.backup/test: %.backup.sql _always
90
	rm $<
91

    
92
%.backup/rotate: %.backup _always
93
	mv $< $*.$(call mtime,$<).backup
94

    
95
#### Archived imports
96

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

    
99
%.backup/remove: %.backup _always
100
	@$(call confirmRm,$*)
101
	echo $(call rmSchema,$*)|$(bin)/psql_script_vegbien
102

    
103
%.backup/rm_indexes: %.backup _always
104
	$(pg_dump) $*|$(bin)/mk_rm_indexes|$(psqlVerbose)
105

    
106
##### Synchronization
107

    
108
rsyncBackups := $(rsync) --include="/*.backup" --include="/*.sql"\
109
--include="/*.csv" --exclude="**"
110

    
111
upload: _always
112
	$(rsyncBackups) $(local) $(remote)
113
download: _always
114
	$(rsyncBackups) $(remote) $(local)
    (1-1/1)