mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
51b5f00f5c
CiderPress and MDC now compile, and execute far enough to open their respective "about" boxes, but I doubt they'll do much more than that. * Switch from MBCS to UNICODE APIs Microsoft switched to UTF-16 (by way of UCS-2) a long time ago, and the support for MBCS seems to be getting phased out. So it's time to switch to wide strings. This is a bit awkward for CiderPress because it works with disk and file archives with 8-bit filenames, and I want NufxLib and DiskImgLib to continue to work on Linux (which has largely taken the UTF-8 approach to Unicode). The libraries will continue to work with 8-bit filenames, with CiderPress/MDC doing the conversion at the appropriate point. There were a couple of places where strings from a structure handed back by one of the libraries were used directly in the UI, or vice-versa, which is a problem because we have nowhere to store the result of the conversion. These currently have fixed place-holder "xyzzy" strings. All UI strings are now wide. Various format strings now use "%ls" and "%hs" to explicitly specify wide and narrow. This doesn't play well with gcc, so only the Windows-specific parts use those. * Various updates to vcxproj files The project-file conversion had some cruft that is now largely gone. The build now has a common output directory for the EXEs and libraries, avoiding the old post-build copy steps. * Added zlib 1.2.8 and nufxlib 2.2.2 source snapshots The old "prebuilts" directory is now gone. The libraries are now built as part of building the apps. I added a minimal set of files for zlib, and a full set for nufxlib. The Linux-specific nufxlib goodies are included for the benefit of the Linux utilities, which are currently broken (don't build). * Replace symbols used for include guards Symbols with a leading "__" are reserved.
127 lines
3.9 KiB
C++
127 lines
3.9 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Filename manipulations. Includes some basic file ops (e.g. tests for
|
|
* file existence) as well.
|
|
*/
|
|
#ifndef UTIL_PATHNAME_H
|
|
#define UTIL_PATHNAME_H
|
|
|
|
/*
|
|
* Holds a full or partial pathname, manipulating it in various ways.
|
|
*
|
|
* This creates some hefty buffers for _splitpath() to use, so don't use
|
|
* these as storage within other objects.
|
|
*
|
|
* Functions that return CStrings should have their values assigned into
|
|
* CString variables. Attempting to set a "const char*" to them can cause
|
|
* problems as the CString being returned is in local storage.
|
|
*/
|
|
class PathName {
|
|
public:
|
|
PathName(const WCHAR* pathName = L"", WCHAR fssep = '\\') {
|
|
ASSERT(fssep == '\\'); // not handling other cases yet
|
|
fPathName = pathName;
|
|
fFssep = fssep;
|
|
fSplit = false;
|
|
}
|
|
PathName(const CString& pathName, WCHAR fssep = '\\') {
|
|
ASSERT(fssep == '\\'); // not handling other cases yet
|
|
fPathName = pathName;
|
|
fFssep = fssep;
|
|
fSplit = false;
|
|
}
|
|
~PathName(void) {}
|
|
|
|
/*
|
|
* Name manipulations.
|
|
*/
|
|
void SetPathName(const WCHAR* pathName, WCHAR fssep = '\\') {
|
|
ASSERT(fssep == '\\'); // not handling other cases yet
|
|
fPathName = pathName;
|
|
fFssep = fssep;
|
|
fSplit = false;
|
|
}
|
|
void SetPathName(const CString& pathName, WCHAR fssep = '\\') {
|
|
ASSERT(fssep == '\\'); // not handling other cases yet
|
|
fPathName = pathName;
|
|
fFssep = fssep;
|
|
fSplit = false;
|
|
}
|
|
|
|
// get the full pathname we have stored
|
|
CString GetPathName(void) const { return fPathName; }
|
|
|
|
// create a pathname from a "foreign" OS name
|
|
int ConvertFrom(const char* foreignName, char foreignFssep);
|
|
|
|
// return just the filename: "C:\foo\bar.txt" -> "bar.txt"
|
|
CString GetFileName(void);
|
|
|
|
// return just the extension: C:\foo\bar.txt --> ".txt"
|
|
CString GetExtension(void);
|
|
|
|
// return just the drive component: "C:\foo\bar.txt" --> "C:"
|
|
CString GetDriveOnly(void);
|
|
|
|
// return drive and path component: "C:\foo\bar.txt" -> "C:\foo\"
|
|
// (assumes trailing paths end in '\')
|
|
CString GetDriveAndPath(void);
|
|
CString GetPathOnly(void);
|
|
|
|
// try to normalize a short name into a long name
|
|
int SFNToLFN(void);
|
|
|
|
/*
|
|
* File manipulations.
|
|
*/
|
|
// returns the description of the file type (as seen in explorer)
|
|
CString GetDescription(void);
|
|
|
|
// determine whether or not the file exists
|
|
bool Exists(void);
|
|
|
|
// check the status of a file
|
|
int CheckFileStatus(struct _stat* psb, bool* pExists, bool* pIsReadable,
|
|
bool* pIsDir);
|
|
|
|
// get the modification date
|
|
time_t GetModWhen(void);
|
|
// set the modification date
|
|
int SetModWhen(time_t when);
|
|
|
|
// create the path, if necessary
|
|
int CreatePathIFN(void);
|
|
|
|
static const WCHAR* FindExtension(const WCHAR* pathname, WCHAR fssep);
|
|
static const WCHAR* FilenameOnly(const WCHAR* pathname, WCHAR fssep);
|
|
//int SFNToLFN(const char* sfn, CString* pLfn);
|
|
|
|
private:
|
|
void SplitIFN(void) {
|
|
if (!fSplit) {
|
|
_wsplitpath(fPathName, fDrive, fDir, fFileName, fExt);
|
|
fSplit = true;
|
|
}
|
|
}
|
|
int Mkdir(const WCHAR* dir);
|
|
int GetFileInfo(const WCHAR* pathname, struct _stat* psb, time_t* pModWhen,
|
|
bool* pExists, bool* pIsReadable, bool* pIsDirectory);
|
|
int CreateSubdirIFN(const WCHAR* pathStart, const WCHAR* pathEnd,
|
|
WCHAR fssep);
|
|
|
|
CString fPathName;
|
|
WCHAR fFssep;
|
|
bool fSplit;
|
|
|
|
WCHAR fDrive[_MAX_DRIVE]; // 3
|
|
WCHAR fDir[_MAX_DIR]; // 256
|
|
WCHAR fFileName[_MAX_FNAME]; // 256
|
|
WCHAR fExt[_MAX_EXT]; // 256
|
|
};
|
|
|
|
#endif /*UTIL_PATHNAME_H*/
|