Setting tag sfa-0.9-14
[sfa.git] / setup.py
1 #!/usr/bin/python
2
3 """
4 Installation script for the sfa module
5 """
6
7 import sys, os, os.path
8 from glob import glob
9 import shutil
10 from distutils.core import setup
11
12 bins = [ 
13     'config/sfa-config-tty',
14     'config/gen-sfa-cm-config.py',
15     'sfa/plc/sfa-import-plc.py', 
16     'sfa/plc/sfa-nuke-plc.py', 
17     'sfa/server/sfa-ca.py', 
18     'sfa/server/sfa-server.py', 
19     'sfa/server/sfa-clean-peer-records.py', 
20     'sfa/server/sfa_component_setup.py', 
21     'sfa/client/sfi.py', 
22     'sfa/client/getNodes.py',
23     'sfa/client/getRecord.py',
24     'sfa/client/setRecord.py',
25     'sfa/client/sfadump.py',
26     'sfa/client/sfiAddAttribute.py',
27     'sfa/client/sfiAddSliver.py',
28     'sfa/client/sfiDeleteAttribute.py',
29     'sfa/client/sfiDeleteSliver.py',
30     'sfa/client/sfiListNodes.py',
31     'sfa/client/sfiListSlivers.py',
32     'sfatables/sfatables',
33     ]
34
35 package_dirs = [
36     'sfa', 
37     'sfa/client',
38     'sfa/methods',
39     'sfa/plc',
40     'sfa/server',
41     'sfa/trust',
42     'sfa/util', 
43     'sfa/managers',
44     'sfa/rspecs',
45     'sfa/rspecs/aggregates',
46     'sfatables',
47     'sfatables/commands',
48     'sfatables/processors',
49     ]
50
51
52 data_files = [('/etc/sfa/', [ 'config/aggregates.xml',
53                               'config/registries.xml',
54                               'config/default_config.xml',
55                               'config/sfi_config',
56                               'sfa/managers/pl/pl.rng']),
57               ('/etc/sfatables/matches/', glob('sfatables/matches/*.xml')),
58               ('/etc/sfatables/targets/', glob('sfatables/targets/*.xml')),
59               ('/etc/init.d/', ['sfa/init.d/sfa', 'sfa/init.d/sfa-cm'])]
60
61 # add sfatables processors as data_files
62 processor_files = [f for f in glob('sfatables/processors/*') if os.path.isfile(f)]
63 data_files.append(('/etc/sfatables/processors/', processor_files))
64 processor_subdirs = [d for d in glob('sfatables/processors/*') if os.path.isdir(d)]
65 for d in processor_subdirs:
66     etc_dir = os.path.join("/etc/sfatables/processors", os.path.basename(d))
67     d_files = [f for f in glob(d + '/*') if os.path.isfile(f)]
68     data_files.append((etc_dir, processor_files))
69
70 initscripts = [ '/etc/init.d/sfa', '/etc/init.d/sfa-cm' ]
71
72 if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']:
73     python_path = sys.path
74     site_packages_path = [ os.path.join(p,'sfa') for p in python_path if p.endswith('site-packages')]
75     site_packages_path += [ os.path.join(p,'sfatables') for p in python_path if p.endswith('site-packages')]
76     remove_dirs = ['/etc/sfa/', '/etc/sfatables'] + site_packages_path
77     remove_bins = [ '/usr/bin/' + os.path.basename(bin) for bin in bins ]
78     remove_files = remove_bins + initscripts
79
80     # remove files   
81     for filepath in remove_files:
82         print "removing", filepath, "...",
83         try: 
84             os.remove(filepath)
85             print "success"
86         except: print "failed"
87     # remove directories 
88     for directory in remove_dirs: 
89         print "removing", directory, "...",
90         try: 
91             shutil.rmtree(directory)
92             print "success"
93         except: print "failed"
94 else:
95     # avoid repeating what's in the specfile already
96     setup(name='sfa',
97           packages = package_dirs, 
98           data_files = data_files,
99           ext_modules = [],
100           py_modules = [],
101           scripts = bins)
102