LCOV - code coverage report
Current view: top level - tools - FileBase.cpp (source / functions) Hit Total Coverage
Test: plumed test coverage Lines: 92 92 100.0 %
Date: 2025-03-25 09:33:27 Functions: 14 15 93.3 %

          Line data    Source code
       1             : /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
       2             :    Copyright (c) 2012-2023 The plumed team
       3             :    (see the PEOPLE file at the root of the distribution for a list of names)
       4             : 
       5             :    See http://www.plumed.org for more information.
       6             : 
       7             :    This file is part of plumed, version 2.
       8             : 
       9             :    plumed is free software: you can redistribute it and/or modify
      10             :    it under the terms of the GNU Lesser General Public License as published by
      11             :    the Free Software Foundation, either version 3 of the License, or
      12             :    (at your option) any later version.
      13             : 
      14             :    plumed is distributed in the hope that it will be useful,
      15             :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      16             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      17             :    GNU Lesser General Public License for more details.
      18             : 
      19             :    You should have received a copy of the GNU Lesser General Public License
      20             :    along with plumed.  If not, see <http://www.gnu.org/licenses/>.
      21             : +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
      22             : #include "FileBase.h"
      23             : #include "Exception.h"
      24             : #include "core/Action.h"
      25             : #include "core/PlumedMain.h"
      26             : #include "core/Value.h"
      27             : #include "Communicator.h"
      28             : #include "Tools.h"
      29             : #include <cstdarg>
      30             : #include <cstring>
      31             : #include <cstdlib>
      32             : 
      33             : #include <iostream>
      34             : #include <string>
      35             : 
      36             : #ifdef __PLUMED_HAS_ZLIB
      37             : #include <zlib.h>
      38             : #endif
      39             : 
      40             : namespace PLMD {
      41             : 
      42       21203 : FileBase& FileBase::link(FILE*fp) {
      43       21203 :   plumed_massert(!this->fp,"cannot link an already open file");
      44       21203 :   this->fp=fp;
      45       21203 :   cloned=true;
      46       21203 :   return *this;
      47             : }
      48             : 
      49        5829 : FileBase& FileBase::flush() {
      50        5829 :   if(fp) {
      51        5761 :     fflush(fp);
      52             :   }
      53        5829 :   return *this;
      54             : }
      55             : 
      56      812517 : FileBase& FileBase::link(Communicator&comm) {
      57      812517 :   plumed_massert(!fp,"cannot link an already open file");
      58      812517 :   this->comm=&comm;
      59      812517 :   return *this;
      60             : }
      61             : 
      62        5482 : FileBase& FileBase::link(PlumedMain&plumed) {
      63        5482 :   plumed_massert(!fp,"cannot link an already open file");
      64        5482 :   this->plumed=&plumed;
      65        5482 :   link(plumed.comm);
      66        5482 :   return *this;
      67             : }
      68             : 
      69        4430 : FileBase& FileBase::link(Action&action) {
      70        4430 :   plumed_massert(!fp,"cannot link an already open file");
      71        4430 :   this->action=&action;
      72        4430 :   link(action.plumed);
      73        4430 :   return *this;
      74             : }
      75             : 
      76        2093 : bool FileBase::FileExist(const std::string& path) {
      77             :   bool do_exist=false;
      78        4186 :   this->path=appendSuffix(path,getSuffix());
      79        2093 :   mode="r";
      80             :   // first try with suffix
      81        2093 :   FILE *ff=std::fopen(const_cast<char*>(this->path.c_str()),"r");
      82             : // call fclose when ff goes out of scope
      83             :   auto deleter=[](auto f) {
      84             :     if(f) {
      85        1583 :       std::fclose(f);
      86             :     }
      87        1583 :   };
      88             :   std::unique_ptr<FILE,decltype(deleter)> fp_deleter(ff,deleter);
      89             : 
      90        2093 :   if(!ff) {
      91             :     this->path=path;
      92             :     // then try without suffic
      93         510 :     ff=std::fopen(const_cast<char*>(this->path.c_str()),"r");
      94             :     mode="r";
      95             :   }
      96        2093 :   if(ff) {
      97             :     do_exist=true;
      98             :   }
      99        2093 :   if(comm) {
     100        1770 :     comm->Barrier();
     101             :   }
     102        2093 :   return do_exist;
     103             : }
     104             : 
     105      814497 : bool FileBase::isOpen() {
     106             :   bool isopen=false;
     107      814497 :   if(fp) {
     108             :     isopen=true;
     109             :   }
     110      814497 :   return isopen;
     111             : }
     112             : 
     113        1056 : void        FileBase::close() {
     114        1056 :   plumed_assert(!cloned);
     115        1056 :   eof=false;
     116        1056 :   err=false;
     117        1056 :   if(fp) {
     118        1056 :     std::fclose(fp);
     119             :   }
     120             : #ifdef __PLUMED_HAS_ZLIB
     121        1056 :   if(gzfp) {
     122           3 :     gzclose(gzFile(gzfp));
     123             :   }
     124             : #endif
     125        1056 :   fp=NULL;
     126        1056 :   gzfp=NULL;
     127        1056 : }
     128             : 
     129      834018 : FileBase::FileBase():
     130      834018 :   fp(NULL),
     131      834018 :   gzfp(NULL),
     132      834018 :   comm(NULL),
     133      834018 :   plumed(NULL),
     134      834018 :   action(NULL),
     135      834018 :   cloned(false),
     136      834018 :   eof(false),
     137      834018 :   err(false),
     138      834018 :   heavyFlush(false),
     139      834018 :   enforcedSuffix_(false) {
     140      834018 : }
     141             : 
     142      834018 : FileBase::~FileBase() {
     143      834018 :   if(plumed) {
     144        5482 :     plumed->eraseFile(*this);
     145             :   }
     146      834018 :   if(!cloned && fp) {
     147        4736 :     std::fclose(fp);
     148             :   }
     149             : #ifdef __PLUMED_HAS_ZLIB
     150      834018 :   if(!cloned && gzfp) {
     151          28 :     gzclose(gzFile(gzfp));
     152             :   }
     153             : #endif
     154      834018 : }
     155             : 
     156    31270783 : FileBase::operator bool()const {
     157    31270783 :   return !eof;
     158             : }
     159             : 
     160        7513 : std::string FileBase::appendSuffix(const std::string&path,const std::string&suffix) {
     161        7513 :   if(path=="/dev/null") {
     162         175 :     return path;  // do not append a suffix to /dev/null
     163             :   }
     164        7338 :   std::string ret=path;
     165        7338 :   std::string ext=Tools::extension(path);
     166             : 
     167             : // These are the recognized extensions so far:
     168             : // gz xtc trr
     169             : // If a file name ends with one of these extensions, the suffix is added *before*
     170             : // the extension. This is useful when extensions are conventionally used
     171             : // to detect file type, so as to allow easier file manipulation.
     172             : // Removing this line, any extension recognized by Tools::extension() would be considered
     173             : //  if(ext!="gz" && ext!="xtc" && ext!="trr") ext="";
     174             : 
     175        7338 :   if(ext.length()>0) {
     176        5126 :     int l=path.length()-(ext.length()+1);
     177        5126 :     plumed_assert(l>=0);
     178        5126 :     ret.resize(l);
     179             :   }
     180             :   ret+=suffix;
     181        7338 :   if(ext.length()>0) {
     182       10252 :     ret+="."+ext;
     183             :   }
     184             :   return ret;
     185             : }
     186             : 
     187         258 : FileBase& FileBase::enforceSuffix(const std::string&suffix) {
     188         258 :   enforcedSuffix_=true;
     189         258 :   enforcedSuffix=suffix;
     190         258 :   return *this;
     191             : }
     192             : 
     193        6314 : std::string FileBase::getSuffix()const {
     194        6314 :   if(enforcedSuffix_) {
     195         264 :     return enforcedSuffix;
     196             :   }
     197        6050 :   if(plumed) {
     198        5342 :     return plumed->getSuffix();
     199             :   }
     200         708 :   return "";
     201             : }
     202             : 
     203             : }

Generated by: LCOV version 1.16