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_entity.cc 2.33 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/conop/conop.hh>
#include "load_entity.hh"
#include <ost/io/io_manager.hh>
#include <ost/io/mol/entity_io_handler.hh>
#include <ost/profile.hh>
namespace ost { namespace io {
namespace {
void Import(mol::EntityHandle& eh, const String& filename, int flag)
{
Profile profile_import("import");
LOG_DEBUG("creating EntityIOHandle for " << filename);
EntityIOHandlerP ent_io = IOManager::Instance().FindEntityImportHandler(filename);
// TODO: proper error handling
LOG_DEBUG("calling import on entity io handle");
/*
This should probably allow various parameters to be passed
to adjust the loading behaviour for a particular filter.
Alternatively, these settings could be done outside via
the main IOManager interface, as global settings per import plugin
*/
ent_io->Import(eh,filename);
LOG_DEBUG("running conopology");
if(ent_io->RequiresBuilder()) {
conop::BuilderP builder = conop::Conopology::Instance().GetBuilder();
conop::Conopology::Instance().ConnectAll(builder,eh,flag);
}
}
} // anon ns
mol::EntityHandle LoadEntity(const String& filename, int flag)
{
LOG_DEBUG("creating emtpy entity");
mol::EntityHandle eh=mol::CreateEntity();
mol::XCSEditor xcs_lock=eh.RequestXCSEditor(mol::BUFFERED_EDIT);
Import(eh,filename,flag);
return eh;
}
}} // ns