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"
|
2013-01-30 15:44:51 +01:00
|
|
|
#include "frame_main.h"
|
|
|
|
#include "main.h"
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "options.h"
|
|
|
|
|
2013-02-05 18:13:51 +01:00
|
|
|
#include <libaegisub/ass/dialogue_parser.h>
|
2013-01-04 16:01:50 +01:00
|
|
|
#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>
|
2013-02-05 18:13:51 +01:00
|
|
|
#include <boost/locale/boundary.hpp>
|
|
|
|
#include <boost/range/algorithm_ext.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
|
|
|
|
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
|
|
|
|
2013-07-31 05:31:10 +02:00
|
|
|
std::string float_to_string(double val) {
|
|
|
|
std::string s = str(boost::format("%.3f") % val);
|
|
|
|
size_t pos = s.find_last_not_of("0");
|
|
|
|
if (pos != s.find(".")) ++pos;
|
|
|
|
s.erase(begin(s) + pos, end(s));
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:51 +01:00
|
|
|
void StatusTimeout(wxString const& msg, int ms) {
|
|
|
|
wxGetApp().frame->StatusTimeout(msg, ms);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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__)
|
2013-08-12 05:20:41 +02:00
|
|
|
wxExecute("\"" + wxStandardPaths::Get().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
|
2013-08-12 05:20:41 +02:00
|
|
|
wxExecute(wxStandardPaths::Get().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) {
|
2013-02-05 18:13:51 +01:00
|
|
|
auto tokens = agi::ass::TokenizeDialogueBody(text);
|
|
|
|
agi::ass::MarkDrawings(text, tokens);
|
|
|
|
|
|
|
|
size_t pos = 0;
|
2012-12-06 19:01:47 +01:00
|
|
|
size_t max_line_length = 0;
|
|
|
|
size_t current_line_length = 0;
|
2013-02-05 18:13:51 +01:00
|
|
|
for (auto token : tokens) {
|
|
|
|
if (token.type == agi::ass::DialogueTokenType::LINE_BREAK) {
|
|
|
|
if (text[pos + 1] == 'h')
|
|
|
|
current_line_length += 1;
|
|
|
|
else { // N or n
|
2012-12-06 19:01:47 +01:00
|
|
|
max_line_length = std::max(max_line_length, current_line_length);
|
|
|
|
current_line_length = 0;
|
|
|
|
}
|
2013-02-05 18:13:51 +01:00
|
|
|
}
|
|
|
|
else if (token.type == agi::ass::DialogueTokenType::TEXT) {
|
|
|
|
using namespace boost::locale::boundary;
|
|
|
|
const ssegment_index characters(character, begin(text) + pos, begin(text) + pos + token.length);
|
|
|
|
current_line_length += boost::distance(characters);
|
2012-12-06 19:01:47 +01:00
|
|
|
}
|
|
|
|
|
2013-02-05 18:13:51 +01:00
|
|
|
pos += token.length;
|
2012-12-06 19:01:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return std::max(max_line_length, current_line_length);
|
|
|
|
}
|
|
|
|
|
2013-01-28 01:50:59 +01:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|