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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903
|
"""File formats.
This module implements the read(), iread() and write() functions in ase.io.
For each file format there is an IOFormat object.
There is a dict, ioformats, which stores the objects.
Example
=======
The xyz format is implemented in the ase/io/xyz.py file which has a
read_xyz() generator and a write_xyz() function. This and other
information can be obtained from ioformats['xyz'].
"""
import functools
import inspect
import os
import sys
import numbers
import warnings
from pathlib import Path, PurePath
from typing import (
IO, List, Any, Iterable, Tuple, Union, Sequence, Dict, Optional)
from ase.atoms import Atoms
from importlib import import_module
from ase.parallel import parallel_function, parallel_generator
class UnknownFileTypeError(Exception):
pass
class IOFormat:
def __init__(self, name: str, desc: str, code: str, module_name: str,
encoding: str = None) -> None:
self.name = name
self.description = desc
assert len(code) == 2
assert code[0] in list('+1')
assert code[1] in list('BFS')
self.code = code
self.module_name = module_name
self.encoding = encoding
# (To be set by define_io_format())
self.extensions: List[str] = []
self.globs: List[str] = []
self.magic: List[str] = []
def open(self, fname, mode: str = 'r') -> IO:
# We might want append mode, too
# We can allow more flags as needed (buffering etc.)
if mode not in list('rwa'):
raise ValueError("Only modes allowed are 'r', 'w', and 'a'")
if mode == 'r' and not self.can_read:
raise NotImplementedError('No reader implemented for {} format'
.format(self.name))
if mode == 'w' and not self.can_write:
raise NotImplementedError('No writer implemented for {} format'
.format(self.name))
if mode == 'a' and not self.can_append:
raise NotImplementedError('Appending not supported by {} format'
.format(self.name))
if self.isbinary:
mode += 'b'
path = Path(fname)
return path.open(mode, encoding=self.encoding)
@property
def can_read(self) -> bool:
return self._readfunc() is not None
@property
def can_write(self) -> bool:
return self._writefunc() is not None
@property
def can_append(self) -> bool:
writefunc = self._writefunc()
return self.can_write and 'append' in writefunc.__code__.co_varnames
def __repr__(self) -> str:
tokens = ['{}={}'.format(name, repr(value))
for name, value in vars(self).items()]
return 'IOFormat({})'.format(', '.join(tokens))
def __getitem__(self, i):
# For compatibility.
#
# Historically, the ioformats were listed as tuples
# with (description, code). We look like such a tuple.
return (self.description, self.code)[i]
@property
def single(self) -> bool:
"""Whether this format is for a single Atoms object."""
return self.code[0] == '1'
@property
def _formatname(self) -> str:
return self.name.replace('-', '_')
def _readfunc(self):
return getattr(self.module, 'read_' + self._formatname, None)
def _writefunc(self):
return getattr(self.module, 'write_' + self._formatname, None)
@property
def read(self):
if not self.can_read:
self._warn_none('read')
return None
return self._read_wrapper
def _read_wrapper(self, *args, **kwargs):
function = self._readfunc()
if function is None:
self._warn_none('read')
return None
if not inspect.isgeneratorfunction(function):
function = functools.partial(wrap_read_function, function)
return function(*args, **kwargs)
def _warn_none(self, action):
msg = ('Accessing the IOFormat.{action} property on a format '
'without {action} support will change behaviour in the '
'future and return a callable instead of None. '
'Use IOFormat.can_{action} to check whether {action} '
'is supported.')
warnings.warn(msg.format(action=action), FutureWarning)
@property
def write(self):
if not self.can_write:
self._warn_none('write')
return None
return self._write_wrapper
def _write_wrapper(self, *args, **kwargs):
function = self._writefunc()
if function is None:
raise ValueError(f'Cannot write to {self.name}-format')
return function(*args, **kwargs)
@property
def modes(self) -> str:
modes = ''
if self.can_read:
modes += 'r'
if self.can_write:
modes += 'w'
return modes
def full_description(self) -> str:
lines = [f'Name: {self.name}',
f'Description: {self.description}',
f'Modes: {self.modes}',
f'Encoding: {self.encoding}',
f'Module: {self.module_name}',
f'Code: {self.code}',
f'Extensions: {self.extensions}',
f'Globs: {self.globs}',
f'Magic: {self.magic}']
return '\n'.join(lines)
@property
def acceptsfd(self) -> bool:
return self.code[1] != 'S'
@property
def isbinary(self) -> bool:
return self.code[1] == 'B'
@property
def module(self):
if not self.module_name.startswith('ase.io.'):
raise ValueError('Will only import modules from ase.io, '
'not {}'.format(self.module_name))
try:
return import_module(self.module_name)
except ImportError as err:
raise UnknownFileTypeError('File format not recognized: %s. '
'Error: %s' % (format, err))
def match_name(self, basename: str) -> bool:
from fnmatch import fnmatch
return any(fnmatch(basename, pattern)
for pattern in self.globs)
def match_magic(self, data: bytes) -> bool:
# XXX We should use a regex for this!
from fnmatch import fnmatchcase
return any(fnmatchcase(data, magic + b'*') # type: ignore
for magic in self.magic)
ioformats: Dict[str, IOFormat] = {} # These will be filled at run-time.
extension2format = {}
all_formats = ioformats # Aliased for compatibility only. Please do not use.
format2modulename = {} # Left for compatibility only.
def define_io_format(name, desc, code, *, module=None, ext=None,
glob=None, magic=None, encoding=None):
if module is None:
module = name.replace('-', '_')
format2modulename[name] = module
def normalize_patterns(strings):
if strings is None:
strings = []
elif isinstance(strings, (str, bytes)):
strings = [strings]
else:
strings = list(strings)
return strings
fmt = IOFormat(name, desc, code, module_name='ase.io.' + module,
encoding=encoding)
fmt.extensions = normalize_patterns(ext)
fmt.globs = normalize_patterns(glob)
fmt.magic = normalize_patterns(magic)
for ext in fmt.extensions:
if ext in extension2format:
raise ValueError('extension "{}" already registered'.format(ext))
extension2format[ext] = fmt
ioformats[name] = fmt
return fmt
def get_ioformat(name: str) -> IOFormat:
"""Return ioformat object or raise appropriate error."""
if name not in ioformats:
raise UnknownFileTypeError(name)
fmt = ioformats[name]
# Make sure module is importable, since this could also raise an error.
fmt.module
return ioformats[name]
# We define all the IO formats below. Each IO format has a code,
# such as '1F', which defines some of the format's properties:
#
# 1=single atoms object
# +=multiple atoms objects
# F=accepts a file-descriptor
# S=needs a file-name str
# B=like F, but opens in binary mode
F = define_io_format
F('abinit-in', 'ABINIT input file', '1F',
module='abinit', magic=b'*znucl *')
F('abinit-out', 'ABINIT output file', '1F',
module='abinit', magic=b'*.Version * of ABINIT')
F('aims', 'FHI-aims geometry file', '1S', ext='in')
F('aims-output', 'FHI-aims output', '+S',
module='aims', magic=b'*Invoking FHI-aims ...')
F('bundletrajectory', 'ASE bundle trajectory', '+S')
F('castep-castep', 'CASTEP output file', '+F',
module='castep', ext='castep')
F('castep-cell', 'CASTEP geom file', '1F',
module='castep', ext='cell')
F('castep-geom', 'CASTEP trajectory file', '+F',
module='castep', ext='geom')
F('castep-md', 'CASTEP molecular dynamics file', '+F',
module='castep', ext='md')
F('castep-phonon', 'CASTEP phonon file', '1F',
module='castep', ext='phonon')
F('cfg', 'AtomEye configuration', '1F')
F('cif', 'CIF-file', '+B', ext='cif')
F('cmdft', 'CMDFT-file', '1F', glob='*I_info')
F('cp2k-dcd', 'CP2K DCD file', '+B',
module='cp2k', ext='dcd')
F('crystal', 'Crystal fort.34 format', '1F',
ext=['f34', '34'], glob=['f34', '34'])
F('cube', 'CUBE file', '1F', ext='cube')
F('dacapo-text', 'Dacapo text output', '1F',
module='dacapo', magic=b'*&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n')
F('db', 'ASE SQLite database file', '+S')
F('dftb', 'DftbPlus input file', '1S', magic=b'Geometry')
F('dlp4', 'DL_POLY_4 CONFIG file', '1F',
module='dlp4', ext='config', glob=['*CONFIG*'])
F('dlp-history', 'DL_POLY HISTORY file', '+F',
module='dlp4', glob='HISTORY')
F('dmol-arc', 'DMol3 arc file', '+S',
module='dmol')
F('dmol-car', 'DMol3 structure file', '1S',
module='dmol', ext='car')
F('dmol-incoor', 'DMol3 structure file', '1S',
module='dmol')
F('elk', 'ELK atoms definition from GEOMETRY.OUT', '1F',
glob=['GEOMETRY.OUT'])
F('elk-in', 'ELK input file', '1F', module='elk')
F('eon', 'EON CON file', '+F',
ext='con')
F('eps', 'Encapsulated Postscript', '1S')
F('espresso-in', 'Quantum espresso in file', '1F',
module='espresso', ext='pwi', magic=[b'*\n&system', b'*\n&SYSTEM'])
F('espresso-out', 'Quantum espresso out file', '+F',
module='espresso', ext=['out', 'pwo'], magic=b'*Program PWSCF')
F('exciting', 'exciting input', '1F', glob='input.xml')
F('extxyz', 'Extended XYZ file', '+F', ext='xyz')
F('findsym', 'FINDSYM-format', '+F')
F('gamess-us-out', 'GAMESS-US output file', '1F',
module='gamess_us', magic=b'*GAMESS')
F('gamess-us-in', 'GAMESS-US input file', '1F',
module='gamess_us')
F('gamess-us-punch', 'GAMESS-US punchcard file', '1F',
module='gamess_us', magic=b' $DATA', ext='dat')
F('gaussian-in', 'Gaussian com (input) file', '1F',
module='gaussian', ext=['com', 'gjf'])
F('gaussian-out', 'Gaussian output file', '+F',
module='gaussian', ext='log', magic=b'*Entering Gaussian System')
F('acemolecule-out', 'ACE output file', '1S',
module='acemolecule')
F('acemolecule-input', 'ACE input file', '1S',
module='acemolecule')
F('gen', 'DFTBPlus GEN format', '1F')
F('gif', 'Graphics interchange format', '+S',
module='animation')
F('gpaw-out', 'GPAW text output', '+F',
magic=b'* ___ ___ ___ _ _ _')
F('gpumd', 'GPUMD input file', '1F', glob='xyz.in')
F('gpw', 'GPAW restart-file', '1S',
magic=[b'- of UlmGPAW', b'AFFormatGPAW'])
F('gromacs', 'Gromacs coordinates', '1F',
ext='gro')
F('gromos', 'Gromos96 geometry file', '1F', ext='g96')
F('html', 'X3DOM HTML', '1F', module='x3d')
F('json', 'ASE JSON database file', '+F', ext='json', module='db')
F('jsv', 'JSV file format', '1F')
F('lammps-dump-text', 'LAMMPS text dump file', '+F',
module='lammpsrun', magic=b'*\nITEM: TIMESTEP\n')
F('lammps-dump-binary', 'LAMMPS binary dump file', '+B',
module='lammpsrun')
F('lammps-data', 'LAMMPS data file', '1F', module='lammpsdata',
encoding='ascii')
F('magres', 'MAGRES ab initio NMR data file', '1F')
F('mol', 'MDL Molfile', '1F')
F('mp4', 'MP4 animation', '+S',
module='animation')
F('mustem', 'muSTEM xtl file', '1F',
ext='xtl')
F('mysql', 'ASE MySQL database file', '+S',
module='db')
F('netcdftrajectory', 'AMBER NetCDF trajectory file', '+S',
magic=b'CDF')
F('nomad-json', 'JSON from Nomad archive', '+F',
ext='nomad-json')
F('nwchem-in', 'NWChem input file', '1F',
module='nwchem', ext='nwi')
F('nwchem-out', 'NWChem output file', '+F',
module='nwchem', ext='nwo',
magic=b'*Northwest Computational Chemistry Package')
F('octopus-in', 'Octopus input file', '1F',
module='octopus', glob='inp')
F('proteindatabank', 'Protein Data Bank', '+F',
ext='pdb')
F('png', 'Portable Network Graphics', '1B')
F('postgresql', 'ASE PostgreSQL database file', '+S', module='db')
F('pov', 'Persistance of Vision', '1S')
# prismatic: Should have ext='xyz' if/when multiple formats can have the same
# extension
F('prismatic', 'prismatic and computem XYZ-file', '1F')
F('py', 'Python file', '+F')
F('sys', 'qball sys file', '1F')
F('qbox', 'QBOX output file', '+F',
magic=b'*:simulation xmlns:')
F('res', 'SHELX format', '1S', ext='shelx')
F('rmc6f', 'RMCProfile', '1S', ext='rmc6f')
F('sdf', 'SDF format', '1F')
F('struct', 'WIEN2k structure file', '1S', module='wien2k')
F('struct_out', 'SIESTA STRUCT file', '1F', module='siesta')
F('traj', 'ASE trajectory', '+B', module='trajectory', ext='traj',
magic=[b'- of UlmASE-Trajectory', b'AFFormatASE-Trajectory'])
F('turbomole', 'TURBOMOLE coord file', '1F', glob='coord',
magic=b'$coord')
F('turbomole-gradient', 'TURBOMOLE gradient file', '+F',
module='turbomole', glob='gradient', magic=b'$grad')
F('v-sim', 'V_Sim ascii file', '1F', ext='ascii')
F('vasp', 'VASP POSCAR/CONTCAR', '1F',
ext='poscar', glob=['*POSCAR*', '*CONTCAR*'])
F('vasp-out', 'VASP OUTCAR file', '+F',
module='vasp', glob='*OUTCAR*')
F('vasp-xdatcar', 'VASP XDATCAR file', '+F',
module='vasp', glob='*XDATCAR*')
F('vasp-xml', 'VASP vasprun.xml file', '+F',
module='vasp', glob='*vasp*.xml')
F('vti', 'VTK XML Image Data', '1F', module='vtkxml')
F('vtu', 'VTK XML Unstructured Grid', '1F', module='vtkxml', ext='vtu')
F('wout', 'Wannier90 output', '1F', module='wannier90')
F('x3d', 'X3D', '1S')
F('xsd', 'Materials Studio file', '1F')
F('xsf', 'XCrySDen Structure File', '+F',
magic=[b'*\nANIMSTEPS', b'*\nCRYSTAL', b'*\nSLAB', b'*\nPOLYMER',
b'*\nMOLECULE', b'*\nATOMS'])
F('xtd', 'Materials Studio file', '+F')
# xyz: No `ext='xyz'` in the definition below.
# The .xyz files are handled by the extxyz module by default.
F('xyz', 'XYZ-file', '+F')
def get_compression(filename: str) -> Tuple[str, Optional[str]]:
"""
Parse any expected file compression from the extension of a filename.
Return the filename without the extension, and the extension. Recognises
``.gz``, ``.bz2``, ``.xz``.
>>> get_compression('H2O.pdb.gz')
('H2O.pdb', 'gz')
>>> get_compression('crystal.cif')
('crystal.cif', None)
Parameters
==========
filename: str
Full filename including extension.
Returns
=======
(root, extension): (str, str or None)
Filename split into root without extension, and the extension
indicating compression format. Will not split if compression
is not recognised.
"""
# Update if anything is added
valid_compression = ['gz', 'bz2', 'xz']
# Use stdlib as it handles most edge cases
root, compression = os.path.splitext(filename)
# extension keeps the '.' so remember to remove it
if compression.strip('.') in valid_compression:
return root, compression.strip('.')
else:
return filename, None
def open_with_compression(filename: str, mode: str = 'r') -> IO:
"""
Wrapper around builtin `open` that will guess compression of a file
from the filename and open it for reading or writing as if it were
a standard file.
Implemented for ``gz``(gzip), ``bz2``(bzip2) and ``xz``(lzma).
Supported modes are:
* 'r', 'rt', 'w', 'wt' for text mode read and write.
* 'rb, 'wb' for binary read and write.
Parameters
==========
filename: str
Path to the file to open, including any extensions that indicate
the compression used.
mode: str
Mode to open the file, same as for builtin ``open``, e.g 'r', 'w'.
Returns
=======
fd: file
File-like object open with the specified mode.
"""
# Compressed formats sometimes default to binary, so force text mode.
if mode == 'r':
mode = 'rt'
elif mode == 'w':
mode = 'wt'
elif mode == 'a':
mode = 'at'
root, compression = get_compression(filename)
if compression == 'gz':
import gzip
return gzip.open(filename, mode=mode) # type: ignore
elif compression == 'bz2':
import bz2
return bz2.open(filename, mode=mode)
elif compression == 'xz':
import lzma
return lzma.open(filename, mode)
else:
# Either None or unknown string
return open(filename, mode)
def wrap_read_function(read, filename, index=None, **kwargs):
"""Convert read-function to generator."""
if index is None:
yield read(filename, **kwargs)
else:
for atoms in read(filename, index, **kwargs):
yield atoms
NameOrFile = Union[str, PurePath, IO]
def write(
filename: NameOrFile,
images: Union[Atoms, Sequence[Atoms]],
format: str = None,
parallel: bool = True,
append: bool = False,
**kwargs: dict
) -> None:
"""Write Atoms object(s) to file.
filename: str or file
Name of the file to write to or a file descriptor. The name '-'
means standard output.
images: Atoms object or list of Atoms objects
A single Atoms object or a list of Atoms objects.
format: str
Used to specify the file-format. If not given, the
file-format will be taken from suffix of the filename.
parallel: bool
Default is to write on master only. Use parallel=False to write
from all slaves.
append: bool
Default is to open files in 'w' or 'wb' mode, overwriting
existing files. In some cases opening the file in 'a' or 'ab'
mode (appending) is useful,
e.g. writing trajectories or saving multiple Atoms objects in one file.
WARNING: If the file format does not support multiple entries without
additional keywords/headers, files created using 'append=True'
might not be readable by any program! They will nevertheless be
written without error message.
The use of additional keywords is format specific. write() may
return an object after writing certain formats, but this behaviour
may change in the future.
"""
if isinstance(filename, PurePath):
filename = str(filename)
if isinstance(filename, str):
fd = None
if filename == '-':
fd = sys.stdout
filename = None # type: ignore
elif format is None:
format = filetype(filename, read=False)
assert isinstance(format, str)
else:
fd = filename # type: ignore
if format is None:
try:
format = filetype(filename, read=False)
assert isinstance(format, str)
except UnknownFileTypeError:
format = None
filename = None # type: ignore
format = format or 'json' # default is json
io = get_ioformat(format)
return _write(filename, fd, format, io, images,
parallel=parallel, append=append, **kwargs)
@parallel_function
def _write(filename, fd, format, io, images, parallel=None, append=False,
**kwargs):
if isinstance(images, Atoms):
images = [images]
if io.single:
if len(images) > 1:
raise ValueError('{}-format can only store 1 Atoms object.'
.format(format))
images = images[0]
if not io.can_write:
raise ValueError("Can't write to {}-format".format(format))
# Special case for json-format:
if format == 'json' and (len(images) > 1 or append):
if filename is not None:
return io.write(filename, images, append=append, **kwargs)
raise ValueError("Can't write more than one image to file-descriptor "
'using json-format.')
if io.acceptsfd:
open_new = (fd is None)
try:
if open_new:
mode = 'wb' if io.isbinary else 'w'
if append:
mode = mode.replace('w', 'a')
fd = open_with_compression(filename, mode)
# XXX remember to re-enable compressed open
# fd = io.open(filename, mode)
return io.write(fd, images, **kwargs)
finally:
if open_new and fd is not None:
fd.close()
else:
if fd is not None:
raise ValueError("Can't write {}-format to file-descriptor"
.format(format))
if io.can_append:
return io.write(filename, images, append=append, **kwargs)
elif append:
raise ValueError("Cannot append to {}-format, write-function "
"does not support the append keyword."
.format(format))
else:
return io.write(filename, images, **kwargs)
def read(
filename: NameOrFile,
index: Any = None,
format: str = None,
parallel: bool = True,
do_not_split_by_at_sign: bool = False,
**kwargs
) -> Union[Atoms, List[Atoms]]:
"""Read Atoms object(s) from file.
filename: str or file
Name of the file to read from or a file descriptor.
index: int, slice or str
The last configuration will be returned by default. Examples:
* ``index=0``: first configuration
* ``index=-2``: second to last
* ``index=':'`` or ``index=slice(None)``: all
* ``index='-3:'`` or ``index=slice(-3, None)``: three last
* ``index='::2'`` or ``index=slice(0, None, 2)``: even
* ``index='1::2'`` or ``index=slice(1, None, 2)``: odd
format: str
Used to specify the file-format. If not given, the
file-format will be guessed by the *filetype* function.
parallel: bool
Default is to read on master and broadcast to slaves. Use
parallel=False to read on all slaves.
do_not_split_by_at_sign: bool
If False (default) ``filename`` is splited by at sign ``@``
Many formats allow on open file-like object to be passed instead
of ``filename``. In this case the format cannot be auto-decected,
so the ``format`` argument should be explicitly given."""
if isinstance(filename, PurePath):
filename = str(filename)
if filename == '-':
filename = sys.stdin
if isinstance(index, str):
try:
index = string2index(index)
except ValueError:
pass
filename, index = parse_filename(filename, index, do_not_split_by_at_sign)
if index is None:
index = -1
format = format or filetype(filename, read=isinstance(filename, str))
io = get_ioformat(format)
if isinstance(index, (slice, str)):
return list(_iread(filename, index, format, io, parallel=parallel,
**kwargs))
else:
return next(_iread(filename, slice(index, None), format, io,
parallel=parallel, **kwargs))
def iread(
filename: NameOrFile,
index: Any = None,
format: str = None,
parallel: bool = True,
do_not_split_by_at_sign: bool = False,
**kwargs
) -> Iterable[Atoms]:
"""Iterator for reading Atoms objects from file.
Works as the `read` function, but yields one Atoms object at a time
instead of all at once."""
if isinstance(filename, PurePath):
filename = str(filename)
if isinstance(index, str):
index = string2index(index)
filename, index = parse_filename(filename, index, do_not_split_by_at_sign)
if index is None or index == ':':
index = slice(None, None, None)
if not isinstance(index, (slice, str)):
index = slice(index, (index + 1) or None)
format = format or filetype(filename, read=isinstance(filename, str))
io = get_ioformat(format)
for atoms in _iread(filename, index, format, io, parallel=parallel,
**kwargs):
yield atoms
@parallel_generator
def _iread(filename, index, format, io, parallel=None, full_output=False,
**kwargs):
if not io.can_read:
raise ValueError("Can't read from {}-format".format(format))
if io.single:
start = index.start
assert start is None or start == 0 or start == -1
args = ()
else:
args = (index,)
must_close_fd = False
if isinstance(filename, str):
if io.acceptsfd:
mode = 'rb' if io.isbinary else 'r'
fd = open_with_compression(filename, mode)
must_close_fd = True
else:
fd = filename
else:
assert io.acceptsfd
fd = filename
# Make sure fd is closed in case loop doesn't finish:
try:
for dct in io.read(fd, *args, **kwargs):
if not isinstance(dct, dict):
dct = {'atoms': dct}
if full_output:
yield dct
else:
yield dct['atoms']
finally:
if must_close_fd:
fd.close()
def parse_filename(filename, index=None, do_not_split_by_at_sign=False):
if not isinstance(filename, str):
return filename, index
basename = os.path.basename(filename)
if do_not_split_by_at_sign or '@' not in basename:
return filename, index
newindex = None
newfilename, newindex = filename.rsplit('@', 1)
if isinstance(index, slice):
return newfilename, index
try:
newindex = string2index(newindex)
except ValueError:
warnings.warn('Can not parse index for path \n'
' "%s" \nConsider set '
'do_not_split_by_at_sign=True \nif '
'there is no index.' % filename)
return newfilename, newindex
def string2index(string: str) -> Union[int, slice, str]:
"""Convert index string to either int or slice"""
if ':' not in string:
# may contain database accessor
try:
return int(string)
except ValueError:
return string
i: List[Optional[int]] = []
for s in string.split(':'):
if s == '':
i.append(None)
else:
i.append(int(s))
i += (3 - len(i)) * [None]
return slice(*i)
def filetype(
filename: NameOrFile,
read: bool = True,
guess: bool = True,
) -> str:
"""Try to guess the type of the file.
First, special signatures in the filename will be checked for. If that
does not identify the file type, then the first 2000 bytes of the file
will be read and analysed. Turn off this second part by using
read=False.
Can be used from the command-line also::
$ ase info filename ...
"""
orig_filename = filename
if hasattr(filename, 'name'):
filename = filename.name # type: ignore
ext = None
if isinstance(filename, str):
if os.path.isdir(filename):
if os.path.basename(os.path.normpath(filename)) == 'states':
return 'eon'
return 'bundletrajectory'
if filename.startswith('postgres'):
return 'postgresql'
if filename.startswith('mysql') or filename.startswith('mariadb'):
return 'mysql'
# strip any compression extensions that can be read
root, compression = get_compression(filename)
basename = os.path.basename(root)
if '.' in basename:
ext = os.path.splitext(basename)[1].strip('.').lower()
for fmt in ioformats.values():
if fmt.match_name(basename):
return fmt.name
if not read:
if ext is None:
raise UnknownFileTypeError('Could not guess file type')
ioformat = extension2format.get(ext)
if ioformat:
return ioformat.name
# askhl: This is strange, we don't know if ext is a format:
return ext
if orig_filename == filename:
fd = open_with_compression(filename, 'rb')
else:
fd = orig_filename # type: ignore
else:
fd = filename # type: ignore
if fd is sys.stdin:
return 'json'
data = fd.read(50000)
if fd is not filename:
fd.close()
else:
fd.seek(0)
if len(data) == 0:
raise UnknownFileTypeError('Empty file: ' + filename) # type: ignore
for ioformat in ioformats.values():
if ioformat.match_magic(data):
return ioformat.name
format = None
if ext in extension2format:
format = extension2format[ext].name
if format is None and guess:
format = ext
if format is None:
# Do quick xyz check:
lines = data.splitlines()
if lines and lines[0].strip().isdigit():
return extension2format['xyz'].name
raise UnknownFileTypeError('Could not guess file type')
assert isinstance(format, str)
return format
def index2range(index, length):
"""Convert slice or integer to range.
If index is an integer, range will contain only that integer."""
obj = range(length)[index]
if isinstance(obj, numbers.Integral):
obj = range(obj, obj + 1)
return obj
|