Deepak Panickal | 6f9c468 | 2014-05-16 10:51:01 +0000 | [diff] [blame] | 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 | |
Deepak Panickal | 6f9c468 | 2014-05-16 10:51:01 +0000 | [diff] [blame] | 10 | #pragma once |
| 11 | |
| 12 | // In-house headers: |
| 13 | #include "MICmdArgValBase.h" |
| 14 | |
| 15 | // Declarations: |
| 16 | class CMICmdArgContext; |
| 17 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 18 | //++ |
| 19 | //============================================================================ |
Zachary Turner | 1d6af02 | 2014-11-17 18:06:21 +0000 | [diff] [blame] | 20 | // Details: MI common code class. Command argument class. Arguments object |
| 21 | // needing specialization derived from the CMICmdArgValBase class. |
| 22 | // An argument knows what type of argument it is and how it is to |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 23 | // interpret the options (context) string to find and validate a |
| 24 | // matching |
Zachary Turner | 1d6af02 | 2014-11-17 18:06:21 +0000 | [diff] [blame] | 25 | // argument and so extract a value from it . |
| 26 | // Based on the Interpreter pattern. |
Deepak Panickal | 6f9c468 | 2014-05-16 10:51:01 +0000 | [diff] [blame] | 27 | //-- |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 28 | class CMICmdArgValFile : public CMICmdArgValBaseTemplate<CMIUtilString> { |
| 29 | // Methods: |
| 30 | public: |
| 31 | /* ctor */ CMICmdArgValFile(); |
| 32 | /* ctor */ CMICmdArgValFile(const CMIUtilString &vrArgName, |
| 33 | const bool vbMandatory, const bool vbHandleByCmd); |
| 34 | // |
| 35 | bool IsFilePath(const CMIUtilString &vrFileNamePath) const; |
| 36 | CMIUtilString GetFileNamePath(const CMIUtilString &vrTxt) const; |
Deepak Panickal | 6f9c468 | 2014-05-16 10:51:01 +0000 | [diff] [blame] | 37 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 38 | // Overridden: |
| 39 | public: |
| 40 | // From CMICmdArgValBase |
| 41 | /* dtor */ ~CMICmdArgValFile() override; |
| 42 | // From CMICmdArgSet::IArg |
| 43 | bool Validate(CMICmdArgContext &vwArgContext) override; |
Deepak Panickal | d249928 | 2014-08-08 16:47:42 +0000 | [diff] [blame] | 44 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 45 | // Methods: |
| 46 | private: |
| 47 | bool IsValidChars(const CMIUtilString &vrText) const; |
Deepak Panickal | 6f9c468 | 2014-05-16 10:51:01 +0000 | [diff] [blame] | 48 | }; |