2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-07-03 00:49:40 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
2009-07-03 00:49:40 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-07-03 00:49:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-10-01 00:13:22 +00:00
|
|
|
#include <cinttypes>
|
2009-07-03 00:49:40 +00:00
|
|
|
#include <wx/tokenzr.h>
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/Dependencies.h"
|
|
|
|
#include "common/SafeArray.h"
|
2021-11-14 01:21:17 +00:00
|
|
|
#include "common/AlignedMalloc.h"
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2015-06-13 20:33:18 +00:00
|
|
|
#if _WIN32
|
2016-11-12 15:28:37 +00:00
|
|
|
#define WX_STR(str) (str.wc_str())
|
2015-06-13 20:33:18 +00:00
|
|
|
#else
|
2014-06-29 07:05:03 +00:00
|
|
|
// Stupid wx3.0 doesn't support c_str for vararg function
|
2021-09-06 18:28:26 +00:00
|
|
|
#define WX_STR(str) (static_cast<const char*>(str.c_str()))
|
2015-06-13 20:33:18 +00:00
|
|
|
#endif
|
2010-06-10 11:27:30 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern void px_fputs(FILE* fp, const char* src);
|
Lots of new code maintenance stuffs:
* Completely new assertion macros: pxAssert, pxAssertMsg, and pxFail, pxAssertDev (both which default to using a message). These replace *all* wxASSERT, DevAssert, and jASSUME varieties of macros. New macros borrow the best of all assertion worlds: MSVCRT, wxASSERT, and AtlAssume. :)
* Rewrote the Console namespace as a structure called IConsoleWriter, and created several varieties of ConsoleWriters for handling different states of log and console availability (should help reduce overhead of console logging nicely).
* More improvements to the PersistentThread model, using safely interlocked "Do*" style callbacks for starting and cleaning up threads.
* Fixed console logs so that they're readable in Win32 notepad again (the log writer adds CRs to naked LFs).
* Added AppInit.cpp -- contains constructor, destructor, OnInit, and command line parsing mess.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1950 96395faa-99c1-11dd-bbfe-3dabce05a288
2009-10-04 08:27:27 +00:00
|
|
|
|
2009-07-03 00:49:40 +00:00
|
|
|
// wxWidgets lacks one of its own...
|
|
|
|
extern const wxRect wxDefaultRect;
|
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern void SplitString(wxArrayString& dest, const wxString& src, const wxString& delims, wxStringTokenizerMode mode = wxTOKEN_RET_EMPTY_ALL);
|
|
|
|
extern wxString JoinString(const wxArrayString& src, const wxString& separator);
|
|
|
|
extern wxString JoinString(const wxChar** src, const wxString& separator);
|
2009-09-16 17:23:02 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern wxString ToString(const wxPoint& src, const wxString& separator = L",");
|
|
|
|
extern wxString ToString(const wxSize& src, const wxString& separator = L",");
|
|
|
|
extern wxString ToString(const wxRect& src, const wxString& separator = L",");
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern bool TryParse(wxPoint& dest, const wxStringTokenizer& parts);
|
|
|
|
extern bool TryParse(wxSize& dest, const wxStringTokenizer& parts);
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern bool TryParse(wxPoint& dest, const wxString& src, const wxPoint& defval = wxDefaultPosition, const wxString& separators = L",");
|
|
|
|
extern bool TryParse(wxSize& dest, const wxString& src, const wxSize& defval = wxDefaultSize, const wxString& separators = L",");
|
|
|
|
extern bool TryParse(wxRect& dest, const wxString& src, const wxRect& defval = wxDefaultRect, const wxString& separators = L",");
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2009-11-08 17:18:34 +00:00
|
|
|
|
2010-10-04 17:12:28 +00:00
|
|
|
// ======================================================================================
|
|
|
|
// FastFormatAscii / FastFormatUnicode (overview!)
|
|
|
|
// ======================================================================================
|
|
|
|
// Fast formatting of ASCII or Unicode text. These classes uses a series of thread-local
|
|
|
|
// format buffers that are allocated only once and grown to accommodate string formatting
|
|
|
|
// needs. Because the buffers are thread-local, no thread synch objects are required in
|
|
|
|
// order to format strings, allowing for multi-threaded string formatting operations to be
|
|
|
|
// performed with maximum efficiency. This class also reduces the overhead typically required
|
|
|
|
// to allocate string buffers off the heap.
|
|
|
|
//
|
|
|
|
// Drawbacks:
|
|
|
|
// * Some overhead is added to the creation and destruction of threads, however since thread
|
|
|
|
// construction is a typically slow process, and often avoided to begin with, this should
|
|
|
|
// be a sound trade-off.
|
|
|
|
//
|
|
|
|
// Notes:
|
|
|
|
// * conversion to wxString requires a heap allocation.
|
|
|
|
// * FastFormatUnicode can accept either UTF8 or UTF16/32 (wchar_t) input, but FastFormatAscii
|
|
|
|
// accepts Ascii/UTF8 only.
|
|
|
|
//
|
|
|
|
|
2021-11-14 01:21:17 +00:00
|
|
|
typedef AlignedBuffer<char, 16> CharBufferType;
|
2010-08-03 22:18:19 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
2016-11-12 15:28:37 +00:00
|
|
|
// FastFormatAscii
|
2010-08-03 22:18:19 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
2010-10-04 17:12:28 +00:00
|
|
|
|
2010-08-03 22:18:19 +00:00
|
|
|
class FastFormatAscii
|
|
|
|
{
|
|
|
|
protected:
|
2021-09-06 18:28:26 +00:00
|
|
|
CharBufferType m_dest;
|
2016-06-29 12:13:51 +00:00
|
|
|
|
2010-08-03 22:18:19 +00:00
|
|
|
public:
|
2021-09-06 18:28:26 +00:00
|
|
|
FastFormatAscii();
|
|
|
|
~FastFormatAscii() = default;
|
|
|
|
FastFormatAscii& Write(const char* fmt, ...);
|
|
|
|
FastFormatAscii& WriteV(const char* fmt, va_list argptr);
|
|
|
|
|
|
|
|
void Clear();
|
|
|
|
bool IsEmpty() const;
|
|
|
|
|
|
|
|
const char* c_str() const { return m_dest.GetPtr(); }
|
|
|
|
operator const char*() const { return m_dest.GetPtr(); }
|
|
|
|
|
|
|
|
const wxString GetString() const;
|
|
|
|
//operator wxString() const;
|
|
|
|
|
|
|
|
FastFormatAscii& operator+=(const wxString& s)
|
|
|
|
{
|
|
|
|
Write("%s", WX_STR(s));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
FastFormatAscii& operator+=(const wxChar* psz)
|
|
|
|
{
|
|
|
|
Write("%ls", psz);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
FastFormatAscii& operator+=(const char* psz)
|
|
|
|
{
|
|
|
|
Write("%s", psz);
|
|
|
|
return *this;
|
|
|
|
}
|
2010-08-03 22:18:19 +00:00
|
|
|
};
|
|
|
|
|
2010-10-04 17:12:28 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// FastFormatUnicode
|
|
|
|
// --------------------------------------------------------------------------------------
|
2010-08-03 22:18:19 +00:00
|
|
|
class FastFormatUnicode
|
|
|
|
{
|
|
|
|
protected:
|
2021-09-06 18:28:26 +00:00
|
|
|
CharBufferType m_dest;
|
|
|
|
uint m_Length;
|
2010-08-03 22:18:19 +00:00
|
|
|
|
|
|
|
public:
|
2021-09-06 18:28:26 +00:00
|
|
|
FastFormatUnicode();
|
|
|
|
~FastFormatUnicode() = default;
|
|
|
|
|
|
|
|
FastFormatUnicode& Write(const char* fmt, ...);
|
|
|
|
FastFormatUnicode& Write(const wxChar* fmt, ...);
|
|
|
|
FastFormatUnicode& Write(const wxString fmt, ...);
|
|
|
|
FastFormatUnicode& WriteV(const char* fmt, va_list argptr);
|
|
|
|
FastFormatUnicode& WriteV(const wxChar* fmt, va_list argptr);
|
|
|
|
|
|
|
|
void Clear();
|
|
|
|
bool IsEmpty() const;
|
|
|
|
uint Length() const { return m_Length; }
|
|
|
|
|
|
|
|
FastFormatUnicode& ToUpper();
|
|
|
|
FastFormatUnicode& ToLower();
|
|
|
|
|
|
|
|
const wxChar* c_str() const { return (const wxChar*)m_dest.GetPtr(); }
|
|
|
|
operator const wxChar*() const { return (const wxChar*)m_dest.GetPtr(); }
|
|
|
|
operator wxString() const { return (const wxChar*)m_dest.GetPtr(); }
|
|
|
|
|
|
|
|
FastFormatUnicode& operator+=(const wxString& s)
|
|
|
|
{
|
|
|
|
Write(L"%s", WX_STR(s));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
FastFormatUnicode& operator+=(const wxChar* psz)
|
|
|
|
{
|
|
|
|
Write(L"%s", psz);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
FastFormatUnicode& operator+=(const char* psz);
|
2010-08-03 22:18:19 +00:00
|
|
|
};
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
#define pxsFmt FastFormatUnicode().Write
|
|
|
|
#define pxsFmtV FastFormatUnicode().WriteV
|
2021-10-01 00:13:22 +00:00
|
|
|
#define pxsPtr(ptr) pxsFmt("0x%016" PRIXPTR, (ptr)).c_str()
|
2010-11-17 05:49:11 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
extern wxString& operator+=(wxString& str1, const FastFormatUnicode& str2);
|
|
|
|
extern wxString operator+(const wxString& str1, const FastFormatUnicode& str2);
|
|
|
|
extern wxString operator+(const wxChar* str1, const FastFormatUnicode& str2);
|
|
|
|
extern wxString operator+(const FastFormatUnicode& str1, const wxString& str2);
|
|
|
|
extern wxString operator+(const FastFormatUnicode& str1, const wxChar* str2);
|