2006-01-16 22:02:54 +01:00
|
|
|
// Copyright (c) 2005, Rodrigo Braz Monteiro
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
// Website: http://aegisub.cellosoft.com
|
|
|
|
// Contact: mailto:zeratul@cellosoft.com
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
///////////
|
|
|
|
// Headers
|
|
|
|
#include <wx/wxprec.h>
|
|
|
|
#include <wx/filename.h>
|
|
|
|
#include "utils.h"
|
|
|
|
#ifdef __UNIX__
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-04-13 09:41:20 +02:00
|
|
|
#ifndef __LINUX__
|
2006-01-16 22:02:54 +01:00
|
|
|
//////////////////////////
|
|
|
|
// Absolute of 64 bit int
|
|
|
|
__int64 abs64(__int64 input) {
|
|
|
|
if (input < 0) return -input;
|
|
|
|
return input;
|
|
|
|
}
|
2006-02-26 03:53:45 +01:00
|
|
|
#endif
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Count number of matches of a substr
|
|
|
|
int CountMatches(wxString parent,wxString child) {
|
|
|
|
size_t pos = -1;
|
|
|
|
int n = 0;
|
|
|
|
while ((pos = parent.find(child,pos+1)) != wxString::npos) n++;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
// Copy a file
|
|
|
|
#ifdef __WIN32__
|
|
|
|
bool Copy(wxString src,wxString dst) {
|
|
|
|
BOOL result = CopyFile(src.wc_str(),dst.wc_str(),false);
|
|
|
|
return (result != 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
////////////////
|
|
|
|
// Backup a file
|
|
|
|
bool Backup(wxString src,wxString dst) {
|
2006-02-25 04:04:52 +01:00
|
|
|
// Windows
|
|
|
|
#if defined(__WIN32__)
|
2006-01-16 22:02:54 +01:00
|
|
|
return Copy(src,dst);
|
2006-02-25 04:04:52 +01:00
|
|
|
|
|
|
|
// Linux
|
|
|
|
#elif defined(__UNIX__)
|
2006-01-16 22:02:54 +01:00
|
|
|
return link(src.mb_str(),dst.mb_str()) != 0;
|
2006-02-25 04:04:52 +01:00
|
|
|
|
|
|
|
// Error
|
|
|
|
#else
|
|
|
|
#error "don't know how to backup files"
|
|
|
|
#endif
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////
|
|
|
|
// Make a path relative to reference
|
|
|
|
wxString MakeRelativePath(wxString _path,wxString reference) {
|
2006-02-20 22:32:58 +01:00
|
|
|
if (_path.IsEmpty()) return _T("");
|
2006-01-16 22:02:54 +01:00
|
|
|
if (_path.Left(1) == _T("?")) return _path;
|
|
|
|
wxFileName path(_path);
|
|
|
|
wxFileName refPath(reference);
|
|
|
|
path.MakeRelativeTo(refPath.GetPath());
|
|
|
|
return path.GetFullPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Extract original path from relative
|
|
|
|
wxString DecodeRelativePath(wxString _path,wxString reference) {
|
2006-02-20 22:32:58 +01:00
|
|
|
if (_path.IsEmpty()) return _T("");
|
2006-01-16 22:02:54 +01:00
|
|
|
if (_path.Left(1) == _T("?")) return _path;
|
|
|
|
wxFileName path(_path);
|
|
|
|
wxFileName refPath(reference);
|
|
|
|
if (!path.IsAbsolute()) path.MakeAbsolute(refPath.GetPath());
|
|
|
|
return path.GetFullPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////
|
|
|
|
// Pretty float
|
|
|
|
wxString PrettyFloat(wxString src) {
|
|
|
|
if (src.Contains(_T("."))) {
|
|
|
|
size_t len = src.Length();
|
|
|
|
while (src.Right(1) == _T("0")) {
|
|
|
|
len--;
|
|
|
|
src.Truncate(len);
|
|
|
|
}
|
|
|
|
if (src.Right(1) == _T(".")) {
|
|
|
|
len--;
|
|
|
|
src.Truncate(len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return src;
|
|
|
|
}
|
2006-04-04 22:41:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////
|
|
|
|
// Float to string
|
|
|
|
wxString FloatToString(double value) {
|
|
|
|
return PrettyFloat(wxString::Format(_T("%f"),value));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////
|
|
|
|
// Int to string
|
2006-04-13 08:24:36 +02:00
|
|
|
wxString IntegerToString(int value) {
|
2006-04-04 22:41:09 +02:00
|
|
|
return wxString::Format(_T("%i"),value);
|
|
|
|
}
|