| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- * Copyright 2010-2020 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx#license-bsd-2-clause
- */
- #ifndef BX_FILEPATH_H_HEADER_GUARD
- #define BX_FILEPATH_H_HEADER_GUARD
- #include "error.h"
- #include "string.h"
- BX_ERROR_RESULT(BX_ERROR_ACCESS, BX_MAKEFOURCC('b', 'x', 0, 0) );
- BX_ERROR_RESULT(BX_ERROR_NOT_DIRECTORY, BX_MAKEFOURCC('b', 'x', 0, 1) );
- namespace bx
- {
- constexpr int32_t kMaxFilePath = 1024;
- /// Special predefined OS directories.
- ///
- struct Dir
- {
- /// Special OS directories:
- enum Enum
- {
- Current, //!< Current directory.
- Temp, //!< Temporary directory.
- Home, //!< User's home directory.
- Count
- };
- };
- /// FilePath parser and helper.
- ///
- /// /abv/gd/555/333/pod.mac
- /// ppppppppppppppppbbbeeee
- /// ^ ^ ^
- /// +-path base-+ +-ext
- /// ^^^^^^^
- /// +-filename
- ///
- class FilePath
- {
- public:
- /// Default constructor, creates empty file path.
- ///
- FilePath();
- /// Construct file path from special OS directory.
- ///
- FilePath(Dir::Enum _dir);
- /// Construct file path from C string.
- ///
- FilePath(const char* _str);
- /// Construct file path from string.
- ///
- FilePath(const StringView& _str);
- /// Assign file path from string.
- ///
- FilePath& operator=(const StringView& _rhs);
- /// Clear file path.
- ///
- void clear();
- /// Set file path from special OS directory.
- ///
- void set(Dir::Enum _dir);
- /// Set file path.
- ///
- void set(const StringView& _str);
- /// Join directory to file path.
- ///
- void join(const StringView& _str);
- /// Implicitly converts FilePath to StringView.
- ///
- operator StringView() const;
- /// Returns zero-terminated C string pointer to file path.
- ///
- const char* getCPtr() const;
- /// If path is `/abv/gd/555/333/pod.mac` returns `/abv/gd/555/333/`.
- ///
- StringView getPath() const;
- /// If path is `/abv/gd/555/333/pod.mac` returns `pod.mac`.
- ///
- StringView getFileName() const;
- /// If path is `/abv/gd/555/333/pod.mac` returns `pod`.
- ///
- StringView getBaseName() const;
- /// If path is `/abv/gd/555/333/pod.mac` returns `.mac`.
- ///
- StringView getExt() const;
- /// Returns true if file path is absolute.
- ///
- bool isAbsolute() const;
- /// Returns true if file path is empty.
- ///
- bool isEmpty() const;
- private:
- char m_filePath[kMaxFilePath];
- };
- } // namespace bx
- #endif // BX_FILEPATH_H_HEADER_GUARD
|