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
md5s: _always $(backups:%=%.md5) ;
49

    
50
# Must come before %.sql with no prerequisites to be matched first
51
%.md5: %
52
	nice -n +5 md5sum -q $<|cut -d ' ' -f 1 >$@
53

    
54
# Must come before %.sql with no prerequisites to be matched first
55
%.sql: %
56
	$(restore) $< >$@
57

    
58
# Full DB
59
# Must come before %.backup to be matched first
60
vegbien.%.backup:
61
	$(backup) all >$@
62

    
63
backup* = $(backup) $* >$@
64

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

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

    
78
%.backup/restore: %.backup _always
79
	$(restoreBien) $<
80

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

    
86
%.backup/test: %.backup.sql _always
87
	rm $<
88

    
89
%.backup/rotate: %.backup _always
90
	mv $< $*.$(call mtime,$<).backup
91

    
92
#### Archived imports
93

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

    
96
%.backup/remove: %.backup _always
97
	@$(call confirmRm,$*)
98
	echo $(call rmSchema,$*)|$(bin)/psql_script_vegbien
99

    
100
%.backup/rm_indexes: %.backup _always
101
	$(pg_dump) $*|$(bin)/mk_rm_indexes|$(psqlVerbose)
102

    
103
##### Synchronization
104

    
105
rsyncBackups := $(rsync) --include="/*.backup" --include="/*.sql"\
106
--include="/*.csv" --exclude="**"
107

    
108
upload: _always
109
	$(rsyncBackups) $(local) $(remote)
110
download: _always
111
	$(rsyncBackups) $(remote) $(local)
    (1-1/1)