]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/lldb-mi/MICmdArgValFile.h
Vendor import of stripped lldb trunk r256633:
[FreeBSD/FreeBSD.git] / tools / lldb-mi / MICmdArgValFile.h
1 //===-- MICmdArgValFile.h ---------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #pragma once
11
12 // In-house headers:
13 #include "MICmdArgValBase.h"
14
15 // Declarations:
16 class CMICmdArgContext;
17
18 //++ ============================================================================
19 // Details: MI common code class. Command argument class. Arguments object
20 //          needing specialization derived from the CMICmdArgValBase class.
21 //          An argument knows what type of argument it is and how it is to
22 //          interpret the options (context) string to find and validate a matching
23 //          argument and so extract a value from it .
24 //          Based on the Interpreter pattern.
25 //--
26 class CMICmdArgValFile : public CMICmdArgValBaseTemplate<CMIUtilString>
27 {
28     // Methods:
29   public:
30     /* ctor */ CMICmdArgValFile();
31     /* ctor */ CMICmdArgValFile(const CMIUtilString &vrArgName, const bool vbMandatory, const bool vbHandleByCmd);
32     //
33     bool IsFilePath(const CMIUtilString &vrFileNamePath) const;
34     CMIUtilString GetFileNamePath(const CMIUtilString &vrTxt) const;
35
36     // Overridden:
37   public:
38     // From CMICmdArgValBase
39     /* dtor */ ~CMICmdArgValFile() override;
40     // From CMICmdArgSet::IArg
41     bool Validate(CMICmdArgContext &vwArgContext) override;
42
43     // Methods:
44   private:
45     bool IsValidChars(const CMIUtilString &vrText) const;
46 };