forked from markokr/skytools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_skytools.py
executable file
·226 lines (197 loc) · 6.57 KB
/
setup_skytools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#! /usr/bin/env python
# this script installs Python modules, scripts and sql files
# custom switches for install:
# --sk3-subdir install modules into "skytools-3.0" subdir
# --skylog use "skylog" logging by default
# non-working switches
# --script-suffix= add suffix to scripts
import sys, os.path, re
from distutils.core import setup
from distutils.extension import Extension
from distutils.command.build import build
from distutils.command.build_scripts import build_scripts
from distutils.command.install import install
from subprocess import Popen
INSTALL_SCRIPTS = 1
INSTALL_SQL = 1
# don't build C module on win32 as it's unlikely to have dev env
BUILD_C_MOD = 1
if sys.platform == 'win32':
BUILD_C_MOD = 0
# load version
buf = open("configure.ac","r").read(256)
m = re.search("AC_INIT[(][^,]*,\s+([^)]*)[)]", buf)
ac_ver = m.group(1)
# scripts that we add suffix
sfx_scripts = [
'python/londiste.py',
'python/walmgr.py',
'scripts/data_maintainer.py',
'scripts/queue_mover.py',
'scripts/queue_splitter.py',
'scripts/scriptmgr.py',
'scripts/simple_consumer.py',
'scripts/simple_local_consumer.py',
'scripts/skytools_upgrade.py',
]
# those do not need suffix (no conflict with 2.1)
nosfx_scripts = [
'python/qadmin.py',
]
if not INSTALL_SCRIPTS:
sfx_scripts = []
nosfx_scripts = []
# sql files we want to access from python
sql_files = [
'sql/pgq/pgq.sql',
'sql/londiste/londiste.sql',
'sql/pgq_node/pgq_node.sql',
'sql/pgq_coop/pgq_coop.sql',
'sql/pgq_ext/pgq_ext.sql',
'sql/pgq/pgq.upgrade.sql',
'sql/pgq_node/pgq_node.upgrade.sql',
'sql/londiste/londiste.upgrade.sql',
'sql/pgq_coop/pgq_coop.upgrade.sql',
'sql/pgq_ext/pgq_ext.upgrade.sql',
'upgrade/final/pgq.upgrade_2.1_to_3.0.sql',
'upgrade/final/londiste.upgrade_2.1_to_3.1.sql',
]
# sql files for special occasions
extra_sql_files = [
#'upgrade/final/v3.0_pgq_core.sql',
]
if not INSTALL_SQL:
sql_files = []
extra_sql_files = []
def getvar(name, default):
try:
cf = open('config.mak').read()
m = re.search(r'^%s *= *(.*)' % name, cf, re.M)
if m:
return m.group(1).strip()
except IOError:
pass
return default
# don't rename scripts on win32
if sys.platform == 'win32':
DEF_SUFFIX = '.py'
DEF_NOSUFFIX = '.py'
else:
DEF_SUFFIX = ''
DEF_NOSUFFIX = ''
# load defaults from config.mak
DEF_SUFFIX = getvar('SUFFIX', DEF_SUFFIX)
DEF_SKYLOG = getvar('SKYLOG', '0') != '0'
DEF_SK3_SUBDIR = getvar('SK3_SUBDIR', '0') != '0'
# create sql files if they don't exist
def make_sql():
for fn in sql_files:
if not os.path.isfile(fn):
f = open(fn, 'w')
wd = os.path.dirname(fn)
if fn.endswith('upgrade.sql'):
base = 'structure/upgrade.sql'
else:
base = 'structure/install.sql'
print("Creating %s" % (fn,))
cmd = [sys.executable, '../../scripts/catsql.py', base]
p = Popen(cmd, stdout=f, cwd = wd)
p.communicate()
if p.returncode != 0:
raise Exception('catsql failed')
# remove .py, add suffix
def fixscript(fn, dstdir, sfx):
fn = os.path.basename(fn)
fn2 = fn.replace('.py', sfx)
if fn == fn2:
return
dfn = os.path.join(dstdir, fn)
dfn2 = os.path.join(dstdir, fn2)
if '-q' not in sys.argv:
print("Renaming %s -> %s" % (dfn, fn2))
if sys.platform == 'win32' and os.path.isfile(dfn2):
os.remove(dfn2)
os.rename(dfn, dfn2)
# rename build dir
class sk3_build(build):
def initialize_options(self):
build.initialize_options(self)
self.build_base = 'build.sk3'
def run(self):
build.run(self)
make_sql()
# fix script names in build dir
class sk3_build_scripts(build_scripts):
def run(self):
build_scripts.run(self)
for sfn in sfx_scripts:
fixscript(sfn, self.build_dir, DEF_SUFFIX)
for sfn in nosfx_scripts:
fixscript(sfn, self.build_dir, DEF_NOSUFFIX)
# wrap generic install command
class sk3_install(install):
user_options = install.user_options + [
('sk3-subdir', None, 'install modules into "skytools-3.0" subdir'),
('skylog', None, 'use "skylog" logging by default'),
]
boolean_options = ['sk3-subdir', 'skylog']
sk3_subdir = DEF_SK3_SUBDIR
skylog = DEF_SKYLOG
def run(self):
# create installer_config.py with final paths
fn = 'python/skytools/installer_config.py'
cf = open(fn + '.in', 'r').read()
cf = cf.replace('@SQLDIR@', os.path.join(self.prefix, 'share/skytools3'))
cf = cf.replace('@PACKAGE_VERSION@', ac_ver)
cf = cf.replace('@SKYLOG@', self.skylog and '1' or '0')
open(fn, 'w').write(cf)
# move python modules
if self.sk3_subdir:
subdir = 'skytools-3.0'
self.install_lib = os.path.join(self.install_lib, subdir)
self.install_purelib = os.path.join(self.install_purelib, subdir)
self.install_platlib = os.path.join(self.install_platlib, subdir)
# generic install
install.run(self)
# check if building C is allowed
c_modules = []
if BUILD_C_MOD:
ext = [
Extension("skytools._cquoting", ['python/modules/cquoting.c']),
Extension("skytools._chashtext", ['python/modules/hashtext.c']),
]
c_modules.extend(ext)
# run actual setup
setup(
name = "skytools",
license = "ISC",
version = ac_ver,
maintainer = "Marko Kreen",
maintainer_email = "[email protected]",
url = "http://pgfoundry.org/projects/skytools/",
description = "SkyTools - tools for PostgreSQL",
platforms = "POSIX, MacOS, Windows",
package_dir = {'': 'python'},
packages = ['skytools', 'londiste', 'londiste.handlers', 'pgq', 'pgq.cascade'],
data_files = [
('share/doc/skytools3/conf', [
'python/conf/wal-master.ini',
'python/conf/wal-slave.ini',
]),
('share/skytools3', sql_files),
#('share/skytools3/extra', extra_sql_files),
],
ext_modules = c_modules,
scripts = sfx_scripts + nosfx_scripts,
cmdclass = {
'build': sk3_build,
'build_scripts': sk3_build_scripts,
'install': sk3_install,
},
long_description = """
This is a package of tools developed at Skype for replication and failover.
It includes a generic queuing framework (PgQ), easy-to-use replication
implementation (Londiste), tool for managing WAL based standby servers,
utility library for Python scripts, selection of scripts for specific jobs.
"""
)