[a9b86d] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[a9b86d] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /** \file parsing.cpp
|
---|
| 9 | *
|
---|
| 10 | * Declarations of various class functions for the parsing of value files.
|
---|
| 11 | *
|
---|
| 12 | */
|
---|
| 13 |
|
---|
| 14 | // ======================================= INCLUDES ==========================================
|
---|
| 15 |
|
---|
| 16 | // include config.h
|
---|
| 17 | #ifdef HAVE_CONFIG_H
|
---|
| 18 | #include <config.h>
|
---|
| 19 | #endif
|
---|
| 20 |
|
---|
| 21 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 22 |
|
---|
| 23 | #include <fstream>
|
---|
| 24 | #include <cmath>
|
---|
| 25 |
|
---|
| 26 | #include "CodePatterns/Log.hpp"
|
---|
| 27 |
|
---|
| 28 | #include "Helpers/defs.hpp"
|
---|
| 29 |
|
---|
| 30 | #include "Fragmentation/helpers.hpp"
|
---|
| 31 |
|
---|
| 32 | // ======================================= FUNCTIONS ==========================================
|
---|
| 33 |
|
---|
| 34 | /** Test if given filename can be opened.
|
---|
| 35 | * \param filename name of file
|
---|
| 36 | * \param test true - no error message, false - print error
|
---|
| 37 | * \return given file exists
|
---|
| 38 | */
|
---|
| 39 | bool FilePresent(const char *filename, bool test)
|
---|
| 40 | {
|
---|
| 41 | std::ifstream input;
|
---|
| 42 |
|
---|
| 43 | input.open(filename, ios::in);
|
---|
| 44 | if (input.fail()) {
|
---|
| 45 | if (!test)
|
---|
[47d041] | 46 | LOG(0, endl << "FilePresent: Unable to open " << filename << ", is the directory correct?");
|
---|
[a9b86d] | 47 | return false;
|
---|
| 48 | }
|
---|
| 49 | input.close();
|
---|
| 50 | return true;
|
---|
| 51 | };
|
---|
| 52 |
|
---|
| 53 | /** Test the given parameters.
|
---|
| 54 | * \param argc argument count
|
---|
| 55 | * \param **argv arguments array
|
---|
| 56 | * \return given inputdir is valid
|
---|
| 57 | */
|
---|
| 58 | bool TestParams(int argc, char **argv)
|
---|
| 59 | {
|
---|
| 60 | std::ifstream input;
|
---|
| 61 | stringstream line;
|
---|
| 62 |
|
---|
| 63 | line << argv[1] << FRAGMENTPREFIX << KEYSETFILE;
|
---|
| 64 | return FilePresent(line.str().c_str(), false);
|
---|
| 65 | };
|
---|
| 66 |
|
---|
| 67 | /** Returns a string with \a i prefixed with 0s to match order of total number of molecules in digits.
|
---|
| 68 | * \param FragmentNumber total number of fragments to determine necessary number of digits
|
---|
| 69 | * \param digits number to create with 0 prefixed
|
---|
| 70 | * \return allocated(!) char array with number in digits, ten base.
|
---|
| 71 | */
|
---|
| 72 | char *FixedDigitNumber(const int FragmentNumber, const int digits)
|
---|
| 73 | {
|
---|
| 74 | char *returnstring;
|
---|
| 75 | int number = FragmentNumber;
|
---|
| 76 | int order = 0;
|
---|
| 77 | while (number != 0) { // determine number of digits needed
|
---|
| 78 | number = (int)floor(((double)number / 10.));
|
---|
| 79 | order++;
|
---|
[47d041] | 80 | //LOG(0, "Number is " << number << ", order is " << order << ".");
|
---|
[a9b86d] | 81 | }
|
---|
| 82 | // allocate string
|
---|
| 83 | returnstring = new char[order + 2];
|
---|
| 84 | // terminate and fill string array from end backward
|
---|
| 85 | returnstring[order] = '\0';
|
---|
| 86 | number = digits;
|
---|
| 87 | for (int i=order;i--;) {
|
---|
| 88 | returnstring[i] = '0' + (char)(number % 10);
|
---|
| 89 | number = (int)floor(((double)number / 10.));
|
---|
| 90 | }
|
---|
[47d041] | 91 | //LOG(0, returnstring);
|
---|
[a9b86d] | 92 | return returnstring;
|
---|
| 93 | };
|
---|