2015-05-15 17:46:28 +08:00
|
|
|
//===-- MICmdArgValPrintValues.h --------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// In-house headers:
|
|
|
|
#include "MICmdArgValBase.h"
|
|
|
|
|
|
|
|
// Declarations:
|
|
|
|
class CMICmdArgContext;
|
|
|
|
|
|
|
|
//++ ============================================================================
|
|
|
|
// Details: MI common code class. Command argument class. Arguments object
|
|
|
|
// needing specialization derived from the CMICmdArgValBase class.
|
|
|
|
// An argument knows what type of argument it is and how it is to
|
|
|
|
// interpret the options (context) string to find and validate a matching
|
|
|
|
// argument and so extract a value from it. The print-values looks like:
|
|
|
|
// 0 or --no-values
|
|
|
|
// 1 or --all-values
|
|
|
|
// 2 or --simple-values
|
|
|
|
// Based on the Interpreter pattern.
|
|
|
|
//--
|
|
|
|
class CMICmdArgValPrintValues : public CMICmdArgValBaseTemplate<MIuint>
|
|
|
|
{
|
|
|
|
// Methods:
|
|
|
|
public:
|
2015-08-04 18:24:20 +08:00
|
|
|
/* ctor */ CMICmdArgValPrintValues();
|
2015-05-15 17:46:28 +08:00
|
|
|
/* ctor */ CMICmdArgValPrintValues(const CMIUtilString &vrArgName, const bool vbMandatory, const bool vbHandleByCmd);
|
|
|
|
//
|
|
|
|
bool IsArgPrintValues(const CMIUtilString &vrTxt) const;
|
|
|
|
|
|
|
|
// Overridden:
|
|
|
|
public:
|
|
|
|
// From CMICmdArgValBase
|
2015-08-04 18:24:20 +08:00
|
|
|
/* dtor */ ~CMICmdArgValPrintValues() override;
|
2015-05-15 17:46:28 +08:00
|
|
|
// From CMICmdArgSet::IArg
|
2015-07-06 23:48:55 +08:00
|
|
|
bool Validate(CMICmdArgContext &vArgContext) override;
|
2015-05-15 17:46:28 +08:00
|
|
|
|
|
|
|
// Methods:
|
|
|
|
private:
|
|
|
|
bool ExtractPrintValues(const CMIUtilString &vrTxt);
|
2015-08-04 18:24:20 +08:00
|
|
|
MIuint GetPrintValues() const;
|
2015-05-15 17:46:28 +08:00
|
|
|
|
|
|
|
// Attributes:
|
|
|
|
private:
|
|
|
|
MIuint m_nPrintValues;
|
|
|
|
};
|