void require_lower(
char * project,
char * target_version
)
void require_exact(
char * project,
char * target_version
)
void require(
char * project,
char * target_version
)
function is_development_version_from_project
bool is_development_version_from_project(
char * project,
char * version
)
function is_development_version
bool is_development_version(
char * version
)
char * VERSION_PATTERN = "^(\\d+)\\.(\\d+)\\.(\\d+)(?:-(\\w+))?(?:\\+(\\w+))?$";
The pattern for a version string. Normally, this works: 1.2.3-dev+buffed.
static std::map< char *, Version > Requested;
#include <any>
#include <map>
#include <string>
#include <sstream>
namespace libtextworker
{
namespace versioning
{
char* VERSION_PATTERN = "^(\\d+)\\.(\\d+)\\.(\\d+)(?:-(\\w+))?(?:\\+(\\w+))?$";
class VersioningException : public std::exception
{
protected:
std::string message;
public:
VersioningException(std::string msg) : message(msg) {}
template <class ... Args>
VersioningException(std::string firstarg, Args... args) {
std::ostringstream oss;
oss << firstarg;
(oss << ... << (" " + std::to_string(args)));
message = oss.str();
}
const std::string what() { return message; }
};
class InvalidVersion : public VersioningException
{
public:
InvalidVersion(std::string version) : VersioningException("Invalid version: " + version) {};
};
enum class VersionType
{
PRERELEASE,
POSTRELEASE,
DEVRELEASE,
RELEASE
};
class Version
{
public:
Version(char* ver, int majorIndex = 0, int minorIndex = 1, int patchIndex = 2, int tag = 3);
int major;
int minor;
int patch;
VersionType type;
bool operator ==(Version* object) {
return (this->major == object->major) && (this->minor == object->minor) && (this->patch == object->patch);
};
bool operator >(Version* object) {
return (this->major > object->major) && (this->minor > object->minor) && (this->patch > object->patch);
};
bool operator <(Version* object) {
return (this->major < object->major) && (this->minor < object->minor) && (this->patch < object->patch);
};
bool operator >=(Version* object) {
return (this > object) || (this == object);
};
bool operator <=(Version* object) {
return (this < object) || (this == object);
};
};
bool is_development_version(char* version);
bool is_development_version_from_project(char* project, char* version);
void require(char* project, char* target_version) {};
void require_exact(char* project, char* target_version) {};
void require_lower(char* project, char* target_version) {};
static std::map<char*, Version> Requested;
}
}