blob: fab49862a442bc280465029aeb0cb46050b7b1c5 [file] [log] [blame]
//===--- Distro.h - Linux distribution detection support --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_DRIVER_DISTRO_H
#define LLVM_CLANG_DRIVER_DISTRO_H
#include "clang/Basic/VirtualFileSystem.h"
namespace clang {
namespace driver {
/// Distro - Helper class for detecting and classifying Linux distributions.
///
/// This class encapsulates the clang Linux distribution detection mechanism
/// as well as helper functions that match the specific (versioned) results
/// into wider distribution classes.
class Distro {
public:
enum DistroType {
// NB: Releases of a particular Linux distro should be kept together
// in this enum, because some tests are done by integer comparison against
// the first and last known member in the family, e.g. IsRedHat().
ArchLinux,
DebianLenny,
DebianSqueeze,
DebianWheezy,
DebianJessie,
DebianStretch,
Exherbo,
RHEL5,
RHEL6,
RHEL7,
Fedora,
OpenSUSE,
UbuntuHardy,
UbuntuIntrepid,
UbuntuJaunty,
UbuntuKarmic,
UbuntuLucid,
UbuntuMaverick,
UbuntuNatty,
UbuntuOneiric,
UbuntuPrecise,
UbuntuQuantal,
UbuntuRaring,
UbuntuSaucy,
UbuntuTrusty,
UbuntuUtopic,
UbuntuVivid,
UbuntuWily,
UbuntuXenial,
UbuntuYakkety,
UbuntuZesty,
UbuntuArtful,
UnknownDistro
};
private:
/// The distribution, possibly with specific version.
DistroType DistroVal;
public:
/// @name Constructors
/// @{
/// Default constructor leaves the distribution unknown.
Distro() : DistroVal() {}
/// Constructs a Distro type for specific distribution.
Distro(DistroType D) : DistroVal(D) {}
/// Detects the distribution using specified VFS.
explicit Distro(clang::vfs::FileSystem& VFS);
bool operator==(const Distro &Other) const {
return DistroVal == Other.DistroVal;
}
bool operator!=(const Distro &Other) const {
return DistroVal != Other.DistroVal;
}
bool operator>=(const Distro &Other) const {
return DistroVal >= Other.DistroVal;
}
bool operator<=(const Distro &Other) const {
return DistroVal <= Other.DistroVal;
}
/// @}
/// @name Convenience Predicates
/// @{
bool IsRedhat() const {
return DistroVal == Fedora || (DistroVal >= RHEL5 && DistroVal <= RHEL7);
}
bool IsOpenSUSE() const {
return DistroVal == OpenSUSE;
}
bool IsDebian() const {
return DistroVal >= DebianLenny && DistroVal <= DebianStretch;
}
bool IsUbuntu() const {
return DistroVal >= UbuntuHardy && DistroVal <= UbuntuArtful;
}
/// @}
};
} // end namespace driver
} // end namespace clang
#endif