// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** // #ifndef GLOBALFUNCTIONS_H_INCLUDED #define GLOBALFUNCTIONS_H_INCLUDED #include #include #include #include #include #include #include #include class wxStopWatch; namespace common { //------------------------------------------------ // FUNCTIONS //------------------------------------------------ inline int round(double d) //little rounding function { return static_cast(d < 0 ? d - .5 : d + .5); } template inline T abs(const T& d) //absolute value { return d < 0 ? -d : d; } //formatted number conversion C++ ANSI/wide char versions template std::basic_string numberToString(const T& number); //convert number to string the C++ way template T stringToNumber(const std::basic_string& input); //convert number to string the C++ way //formatted number conversion wxWidgets template wxString numberToString(const T& number); template T stringToNumber(const wxString& input); size_t getDigitCount(size_t number); //count number of digits //serialization: read/write numbers: int, long, unsigned int ... ect template T readNumber(std::istream& stream); template void writeNumber(std::ostream& stream, T number); inline wxLongLong convertToSigned(const wxULongLong number) { return wxLongLong(number.GetHi(), number.GetLo()); } //Note: the following lines are a performance optimization for deleting elements from a vector: linear runtime at most! template void removeRowsFromVector(const std::set& rowsToRemove, std::vector& grid); //enhanced binary search template: returns an iterator template ForwardIterator custom_binary_search(ForwardIterator first, ForwardIterator last, const T& value, Compare comp = std::less()); } //############################################################################ class wxFile; class DebugLog { public: wxDEPRECATED(DebugLog(const wxString& filePrefix = wxString())); ~DebugLog(); void write(const wxString& logText); private: wxString assembleFileName(); wxString logfileName; wxString prefix; int lineCount; wxFile* logFile; //logFile.close(); <- not needed }; extern DebugLog logDebugInfo; wxString getCodeLocation(const wxString file, const int line); //small macro for writing debug information into a logfile #define WRITE_DEBUG_LOG(x) logDebugInfo.write(getCodeLocation(__TFILE__, __LINE__) + x); //speed alternative: wxLogDebug(wxT("text")) + DebugView //---------------Inline Implementation--------------------------------------------------- template inline std::basic_string common::numberToString(const T& number) //convert number to string the C++ way { std::basic_ostringstream ss; ss << number; return ss.str(); } template inline T common::stringToNumber(const std::basic_string& input) //convert number to string the C++ way { T number = 0; std::basic_istringstream(input) >> number; return number; } template inline wxString common::numberToString(const T& number) { return numberToString(number).c_str(); } template inline T common::stringToNumber(const wxString& input) { const std::basic_string inputConv(input.c_str()); return stringToNumber(inputConv); } //Note: the following lines are a performance optimization for deleting elements from a vector: linear runtime at most! template void common::removeRowsFromVector(const std::set& rowsToRemove, std::vector& grid) { if (rowsToRemove.empty()) return; std::set::const_iterator rowToSkipIndex = rowsToRemove.begin(); size_t rowToSkip = *rowToSkipIndex; if (rowToSkip >= grid.size()) return; typename std::vector::iterator insertPos = grid.begin() + rowToSkip; for (size_t i = rowToSkip; i < grid.size(); ++i) { if (i != rowToSkip) { *insertPos = grid[i]; ++insertPos; } else { ++rowToSkipIndex; if (rowToSkipIndex != rowsToRemove.end()) rowToSkip = *rowToSkipIndex; } } grid.erase(insertPos, grid.end()); } //enhanced binary search template: returns an iterator template inline ForwardIterator common::custom_binary_search(ForwardIterator first, ForwardIterator last, const T& value, Compare comp) { first = std::lower_bound(first, last, value, comp); if (first != last && !comp(value, *first)) return first; else return last; } template inline T common::readNumber(std::istream& stream) { T result = 0; stream.read(reinterpret_cast(&result), sizeof(T)); return result; } template inline void common::writeNumber(std::ostream& stream, T number) { stream.write(reinterpret_cast(&number), sizeof(T)); } #endif // GLOBALFUNCTIONS_H_INCLUDED