Something went wrong on our end
-
marco authored
specifically, remove LOGN_* macros and introduce new logging levels. We now have ERROR, WARNING, INFO, VERBOSE, DEBUG and TRACE. DEBUG and TRACE are turned off under NDEBUG and expand to an empty macro. new default verbosity level displays ERROR/WARNING/INFO git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2709 5a81b35b-ba03-0410-adc8-b2c5c5119f08
marco authoredspecifically, remove LOGN_* macros and introduce new logging levels. We now have ERROR, WARNING, INFO, VERBOSE, DEBUG and TRACE. DEBUG and TRACE are turned off under NDEBUG and expand to an empty macro. new default verbosity level displays ERROR/WARNING/INFO git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2709 5a81b35b-ba03-0410-adc8-b2c5c5119f08
load_surface.cc 1.93 KiB
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2010 by the OpenStructure authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
#include <ost/log.hh>
#include <ost/mol/surface_handle.hh>
#include "load_surface.hh"
#include <ost/io/io_manager.hh>
#include "surface_io_handler.hh"
namespace ost { namespace io {
namespace {
void ImportSurface(mol::SurfaceHandle& sh, const String& fname, const String& type)
{
LOG_DEBUG("creating EntityIOHandle for " << fname);
SurfaceIOHandlerPtr surf_io = IOManager::Instance().FindSurfaceImportHandler(fname,type);
LOG_DEBUG("calling import on surface io handle");
surf_io->Import(sh,fname);
}
}
mol::SurfaceHandle LoadSurface(const String& filename, const String& type)
{
mol::SurfaceHandle sh = mol::CreateSurface();
ImportSurface(sh,filename,type);
return sh;
}
mol::SurfaceHandle LoadManagedSurface(const String& name,
const String& filename, const String& type)
{
mol::SurfaceHandle sh = mol::CreateSurface();
ImportSurface(sh,filename,type);
return sh;
}
}} // ns