forked from ReactionMechanismGenerator/RMG-Py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utilities.py
433 lines (352 loc) · 14.9 KB
/
utilities.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
#!/usr/bin/env python3
###############################################################################
# #
# RMG - Reaction Mechanism Generator #
# #
# Copyright (c) 2002-2019 Prof. William H. Green (whgreen@mit.edu), #
# Prof. Richard H. West (r.west@neu.edu) and the RMG Team (rmg_dev@mit.edu) #
# #
# Permission is hereby granted, free of charge, to any person obtaining a #
# copy of this software and associated documentation files (the 'Software'), #
# to deal in the Software without restriction, including without limitation #
# the rights to use, copy, modify, merge, publish, distribute, sublicense, #
# and/or sell copies of the Software, and to permit persons to whom the #
# Software is furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
# DEALINGS IN THE SOFTWARE. #
# #
###############################################################################
"""
This module contains utilities related to compilation and code maintenance.
"""
import argparse
import os
import platform
import re
import shutil
import subprocess
import sys
def check_dependencies():
"""
Checks for and locates major dependencies that RMG requires.
"""
print('\nChecking vital dependencies...\n')
print('{0:<15}{1:<15}{2}'.format('Package', 'Version', 'Location'))
missing = {
'lpsolve': _check_lpsolve(),
'openbabel': _check_openbabel(),
'pydqed': _check_pydqed(),
'pyrdl': _check_pyrdl(),
'rdkit': _check_rdkit(),
'symmetry': _check_symmetry(),
}
if any(missing.values()):
print("""
There are missing dependencies as listed above. Please install them before proceeding.
Using Anaconda, these dependencies can be individually installed from the RMG channel as follows:
conda install -c rmg [package name]
{0}
You can alternatively update your environment and install all missing dependencies as follows:
conda env update -f environment.yml
Be sure to activate your conda environment (rmg_env by default) before installing or updating.
""".format("""
RDKit should be installed from the RDKit channel instead:
conda install -c rdkit rdkit
""" if missing['rdkit'] else ''))
else:
print("""
Everything was found :)
""")
def _check_lpsolve():
"""Check for lpsolve"""
missing = False
try:
import lpsolve55
except ImportError:
print('{0:<30}{1}'.format('lpsolve55',
'Not found. Necessary for generating Clar structures for aromatic species.'))
missing = True
else:
location = lpsolve55.__file__
print('{0:<30}{1}'.format('lpsolve55', location))
return missing
def _check_openbabel():
"""Check for OpenBabel"""
missing = False
try:
from openbabel import openbabel
except ImportError:
print('{0:<30}{1}'.format('OpenBabel',
'Not found. Necessary for SMILES/InChI functionality for nitrogen compounds.'))
missing = True
else:
version = openbabel.OBReleaseVersion()
location = openbabel.__file__
print('{0:<15}{1:<15}{2}'.format('OpenBabel', version, location))
return missing
def _check_pydqed():
"""Check for pydqed"""
missing = False
try:
import pydqed
except ImportError:
print('{0:<30}{1}'.format('pydqed', 'Not found. Necessary for estimating statmech for pressure dependence.'))
missing = True
else:
version = pydqed.__version__
location = pydqed.__file__
print('{0:<15}{1:<15}{2}'.format('pydqed', version, location))
return missing
def _check_pyrdl():
"""Check for pyrdl"""
missing = False
try:
import py_rdl
except ImportError:
print('{0:<30}{1}'.format('pyrdl', 'Not found. Necessary for ring perception algorithms.'))
missing = True
else:
location = py_rdl.__file__
print('{0:<30}{1}'.format('pyrdl', location))
return missing
def _check_rdkit():
"""Check for RDKit"""
missing = False
try:
import rdkit
from rdkit import Chem
except ImportError:
print('{0:<30}{1}'.format('RDKit',
'Not found. Please install RDKit version 2015.03.1 or later with InChI support.'))
missing = True
else:
try:
version = rdkit.__version__
except AttributeError:
version = False
location = rdkit.__file__
inchi = Chem.inchi.INCHI_AVAILABLE
if version:
print('{0:<15}{1:<15}{2}'.format('RDKit', version, location))
if not inchi:
print(' !!! RDKit installed without InChI Support. Please install with InChI.')
missing = True
else:
print(' !!! RDKit version out of date, please install RDKit version 2015.03.1 or later with InChI support.')
missing = True
return missing
def _check_symmetry():
"""Check for symmetry package"""
try:
result = subprocess.check_output('symmetry -h', stderr=subprocess.STDOUT, shell=True)
except subprocess.CalledProcessError:
print('{0:<30}{1}'.format('symmetry', 'Not found. Please install in order to use QM.'))
missing = True
else:
match = re.search(r'\$Revision: (\S*) \$', result.decode())
version = match.group(1)
if platform.system() == 'Windows':
location = subprocess.check_output('where symmetry', shell=True)
else:
location = subprocess.check_output('which symmetry', shell=True)
print('{0:<15}{1:<15}{2}'.format('symmetry', version, location.strip().decode()))
def check_pydas():
"""
Check which solvers PyDAS was compiled with and update rmgpy/solver/settings.pxi accordingly.
If settings.pxi already exists, check it's contents to avoid unnecessary overwriting and compiling.
"""
print('\nChecking for solvers before compiling...\n')
try:
import pydas.daspk
except ImportError:
daspk = False
else:
daspk = True
try:
import pydas.dassl
except ImportError:
dassl = False
else:
dassl = True
if daspk:
print('DASPK solver found. Compiling with DASPK and sensitivity analysis capability...\n')
elif dassl:
print('DASSL solver found. Compiling with DASSL. Sensitivity analysis capabilities are off...\n')
else:
print('No PyDAS solvers found. Please check that you have the latest version of PyDAS '
'or that you have activated the appropriate conda environment.\n')
sys.exit('Cannot compile RMG solver without PyDAS.')
settings_path = os.path.join(os.path.dirname(__file__), 'rmgpy', 'solver', 'settings.pxi')
if os.path.isfile(settings_path):
with open(settings_path, 'r') as f:
settings = f.read()
# Only update the settings file if its contents do not match what we found
write = not ((daspk and 'DASPK = 1' in settings) or (dassl and 'DASPK = 0' in settings))
else:
write = True
if write:
with open(settings_path, 'w') as f:
if daspk:
f.write('DEF DASPK = 1\n')
elif dassl:
f.write('DEF DASPK = 0\n')
def check_python():
"""
Check that Python 3 is in the environment.
"""
major = sys.version_info.major
minor = sys.version_info.minor
if not (major == 3 and minor >= 7):
sys.exit('\nRMG-Py requires Python 3.7 or higher. You are using Python {0}.{1}.\n\n'
'If you are using Anaconda, you should create a new environment using\n\n'
' conda env create -f environment.yml\n\n'
'If you have an existing rmg_env, you can remove it using\n\n'
' conda remove --name rmg_env --all\n'.format(major, minor))
def clean(subdirectory=''):
"""
Removes files generated during compilation.
For *nix systems, remove `.so` files and `.pyc` files.
For Windows, remove `.pyd` files and `.pyc` files.
"""
if platform.system() == 'Windows':
extensions = ['.pyd', '.pyc']
else:
extensions = ['.so', '.pyc']
# Remove temporary build files
print('Removing build directory...')
directory = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'build', subdirectory)
try:
shutil.rmtree(directory)
except FileNotFoundError:
print(f'{directory} not found. Unable to clean up build directory.')
# Remove C shared object files and compiled Python files
print('Removing compiled files...')
directory = os.path.join(os.path.dirname(os.path.abspath(__file__)), subdirectory)
for root, dirs, files in os.walk(directory):
for f in files:
ext = os.path.splitext(f)[1]
if ext in extensions:
os.remove(os.path.join(root, f))
print('Cleanup completed.')
def update_headers():
"""
Automatically update the headers for *.py, *.pyx, and *.pxd files
in RMG-Py/rmgpy, RMG-Py/scripts, and the root RMG-Py directory.
Other directories (e.g., examples, documentation, etc.) are ignored
along with directories containing test data.
The headers are automatically generated based on the LICENSE.txt file.
Typical usage would involve running this script after updating the
copyright date in the license file.
Because this script makes assumptions regarding the contents at the
start of each file, be sure to double-check the results to make sure
important lines aren't accidentally overwritten.
"""
shebang = """#!/usr/bin/env python-jl
"""
header = """###############################################################################
# #
# RMG - Reaction Mechanism Generator #
# #
"""
with open('LICENSE.txt', 'r') as f:
for line in f:
line = line.strip()
newline = '# {0:<75} #\n'.format(line)
header += newline
header += """# #
###############################################################################
"""
print(header)
def replace_header(oldfile):
newfile = os.path.join('tmp', 'tempfile')
ext = os.path.splitext(oldfile)[1]
if ext == '.py':
py_file = True
elif ext == '.pyx' or ext == '.pxd':
py_file = False
else:
raise Exception('Unexpected file type: {0}'.format(oldfile))
with open(oldfile, 'r') as old, open(newfile, 'w+') as new:
# Write shebang and encoding for python files only
if py_file:
new.write(shebang)
# Read old file and copy over contents
found_bar = False
first_line = True
start = False
for i, line in enumerate(old):
if i == 0 and line[0] != '#':
# Assume there's no header, so start copying lines right away
new.write(header)
start = True
if start:
if first_line and line.strip() != '':
new.write('\n')
first_line = False
new.write(line)
elif line.startswith('# cython:'):
# Copy over any cython directives
new.write(line)
new.write('\n')
elif line.startswith('##########'):
if found_bar:
# We've reached the end of the license, so start copying lines starting with the next line
new.write(header)
start = True
else:
found_bar = True
# Replace old file with new file
os.rename(newfile, oldfile)
# Create temporary directory for writing files
if not os.path.exists('tmp'):
os.makedirs('tmp')
# Compile list of files to modify
filelist = ['rmg.py', 'Arkane.py', 'setup.py']
root_dirs = ['rmgpy', 'arkane', 'scripts']
for root_dir in root_dirs:
for root, dirs, files in os.walk(root_dir):
if 'test_data' in root or 'files' in root or '/tools/data' in root or 'arkane/data' in root or '__' in root:
print('Skipping ' + root)
continue
print(root)
for f in files:
ext = os.path.splitext(f)[1]
if ext in ['.py', '.pyx', '.pxd']:
filelist.append(os.path.join(root, f))
for f in filelist:
print('Updating {0} ...'.format(f))
replace_header(f)
# Remove temporary directory
os.rmdir('tmp')
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='RMG Code Utilities')
parser.add_argument('command', metavar='COMMAND', type=str,
choices=['check-dependencies',
'check-pydas',
'check-python',
'clean',
'clean-solver',
'update-headers'],
help='command to execute')
args = parser.parse_args()
if args.command == 'check-dependencies':
check_dependencies()
elif args.command == 'check-pydas':
check_pydas()
elif args.command == 'check-python':
check_python()
elif args.command == 'clean':
clean()
elif args.command == 'clean-solver':
clean('rmgpy/solver')
elif args.command == 'update-headers':
update_headers()