// Copyright (c) 2005-2009, Rodrigo Braz Monteiro, Niels Martin Hansen // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // * Neither the name of the Aegisub Group nor the names of its contributors // may be used to endorse or promote products derived from this software // without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // // Aegisub Project http://www.aegisub.org/ // // $Id$ /// @file utils.h /// @see utils.cpp /// @ingroup utility /// #pragma once #ifndef AGI_PRE #include #include #include #include #include #include #endif class wxMouseEvent; class wxWindow; typedef std::vector > IntPairVector; /// @brief Make a path relative to reference wxString MakeRelativePath(wxString path,wxString reference); /// @brief Extract original path from relative wxString DecodeRelativePath(wxString path,wxString reference); wxString AegiFloatToString(double value); wxString AegiIntegerToString(int value); wxString PrettySize(int bytes); /// @brief Get the smallest power of two that is greater or equal to x /// /// Algorithm from http://bob.allegronetwork.com/prog/tricks.html int SmallestPowerOf2(int x); /// Get the indices in text which are the beginnings of words /// @param text Text to split into words /// @param[out] results Vector of indices which are the beginnings of words /// @param start First index in text to check /// @param end Last index in text to check, or -1 for end /// /// This is ASS-specific and not a general purpose word boundary finder; words /// within override blocks or drawing blocks are ignored void GetWordBoundaries(wxString const& text, IntPairVector &results, int start=0, int end=-1); /// Check if wchar 'c' is a whitespace character bool IsWhitespace(wchar_t c); /// Check if every character in str is whitespace bool StringEmptyOrWhitespace(const wxString &str); /// @brief String to integer /// /// wxString::ToLong() is slow and not as flexible int AegiStringToInt(const wxString &str,int start=0,int end=-1); int AegiStringToFix(const wxString &str,size_t decimalPlaces,int start=0,int end=-1); /// @brief Launch a new copy of Aegisub. /// /// Contrary to what the name suggests, this does not close the currently /// running process. void RestartAegisub(); /// Add the OS X 10.7+ full-screen button to a window void AddFullScreenButton(wxWindow *window); void SetFloatOnParent(wxWindow *window); /// Forward a mouse wheel event to the window under the mouse if needed /// @param source The initial target of the wheel event /// @param evt The event /// @return Should the calling code process the event? bool ForwardMouseWheelEvent(wxWindow *source, wxMouseEvent &evt); /// Clean up the given cache directory, limiting the size to max_size /// @param directory Directory to clean /// @param file_type Wildcard pattern for files to clean up /// @param max_size Maximum size of directory in MB /// @param max_files Maximum number of files void CleanCache(wxString const& directory, wxString const& file_type, int64_t max_size, int64_t max_files = -1); /// @brief Templated abs() function template T tabs(T x) { return x < 0 ? -x : x; } /// Get the middle value of a, b, and c (i.e. clamp b to [a,c]) /// @precondition a <= c template inline T mid(T a, T b, T c) { return std::max(a, std::min(b, c)); } #ifndef FORCEINLINE #ifdef __VISUALC__ #define FORCEINLINE __forceinline #else #define FORCEINLINE inline // __attribute__((always_inline)) gives me errors on g++ ~amz #endif #endif #define countof(array) (sizeof(array) / sizeof(array[0])) /// Polymorphic delete functor struct delete_ptr { template void operator()(T* ptr) const { delete ptr; } }; /// Delete all of the items in a container of pointers and clear the container template void delete_clear(T& container) { if (!container.empty()) { std::for_each(container.begin(), container.end(), delete_ptr()); container.clear(); } } /// Helper class for background_delete_clear template class BackgroundDeleter : public wxThread { Container cont; wxThread::ExitCode Entry() { delete_clear(cont); return (wxThread::ExitCode)0; } public: BackgroundDeleter(Container &source) : wxThread(wxTHREAD_DETACHED) { using std::swap; swap(cont, source); Create(); SetPriority(WXTHREAD_MIN_PRIORITY); Run(); } }; /// Clear a container of pointers and delete the pointed to members on a /// background thread template void background_delete_clear(T& container) { if (!container.empty()) new BackgroundDeleter(container); } template struct cast { template Out operator()(In in) const { return dynamic_cast(in); } };