"""
pdbreporter.py: Outputs simulation trajectories in PDB format

This is part of the OpenMM molecular simulation toolkit originating from
Simbios, the NIH National Center for Physics-Based Simulation of
Biological Structures at Stanford, funded under the NIH Roadmap for
Medical Research, grant U54 GM072970. See https://simtk.org.

Portions copyright (c) 2012 Stanford University and the Authors.
Authors: Peter Eastman
Contributors:

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, CONTRIBUTORS 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.
"""
__author__ = "Peter Eastman"
__version__ = "1.0"

import simtk.openmm as mm
from simtk.openmm.app import PDBFile
    
class PDBReporter(object):
    """PDBReporter outputs a series of frames from a Simulation to a PDB file.
    
    To use it, create a PDBReporter, then add it to the Simulation's list of reporters.

    EXAMPLES

    Run a simulation, periodically writing atomic positions to a PDB file.
    
    >>> # Load a test system using the OpenMM app.
    >>> import simtk.openmm as openmm
    >>> import simtk.openmm.app as app
    >>> inpcrd = app.AmberInpcrdFile('bosutinib.crd')
    >>> prmtop = app.AmberPrmtopFile('bosutinib.prmtop')
    >>> system = prmtop.createSystem(nonbondedMethod=app.CutoffPeriodic, constraints=app.HBonds)
    >>> positions = inpcrd.getPositions()
    >>> topology = prmtop.topology
    >>> # Create a Simulation object using the system, positions, and topology.
    >>> temperature = 300.0 * units.kelvin
    >>> collision_rate = 9.1 / units.picosecond
    >>> timestep = 2.0 * units.femtosecond
    >>> integrator = openmm.LangevinIntegrator(temperature, collision_rate, timestep)
    >>> simulation = app.Simulation(topology, system, integrator)
    >>> simulation.context.setPositions(positions)
    >>> # Add a PDB trajectory reporter to write out the positions at regular intervals.
    >>> filename = 'trajectory.pdb' # output filename
    >>> reportInterval = 10 # write interval, in steps
    >>> simulation.reporters.append( PDBReporter(filename, reportInterval) )
    >>> # Run the simulation.
    >>> simulation.step(100)
    >>> # Clean up.
    >>> del simulation, integrator

    """
    
    def __init__(self, file, reportInterval, finalFrameOnly=False, append=False):
        """Create a PDBReporter.
    
        Parameters:
         - file (string) The file to write to
         - reportInterval (int) The interval (in time steps) at which to write frames
         - finalFrameOnly (bool) If True, will only write final frame.
         - append (bool) If True, will append to existing PDB file
        """
        self._nextModel = 0
        filemode = 'w'
        if append:
            # Count number of models in file.
            import re
            infile = open(file, 'r')
            for line in infile:
                if line[0:6] == 'MODEL ':
                    self._nextModel += 1
            infile.close()
            filemode = 'a'
        self._reportInterval = reportInterval
        self._file = file
        self._out = open(file, filemode)
        self._topology = None
        self._finalFrameOnly = finalFrameOnly

    def describeNextReport(self, simulation):
        """Get information about the next report this object will generate.
        
        Parameters:
         - simulation (Simulation) The Simulation to generate a report for
        Returns: A five element tuple.  The first element is the number of steps until the
        next report.  The remaining elements specify whether that report will require
        positions, velocities, forces, and energies respectively.
        """
        steps = self._reportInterval - simulation.currentStep%self._reportInterval
        return (steps, True, False, False, False)
    
    def report(self, simulation, state):
        """Generate a report.
        
        Parameters:
         - simulation (Simulation) The Simulation to generate a report for
         - state (State) The current state of the simulation
        """

        if self._finalFrameOnly:
            self._out.close()
            self._out = open(self._file, 'w')
            self._nextModel = 0
        
        if self._nextModel == 0:
            PDBFile.writeHeader(simulation.topology, self._out)
            self._topology = simulation.topology
            self._nextModel += 1
        PDBFile.writeModel(simulation.topology, state.getPositions(), self._out, self._nextModel)
        self._nextModel += 1
    
    def __del__(self):
        PDBFile.writeFooter(self._topology, self._out)
        self._out.close()

if __name__ == '__main__':
    import doctest
    doctest.testmod()
