Skip to content
Snippets Groups Projects
chemdict_tool.cc 3.13 KiB
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2011 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
//------------------------------------------------------------------------------

/*
  Author: Marco Biasini
 */

#include <iostream>
#include <fstream>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem/convenience.hpp>
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/gzip.hpp>


#include <ost/io/mol/chemdict_parser.hh>

using namespace ost;

void PrintUsage()
{
  std::cout << "usage: chemdict_tool action <compound-dict> <db> (pdb|charmm|amber|opls)" << std::endl;
  std::cout << "supported actions are:" << std::endl;
  std::cout << "  create  - creates a new db " << std::endl;
  std::cout << "  update  - update existing db" << std::endl;
}

int main(int argc, char const *argv[])
{
  if (argc!=4 && argc!=5) {
    PrintUsage();
    return 0;
  }
  conop::Compound::Dialect dialect=conop::Compound::PDB;
  if (argc==5) {
    String format=argv[4];

    if (format=="charmm") {
      dialect=conop::Compound::CHARMM;
    } else if (format=="pdb") {
      dialect=conop::Compound::PDB;
    } else if (format=="opls") {
      dialect=conop::Compound::OPLS;
    } else if (format=="amber") {
      dialect=conop::Compound::AMBER;
    } else {
      PrintUsage();
      return 0;
    }
  }
  boost::iostreams::filtering_stream<boost::iostreams::input>  filtered_istream;  
  std::ifstream istream(argv[2]);
  if (boost::iequals(".gz", boost::filesystem::extension(argv[2]))) {
    filtered_istream.push(boost::iostreams::gzip_decompressor());
  }
  filtered_istream.push(istream);  
  io::ChemdictParser cdp(filtered_istream, dialect);
  conop::CompoundLibPtr compound_lib;
  bool in_mem=false;
  if (!strncmp(argv[1], "create", 6)) {
    compound_lib=conop::CompoundLib::Create(":memory:");
    in_mem=true;
  } else if (!strncmp(argv[1], "update", 6)) {
    compound_lib=conop::CompoundLib::Load(argv[3]);
  } else {
    PrintUsage();
    return 0;
  }
  if (!compound_lib) {
    return 0;
  }
  assert(compound_lib);
  conop::CompoundLibPtr in_mem_lib=in_mem ? compound_lib :
                                   compound_lib->Copy(":memory:");
  compound_lib.reset();
  cdp.SetCompoundLib(in_mem_lib);
  cdp.Parse();
  in_mem_lib->SetChemLibInfo();
  in_mem_lib->Copy(argv[3]);  
  return 0;
}