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

          Line data    Source code
       1             : /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
       2             :    Copyright (c) 2018-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 "TypesafePtr.h"
      23             : #include "core/PlumedMainInitializer.h"
      24             : 
      25             : #include <iostream>
      26             : 
      27             : namespace PLMD {
      28             : 
      29       20449 : TypesafePtr TypesafePtr::fromSafePtr(void* safe) {
      30             :   auto s=(plumed_safeptr_x*)safe;
      31       20449 :   return TypesafePtr(const_cast<void*>(s->ptr), s->nelem, s->shape, s->flags);
      32             : }
      33             : 
      34     1019179 : TypesafePtr TypesafePtr::copy() const {
      35     1019179 :   auto passbyvalue=((flags>>25)&0x7)==1;
      36     1019179 :   if(passbyvalue) {
      37           0 :     throw ExceptionTypeError()<<"PLUMED is trying to copy the pointer of an object passed by value";
      38             :   }
      39     1019179 :   auto forbidstore=flags&0x10000000;
      40     1019179 :   if(forbidstore) {
      41           4 :     throw ExceptionTypeError()<<"PLUMED is trying to copy the pointer of an object for which this was forbidden";
      42             :   }
      43             :   TypesafePtr ret;
      44     1019177 :   ret.ptr=ptr;
      45     1019177 :   ret.flags=flags;
      46     1019177 :   ret.nelem=nelem;
      47     1019177 :   ret.shape=shape;
      48     1019177 :   return ret;
      49             : }
      50             : 
      51          48 : std::string TypesafePtr::extra_msg() {
      52             :   const char *text = "\n"
      53             :                      "If you are sure your code is correct you can disable this check with export PLUMED_TYPESAFE_IGNORE=yes\n"
      54             :                      "In case this is necessary, please report an issue to developers of PLUMED and of the MD code\n"
      55             :                      "See also https://github.com/plumed/plumed2/pull/653";
      56          48 :   return std::string(text);
      57             : }
      58             : 
      59             : }
      60             : 
      61             : 

Generated by: LCOV version 1.16