mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
* fixleak in CIP labels catch test * fix leak in Murtagh clustering * do not leak writers in streambuf * fix leaks in fingerprintgeneratorwrapper * remove 'minor leak' comments
95 lines
3.8 KiB
C++
95 lines
3.8 KiB
C++
//
|
|
// Copyright (C) 2005-2021 Greg Landrum and Rational Discovery LLC
|
|
//
|
|
// @@ All Rights Reserved @@
|
|
// This file is part of the RDKit.
|
|
// The contents are covered by the terms of the BSD license
|
|
// which is included in the file license.txt, found at the root
|
|
// of the RDKit source tree.
|
|
//
|
|
|
|
#define NO_IMPORT_ARRAY
|
|
#include <RDBoost/python.h>
|
|
#include <string>
|
|
|
|
// ours
|
|
#include <GraphMol/FileParsers/MolWriters.h>
|
|
#include <GraphMol/RDKitBase.h>
|
|
#include "rdchem.h"
|
|
#include "ContextManagers.h"
|
|
#include <RDBoost/PySequenceHolder.h>
|
|
#include <RDBoost/python_streambuf.h>
|
|
|
|
namespace python = boost::python;
|
|
|
|
namespace RDKit {
|
|
using boost_adaptbx::python::streambuf;
|
|
TDTWriter *getTDTWriter(python::object &fileobj) {
|
|
auto *sb = new streambuf(fileobj, 't');
|
|
auto *ost = new streambuf::ostream(sb);
|
|
return new TDTWriter(ost, true);
|
|
}
|
|
|
|
void SetTDTWriterProps(TDTWriter &writer, python::object props) {
|
|
// convert the python list to a STR_VECT
|
|
STR_VECT propNames;
|
|
PySequenceHolder<std::string> seq(props);
|
|
for (unsigned int i = 0; i < seq.size(); i++) {
|
|
propNames.push_back(seq[i]);
|
|
}
|
|
writer.setProps(propNames);
|
|
}
|
|
struct tdtwriter_wrap {
|
|
static void wrap() {
|
|
std::string docStr =
|
|
"Constructor.\n\n"
|
|
" If a string argument is provided, it will be treated as the name "
|
|
"of the output file.\n"
|
|
" If a file-like object is provided, output will be sent there.\n\n";
|
|
python::class_<TDTWriter, boost::noncopyable>(
|
|
"TDTWriter", "A class for writing molecules to TDT files.\n",
|
|
python::no_init)
|
|
.def("__init__", python::make_constructor(&getTDTWriter))
|
|
.def(python::init<std::string>(python::args("self", "fileName"),
|
|
docStr.c_str()))
|
|
.def("__enter__", &MolIOEnter<TDTWriter>,
|
|
python::return_internal_reference<>())
|
|
.def("__exit__", &MolIOExit<TDTWriter>)
|
|
.def("SetProps", SetTDTWriterProps, python::args("self", "props"),
|
|
"Sets the properties to be written to the output file\n\n"
|
|
" ARGUMENTS:\n\n"
|
|
" - props: a list or tuple of property names\n\n")
|
|
.def("write", &TDTWriter::write,
|
|
(python::arg("self"), python::arg("mol"),
|
|
python::arg("confId") = defaultConfId),
|
|
"Writes a molecule to the output file.\n\n"
|
|
" ARGUMENTS:\n\n"
|
|
" - mol: the Mol to be written\n"
|
|
" - confId: (optional) ID of the conformation to write\n\n")
|
|
.def("flush", &TDTWriter::flush, python::args("self"),
|
|
"Flushes the output file (forces the disk file to be "
|
|
"updated).\n\n")
|
|
.def("close", &TDTWriter::close, python::args("self"),
|
|
"Flushes the output file and closes it. The Writer cannot be used "
|
|
"after this.\n\n")
|
|
.def("NumMols", &TDTWriter::numMols, python::args("self"),
|
|
"Returns the number of molecules written so far.\n\n")
|
|
.def("SetWrite2D", &TDTWriter::setWrite2D,
|
|
(python::arg("self"), python::arg("state") = true),
|
|
"causes 2D conformations to be written (default is 3D "
|
|
"conformations)")
|
|
.def("GetWrite2D", &TDTWriter::getWrite2D, python::args("self"))
|
|
.def("SetWriteNames", &TDTWriter::setWriteNames,
|
|
(python::arg("self"), python::arg("state") = true),
|
|
"causes names to be written to the output file as NAME records")
|
|
.def("GetWriteNames", &TDTWriter::getWriteNames, python::args("self"))
|
|
.def("SetNumDigits", &TDTWriter::setNumDigits,
|
|
python::args("self", "numDigits"),
|
|
"sets the number of digits to be written for coordinates")
|
|
.def("GetNumDigits", &TDTWriter::getNumDigits, python::args("self"));
|
|
};
|
|
};
|
|
} // namespace RDKit
|
|
|
|
void wrap_tdtwriter() { RDKit::tdtwriter_wrap::wrap(); }
|