2006-05-05 20:52:09 +02:00
|
|
|
// Copyright (c) 2005-2006, Rodrigo Braz Monteiro
|
2006-01-16 22:02:54 +01:00
|
|
|
// 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.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file utils.cpp
|
|
|
|
/// @brief Misc. utility functions
|
|
|
|
/// @ingroup utility
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-04-04 00:44:40 +02:00
|
|
|
#include "utils.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "compat.h"
|
|
|
|
#include "options.h"
|
|
|
|
|
|
|
|
#include <libaegisub/dispatch.h>
|
|
|
|
#include <libaegisub/fs.h>
|
|
|
|
#include <libaegisub/log.h>
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifdef __UNIX__
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/format.hpp>
|
2012-04-04 00:44:40 +02:00
|
|
|
#include <map>
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2012-11-19 06:10:36 +01:00
|
|
|
#include <wx/clipbrd.h>
|
2013-01-22 05:27:56 +01:00
|
|
|
#include <wx/filedlg.h>
|
2009-01-04 12:45:06 +01:00
|
|
|
#include <wx/stdpaths.h>
|
2011-10-28 22:15:10 +02:00
|
|
|
#include <wx/window.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2009-01-04 12:45:06 +01:00
|
|
|
#ifdef __APPLE__
|
2010-08-14 19:42:37 +02:00
|
|
|
#include <libaegisub/util_osx.h>
|
2009-01-04 12:45:06 +01:00
|
|
|
#endif
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-04-06 22:01:42 +02:00
|
|
|
wxString AegiFloatToString(double value) {
|
2011-09-28 21:43:11 +02:00
|
|
|
return wxString::Format("%g",value);
|
2006-04-04 22:41:09 +02:00
|
|
|
}
|
|
|
|
|
2009-04-06 22:01:42 +02:00
|
|
|
wxString AegiIntegerToString(int value) {
|
2011-09-28 21:43:11 +02:00
|
|
|
return wxString::Format("%i",value);
|
2006-04-04 22:41:09 +02:00
|
|
|
}
|
2006-07-01 04:27:37 +02:00
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief There shall be no kiB, MiB stuff here Pretty reading of size
|
2006-07-01 04:27:37 +02:00
|
|
|
wxString PrettySize(int bytes) {
|
2012-03-27 02:49:43 +02:00
|
|
|
const char *suffix[] = { "", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
|
2006-07-01 04:27:37 +02:00
|
|
|
|
|
|
|
// Set size
|
2012-10-15 06:37:14 +02:00
|
|
|
size_t i = 0;
|
2006-07-01 04:27:37 +02:00
|
|
|
double size = bytes;
|
2012-10-15 06:37:14 +02:00
|
|
|
while (size > 1024 && i + 1 < sizeof(suffix) / sizeof(suffix[0])) {
|
2012-03-27 02:49:43 +02:00
|
|
|
size /= 1024.0;
|
2006-07-01 04:27:37 +02:00
|
|
|
i++;
|
|
|
|
}
|
2012-03-25 06:05:06 +02:00
|
|
|
|
2006-07-01 04:27:37 +02:00
|
|
|
// Set number of decimal places
|
2012-03-27 02:49:43 +02:00
|
|
|
const char *fmt = "%.0f";
|
|
|
|
if (size < 10)
|
|
|
|
fmt = "%.2f";
|
|
|
|
else if (size < 100)
|
|
|
|
fmt = "%1.f";
|
|
|
|
return wxString::Format(fmt, size) + " " + suffix[i];
|
2006-07-01 04:27:37 +02:00
|
|
|
}
|
2007-01-11 06:33:36 +01:00
|
|
|
|
2007-01-21 07:30:19 +01:00
|
|
|
int SmallestPowerOf2(int x) {
|
|
|
|
x--;
|
|
|
|
x |= (x >> 1);
|
|
|
|
x |= (x >> 2);
|
|
|
|
x |= (x >> 4);
|
|
|
|
x |= (x >> 8);
|
|
|
|
x |= (x >> 16);
|
|
|
|
x++;
|
|
|
|
return x;
|
|
|
|
}
|
2007-04-14 17:26:46 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
bool IsWhitespace(wchar_t c) {
|
2009-06-25 00:22:45 +02:00
|
|
|
const wchar_t whitespaces[] = {
|
|
|
|
// http://en.wikipedia.org/wiki/Space_(punctuation)#Table_of_spaces
|
|
|
|
0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x0020, 0x0085, 0x00A0,
|
|
|
|
0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005,
|
|
|
|
0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x2028, 0x2029, 0x202F,
|
|
|
|
0x025F, 0x3000, 0xFEFF
|
|
|
|
};
|
2013-01-04 16:01:50 +01:00
|
|
|
return std::binary_search(whitespaces, std::end(whitespaces), c);
|
2007-04-21 00:17:42 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
bool StringEmptyOrWhitespace(const wxString &str) {
|
|
|
|
return std::all_of(str.begin(), str.end(), IsWhitespace);
|
2007-04-21 00:17:42 +02:00
|
|
|
}
|
2007-07-05 01:09:40 +02:00
|
|
|
|
2009-01-04 12:45:06 +01:00
|
|
|
void RestartAegisub() {
|
2012-06-08 23:20:21 +02:00
|
|
|
config::opt->Flush();
|
|
|
|
|
2009-01-04 12:45:06 +01:00
|
|
|
#if defined(__WXMSW__)
|
|
|
|
wxStandardPaths stand;
|
2011-09-28 21:43:11 +02:00
|
|
|
wxExecute("\"" + stand.GetExecutablePath() + "\"");
|
2009-01-04 12:45:06 +01:00
|
|
|
#elif defined(__WXMAC__)
|
2012-06-12 05:13:49 +02:00
|
|
|
std::string bundle_path = agi::util::OSX_GetBundlePath();
|
|
|
|
std::string helper_path = agi::util::OSX_GetBundleAuxillaryExecutablePath("restart-helper");
|
|
|
|
if (bundle_path.empty() || helper_path.empty()) return;
|
|
|
|
|
2012-12-23 00:18:38 +01:00
|
|
|
wxString exec = wxString::Format("\"%s\" /usr/bin/open -n \"%s\"'", to_wx(helper_path), to_wx(bundle_path));
|
2010-06-09 01:21:39 +02:00
|
|
|
LOG_I("util/restart/exec") << exec;
|
2010-01-21 01:26:45 +01:00
|
|
|
wxExecute(exec);
|
2009-01-04 12:45:06 +01:00
|
|
|
#else
|
2009-01-12 22:26:44 +01:00
|
|
|
wxStandardPaths stand;
|
|
|
|
wxExecute(stand.GetExecutablePath());
|
2009-01-04 12:45:06 +01:00
|
|
|
#endif
|
|
|
|
}
|
2009-07-29 07:43:02 +02:00
|
|
|
|
2011-10-25 21:40:45 +02:00
|
|
|
bool ForwardMouseWheelEvent(wxWindow *source, wxMouseEvent &evt) {
|
|
|
|
wxWindow *target = wxFindWindowAtPoint(wxGetMousePosition());
|
|
|
|
if (!target || target == source) return true;
|
|
|
|
|
|
|
|
// If the mouse is over a parent of the source window just pretend it's
|
|
|
|
// over the source window, so that the mouse wheel works on borders and such
|
|
|
|
wxWindow *parent = source->GetParent();
|
|
|
|
while (parent && parent != target) parent = parent->GetParent();
|
|
|
|
if (parent == target) return true;
|
|
|
|
|
|
|
|
// Otherwise send it to the new target
|
|
|
|
target->GetEventHandler()->ProcessEvent(evt);
|
|
|
|
evt.Skip(false);
|
|
|
|
return false;
|
|
|
|
}
|
2012-04-04 00:44:40 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string GetClipboard() {
|
2012-10-25 17:13:13 +02:00
|
|
|
wxString data;
|
|
|
|
wxClipboard *cb = wxClipboard::Get();
|
|
|
|
if (cb->Open()) {
|
|
|
|
if (cb->IsSupported(wxDF_TEXT)) {
|
|
|
|
wxTextDataObject raw_data;
|
|
|
|
cb->GetData(raw_data);
|
|
|
|
data = raw_data.GetText();
|
|
|
|
}
|
|
|
|
cb->Close();
|
|
|
|
}
|
2013-01-04 16:01:50 +01:00
|
|
|
return from_wx(data);
|
2012-10-25 17:13:13 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void SetClipboard(std::string const& new_data) {
|
2012-10-25 17:13:13 +02:00
|
|
|
wxClipboard *cb = wxClipboard::Get();
|
|
|
|
if (cb->Open()) {
|
2013-01-04 16:01:50 +01:00
|
|
|
cb->SetData(new wxTextDataObject(to_wx(new_data)));
|
2012-10-25 17:13:13 +02:00
|
|
|
cb->Close();
|
|
|
|
cb->Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetClipboard(wxBitmap const& new_data) {
|
|
|
|
wxClipboard *cb = wxClipboard::Get();
|
|
|
|
if (cb->Open()) {
|
|
|
|
cb->SetData(new wxBitmapDataObject(new_data));
|
|
|
|
cb->Close();
|
|
|
|
cb->Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void CleanCache(agi::fs::path const& directory, std::string const& file_type, uint64_t max_size, uint64_t max_files) {
|
|
|
|
static std::unique_ptr<agi::dispatch::Queue> queue;
|
|
|
|
if (!queue)
|
|
|
|
queue = agi::dispatch::Create();
|
|
|
|
|
|
|
|
max_size <<= 20;
|
|
|
|
if (max_files == 0)
|
|
|
|
max_files = std::numeric_limits<uint64_t>::max();
|
|
|
|
queue->Async([=]{
|
|
|
|
LOG_D("utils/clean_cache") << "cleaning " << directory/file_type;
|
|
|
|
uint64_t total_size = 0;
|
|
|
|
std::multimap<int64_t, agi::fs::path> cachefiles;
|
|
|
|
for (auto const& file : agi::fs::DirectoryIterator(directory, file_type)) {
|
|
|
|
agi::fs::path path = directory/file;
|
|
|
|
cachefiles.insert(std::make_pair(agi::fs::ModifiedTime(path), path));
|
|
|
|
total_size += agi::fs::Size(path);
|
2012-04-04 00:44:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cachefiles.size() <= max_files && total_size <= max_size) {
|
2013-01-04 16:01:50 +01:00
|
|
|
LOG_D("utils/clean_cache") << boost::format("cache does not need cleaning (maxsize=%d, cursize=%d, maxfiles=%d, numfiles=%d), exiting")
|
|
|
|
% max_size % total_size % max_files % cachefiles.size();
|
|
|
|
return;
|
2012-04-04 00:44:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int deleted = 0;
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto const& i : cachefiles) {
|
2012-04-04 00:44:40 +02:00
|
|
|
// stop cleaning?
|
|
|
|
if ((total_size <= max_size && cachefiles.size() - deleted <= max_files) || cachefiles.size() - deleted < 2)
|
|
|
|
break;
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
uint64_t size = agi::fs::Size(i.second);
|
|
|
|
try {
|
|
|
|
agi::fs::Remove(i.second);
|
|
|
|
LOG_D("utils/clean_cache") << "deleted " << i.second;
|
|
|
|
}
|
|
|
|
catch (agi::Exception const& e) {
|
|
|
|
LOG_D("utils/clean_cache") << "failed to delete file " << i.second << ": " << e.GetChainedMessage();
|
2012-04-04 00:44:40 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
total_size -= size;
|
2012-04-04 00:44:40 +02:00
|
|
|
++deleted;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_D("utils/clean_cache") << "deleted " << deleted << " files, exiting";
|
2013-01-04 16:01:50 +01:00
|
|
|
});
|
2012-04-04 00:44:40 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
size_t MaxLineLength(std::string const& text) {
|
2012-12-06 19:01:47 +01:00
|
|
|
size_t max_line_length = 0;
|
|
|
|
size_t current_line_length = 0;
|
|
|
|
bool last_was_slash = false;
|
|
|
|
bool in_ovr = false;
|
|
|
|
|
|
|
|
for (auto const& c : text) {
|
|
|
|
if (in_ovr) {
|
|
|
|
in_ovr = c != '}';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '\\') {
|
|
|
|
current_line_length += last_was_slash; // for the slash before this one
|
|
|
|
last_was_slash = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last_was_slash) {
|
|
|
|
last_was_slash = false;
|
|
|
|
if (c == 'h') {
|
|
|
|
++current_line_length;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'n' || c == 'N') {
|
|
|
|
max_line_length = std::max(max_line_length, current_line_length);
|
|
|
|
current_line_length = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not actually an escape so add the character for the slash and fall through
|
|
|
|
++current_line_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '{')
|
|
|
|
in_ovr = true;
|
|
|
|
else
|
|
|
|
++current_line_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_line_length += last_was_slash;
|
|
|
|
return std::max(max_line_length, current_line_length);
|
|
|
|
}
|
|
|
|
|
2012-05-26 22:16:08 +02:00
|
|
|
// OS X implementation in osx_utils.mm
|
|
|
|
#ifndef __WXOSX_COCOA__
|
2012-06-07 04:48:13 +02:00
|
|
|
void AddFullScreenButton(wxWindow *) { }
|
|
|
|
void SetFloatOnParent(wxWindow *) { }
|
2012-05-26 22:16:08 +02:00
|
|
|
#endif
|
2013-01-04 16:01:50 +01:00
|
|
|
|
2013-01-22 05:27:56 +01:00
|
|
|
agi::fs::path FileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, wxString const& wildcard, int flags, wxWindow *parent) {
|
|
|
|
wxString path;
|
|
|
|
if (!option_name.empty())
|
|
|
|
path = to_wx(OPT_GET(option_name)->GetString());
|
|
|
|
agi::fs::path filename = wxFileSelector(message, path, to_wx(default_filename), to_wx(default_extension), wildcard, flags, parent).wx_str();
|
|
|
|
if (!filename.empty() && !option_name.empty())
|
|
|
|
OPT_SET(option_name)->SetString(filename.parent_path().string());
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
agi::fs::path OpenFileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, wxString const& wildcard, wxWindow *parent) {
|
|
|
|
return FileSelector(message, option_name, default_filename, default_extension, wildcard, wxFD_OPEN | wxFD_FILE_MUST_EXIST, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
agi::fs::path SaveFileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, wxString const& wildcard, wxWindow *parent) {
|
|
|
|
return FileSelector(message, option_name, default_filename, default_extension, wildcard, wxFD_SAVE | wxFD_OVERWRITE_PROMPT, parent);
|
|
|
|
}
|
|
|
|
|