/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2021 Frederik Heber. All rights reserved. * * * This file is part of MoleCuilder. * * MoleCuilder is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * MoleCuilder 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MoleCuilder. If not, see . */ /* * Graph6Writer.cpp * * Created on: Apr 2, 2021 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Graph6Writer.hpp" #include "CodePatterns/Assert.hpp" #include "CodePatterns/Log.hpp" #include #include #include #include "Atom/atom.hpp" #include "Element/element.hpp" //#include "CodePatterns/MemDebug.hpp" Graph6Writer::Graph6Writer(const std::vector atoms): _atoms(atoms) {} void Graph6Writer::write_n(std::ostream& out) { const unsigned long n = _atoms.size(); if (n<62) { out << ((unsigned char)(n+63)); return; } out << ((unsigned char)126); int num_bytes = 2; if (n> 258047) { out << ((unsigned char)126); num_bytes = 3; } for(int value=num_bytes; value>=0; value--) { unsigned char c = 0; int n_pos = 6*(value+1)-1; for(int c_pos=5; c_pos>=0; n_pos--, c_pos--) { c += (n & (1<>((int)n_pos/6); } out << (c+63); } } /* Given an iterator over the adjacency matrix in the order (0,1),(0,2),(1,2),(0,3),(1,3),(2,3),...,(n-1,n) this writes a graph6 representation to out. */ void Graph6Writer::write_graph6(std::ostream& out) { write_n(out); const unsigned long n = _atoms.size(); unsigned char value = 0; int byte_pos = 5; unsigned int bytes_written = 0; for (size_t j=0; jIsBondedTo(_atoms[j]); LOG(2, "DEBUG: (" << i << "," << j << ") = " << bit << "," << value << " | " << bit << " << " << byte_pos << " = " << (unsigned int)value << " | " << (bit << byte_pos)); value = value | (bit << byte_pos--); if (byte_pos < 0) { LOG(2, "DEBUG: Writing byte " << value << " into range [" << (unsigned char)63 << "," << (unsigned char)126 << "]"); ASSERT( (value+63) <= 126, "Graph6Writer::write_graph6() - char to write is outside "+toString((unsigned char)63) +" and "+toString((unsigned char)126)); out << (unsigned char)(value+63); bytes_written++; value = 0; byte_pos = 5; } } if (byte_pos!=5) { ASSERT( (value+63) <= 126, "Graph6Writer::write_graph6() - char to write is outside "+toString((unsigned char)63) +" and "+toString((unsigned char)126)); LOG(2, "DEBUG: Writing byte " << value << " into range [" << (unsigned char)63 << "," << (unsigned char)126 << "]"); out << (unsigned char)(value+63); bytes_written++; value=0; } ASSERT( value==0, "Graph6Writer::write_graph6() - byte is not null, i.e. chars left to write?"); ASSERT( bytes_written == (int)ceil(n*(n-1)/12.0f), "Graph6Writer::write_graph6() - unexpected number of bytes written"); } void Graph6Writer::write_elementlist(std::ostream& out) { for (std::vector::const_iterator iter = _atoms.begin(); iter != _atoms.end(); ++iter) { if (iter != _atoms.begin()) out << ' '; out << (*iter)->getElement().getSymbol(); } }