13#ifndef ARCANE_UTILS_FLEXLMTOOLS_H_
14#define ARCANE_UTILS_FLEXLMTOOLS_H_
19#include "arcane/ArcaneVersion.h"
20#include "arcane/utils/String.h"
21#include "arcane/utils/Exception.h"
33class IParallelSuperMng;
40class ARCANE_IMPL_EXPORT LicenseErrorException
49 ~LicenseErrorException() ARCANE_NOEXCEPT {}
53 virtual void explain(std::ostream& m)
const;
54 virtual void write(std::ostream& o)
const;
97 void setCheckInterval(
const Integer t = 120);
103 bool checkLicense(
const String name,
const Real version,
bool do_fatal =
true)
const;
114 void releaseLicense(
const String name,
Integer nb_licenses = 0);
118 void releaseAllLicenses();
125 typedef std::map<String, Integer> FeatureMapType;
126 FeatureMapType m_features;
136template <
typename FeatureModel>
151 bool checkLicense(
typename FeatureModel::eFeature feature,
const bool do_fatal)
const
153 const String name = FeatureModel::getName(feature);
154 const Real version = FeatureModel::getVersion(feature);
161 bool checkLicense(
typename FeatureModel::eFeature feature,
const Real version,
const bool do_fatal)
const
163 const String name = FeatureModel::getName(feature);
171 const String name = FeatureModel::getName(feature);
172 const Real version = FeatureModel::getVersion(feature);
180 const String name = FeatureModel::getName(feature);
187 const String name = FeatureModel::getName(feature);
188 const Real version = FeatureModel::getVersion(feature);
202#ifndef ARCANE_TEST_RLM
209 static String getName(eFeature feature)
211 return m_arcane_feature_name[feature];
214 static Real getVersion(eFeature feature)
216 ARCANE_UNUSED(feature);
218 return (
Real)ARCANE_VERSION_MAJOR + (
Real)ARCANE_VERSION_MINOR / 100 + (
Real)ARCANE_VERSION_RELEASE / 1000 + (
Real)ARCANE_VERSION_BETA / 10000;
223 static const String m_arcane_feature_name[];
virtual void explain(std::ostream &o) const
Explique la cause de l'exception dans le flot o.
const String & where() const
Localisation de l'exception.
const String & message() const
Message de l'exception.
Exception(const String &name, const String &where)
virtual ~FlexLMMng()
Destructeur.
static FlexLMMng * instance()
Accès au singleton.
bool m_is_master
Cet host est il le maître des contrôles ?
Classe abstraite du superviseur de parallélisme.
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.
double Real
Type représentant un réel.