123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- #pragma once
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wunused-parameter"
- #endif
- //===--- Distro.h - Linux distribution detection support --------*- C++ -*-===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- #ifndef LLVM_CLANG_DRIVER_DISTRO_H
- #define LLVM_CLANG_DRIVER_DISTRO_H
- #include "llvm/ADT/Triple.h"
- #include "llvm/Support/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 {
- // Special value means that no detection was performed yet.
- UninitializedDistro,
- // 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().
- AlpineLinux,
- ArchLinux,
- DebianLenny,
- DebianSqueeze,
- DebianWheezy,
- DebianJessie,
- DebianStretch,
- DebianBuster,
- DebianBullseye,
- DebianBookworm,
- DebianTrixie,
- Exherbo,
- RHEL5,
- RHEL6,
- RHEL7,
- Fedora,
- Gentoo,
- OpenSUSE,
- UbuntuHardy,
- UbuntuIntrepid,
- UbuntuJaunty,
- UbuntuKarmic,
- UbuntuLucid,
- UbuntuMaverick,
- UbuntuNatty,
- UbuntuOneiric,
- UbuntuPrecise,
- UbuntuQuantal,
- UbuntuRaring,
- UbuntuSaucy,
- UbuntuTrusty,
- UbuntuUtopic,
- UbuntuVivid,
- UbuntuWily,
- UbuntuXenial,
- UbuntuYakkety,
- UbuntuZesty,
- UbuntuArtful,
- UbuntuBionic,
- UbuntuCosmic,
- UbuntuDisco,
- UbuntuEoan,
- UbuntuFocal,
- UbuntuGroovy,
- UbuntuHirsute,
- UbuntuImpish,
- UbuntuJammy,
- UbuntuKinetic,
- UbuntuLunar,
- 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(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost);
- 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 <= DebianTrixie;
- }
- bool IsUbuntu() const {
- return DistroVal >= UbuntuHardy && DistroVal <= UbuntuLunar;
- }
- bool IsAlpineLinux() const { return DistroVal == AlpineLinux; }
- bool IsGentoo() const { return DistroVal == Gentoo; }
- /// @}
- };
- } // end namespace driver
- } // end namespace clang
- #endif
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif
|