use the python implementation for keyconvert
[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/sfiListNodes.py',
27     'sfa/client/sfiListSlivers.py',
28     'sfa/client/sfiAddSliver.py',
29     'sfa/client/sfiDeleteSliver.py',
30     'sfa/client/sfiAddAttribute.py',
31     'sfa/client/sfiDeleteAttribute.py',
32     'sfatables/sfatables',
33     'keyconvert/keyconvert.py'
34     ]
35
36 package_dirs = [
37     'sfa', 
38     'sfa/client',
39     'sfa/methods',
40     'sfa/plc',
41     'sfa/server',
42     'sfa/trust',
43     'sfa/util', 
44     'sfa/managers',
45     'sfa/rspecs',
46     'sfa/rspecs/aggregates',
47     'sfatables',
48     'sfatables/commands',
49     'sfatables/processors',
50     ]
51
52
53 data_files = [('/etc/sfa/', [ 'config/aggregates.xml',
54                               'config/registries.xml',
55                               'config/geni_aggregates.xml',
56                               'config/default_config.xml',
57                               'config/sfi_config',
58                               'sfa/managers/pl/pl.rng']),
59               ('/etc/sfatables/matches/', glob('sfatables/matches/*.xml')),
60               ('/etc/sfatables/targets/', glob('sfatables/targets/*.xml')),
61               ('/etc/init.d/', ['sfa/init.d/sfa', 'sfa/init.d/sfa-cm'])]
62
63 # add sfatables processors as data_files
64 processor_files = [f for f in glob('sfatables/processors/*') if os.path.isfile(f)]
65 data_files.append(('/etc/sfatables/processors/', processor_files))
66 processor_subdirs = [d for d in glob('sfatables/processors/*') if os.path.isdir(d)]
67 for d in processor_subdirs:
68     etc_dir = os.path.join("/etc/sfatables/processors", os.path.basename(d))
69     d_files = [f for f in glob(d + '/*') if os.path.isfile(f)]
70     data_files.append((etc_dir, processor_files))
71
72 initscripts = [ '/etc/init.d/sfa', '/etc/init.d/sfa-cm' ]
73
74 if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']:
75     python_path = sys.path
76     site_packages_path = [ os.path.join(p,'sfa') for p in python_path if p.endswith('site-packages')]
77     site_packages_path += [ os.path.join(p,'sfatables') for p in python_path if p.endswith('site-packages')]
78     remove_dirs = ['/etc/sfa/', '/etc/sfatables'] + site_packages_path
79     remove_bins = [ '/usr/bin/' + os.path.basename(bin) for bin in bins ]
80     remove_files = remove_bins + initscripts
81
82     # remove files   
83     for filepath in remove_files:
84         print "removing", filepath, "...",
85         try: 
86             os.remove(filepath)
87             print "success"
88         except: print "failed"
89     # remove directories 
90     for directory in remove_dirs: 
91         print "removing", directory, "...",
92         try: 
93             shutil.rmtree(directory)
94             print "success"
95         except: print "failed"
96 else:
97     # avoid repeating what's in the specfile already
98     setup(name='sfa',
99           packages = package_dirs, 
100           data_files = data_files,
101           ext_modules = [],
102           py_modules = [],
103           scripts = bins)
104