]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
Update LLDB snapshot to upstream r225923 (git 2b588ecd)
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / tools / lldb-mi / MICmnMIValueConst.h
1 //===-- MICmnMIValueConst.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 //++
11 // File:        MICmnMIValueConst.h
12 //
13 // Overview:    CMICmnMIValueConst interface.
14 //
15 // Environment: Compilers:  Visual C++ 12.
16 //                          gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
17 //              Libraries:  See MIReadmetxt.
18 //
19 // Copyright:   None.
20 //--
21
22 #pragma once
23
24 // In-house headers:
25 #include "MICmnMIValue.h"
26
27 //++ ============================================================================
28 // Details: MI common code MI Result class. Part of the CMICmnMIValueConstRecord
29 //          set of objects.
30 //          The syntax is as follows:
31 //          result-record ==>  [ token ] "^" result-class ( "," result )* nl
32 //          token = any sequence of digits
33 //          * = 0 to many
34 //          nl = CR | CR_LF
35 //          result-class ==> "done" | "running" | "connected" | "error" | "exit"
36 //          result ==> variable "=" value
37 //          value ==> const | tuple | list
38 //          const ==> c-string (7 bit iso c string content)
39 //          tuple ==>  "{}" | "{" result ( "," result )* "}"
40 //          list ==>  "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]"
41 //          More information see:
42 //          http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html
43 //
44 //          The text formed in *this Result class is stripped of any '\n' characters.
45 //
46 // Gotchas: None.
47 // Authors: Illya Rudkin 24/02/2014.
48 // Changes: None.
49 //--
50 class CMICmnMIValueConst : public CMICmnMIValue
51 {
52     // Methods:
53   public:
54     /* ctor */ CMICmnMIValueConst(const CMIUtilString &vString);
55     /* ctor */ CMICmnMIValueConst(const CMIUtilString &vString, const bool vbNoQuotes);
56
57     // Overridden:
58   public:
59     // From CMICmnBase
60     /* dtor */ virtual ~CMICmnMIValueConst(void);
61
62     // Methods:
63   private:
64     bool BuildConst(void);
65
66     // Attributes:
67   private:
68     static const CMIUtilString ms_constStrDblQuote;
69     //
70     CMIUtilString m_strPartConst;
71     bool m_bNoQuotes; // True = return string not surrounded with quotes, false = use quotes
72 };