Update copyright year range in all GDB files.
[deliverable/binutils-gdb.git] / gdb / source-cache.c
1 /* Cache of styled source file text
2 Copyright (C) 2018-2019 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include "defs.h"
20 #include "source-cache.h"
21 #include "common/scoped_fd.h"
22 #include "source.h"
23 #include "cli/cli-style.h"
24
25 #ifdef HAVE_SOURCE_HIGHLIGHT
26 #include <fstream>
27 #include <sstream>
28 #include <srchilite/sourcehighlight.h>
29 #include <srchilite/langmap.h>
30 #endif
31
32 /* The number of source files we'll cache. */
33
34 #define MAX_ENTRIES 5
35
36 /* See source-cache.h. */
37
38 source_cache g_source_cache;
39
40 /* See source-cache.h. */
41
42 bool
43 source_cache::get_plain_source_lines (struct symtab *s, int first_line,
44 int last_line, std::string *lines)
45 {
46 scoped_fd desc (open_source_file (s));
47 if (desc.get () < 0)
48 return false;
49
50 if (s->line_charpos == 0)
51 find_source_lines (s, desc.get ());
52
53 if (first_line < 1 || first_line > s->nlines || last_line < 1)
54 return false;
55
56 if (lseek (desc.get (), s->line_charpos[first_line - 1], SEEK_SET) < 0)
57 perror_with_name (symtab_to_filename_for_display (s));
58
59 int last_charpos;
60 if (last_line >= s->nlines)
61 {
62 struct stat st;
63
64 if (fstat (desc.get (), &st) < 0)
65 perror_with_name (symtab_to_filename_for_display (s));
66 /* We could cache this in line_charpos... */
67 last_charpos = st.st_size;
68 }
69 else
70 last_charpos = s->line_charpos[last_line];
71
72 lines->resize (last_charpos - s->line_charpos[first_line - 1]);
73 if (myread (desc.get (), &(*lines)[0], lines->size ()) < 0)
74 perror_with_name (symtab_to_filename_for_display (s));
75
76 return true;
77 }
78
79 /* See source-cache.h. */
80
81 bool
82 source_cache::extract_lines (const struct source_text &text, int first_line,
83 int last_line, std::string *lines)
84 {
85 int lineno = 1;
86 std::string::size_type pos = 0;
87 std::string::size_type first_pos = std::string::npos;
88
89 while (pos != std::string::npos && lineno <= last_line)
90 {
91 std::string::size_type new_pos = text.contents.find ('\n', pos);
92
93 if (lineno == first_line)
94 first_pos = pos;
95
96 pos = new_pos;
97 if (lineno == last_line || pos == std::string::npos)
98 {
99 if (pos == std::string::npos)
100 pos = text.contents.size ();
101 *lines = text.contents.substr (first_pos, pos - first_pos);
102 return true;
103 }
104 ++lineno;
105 ++pos;
106 }
107
108 return false;
109 }
110
111 #ifdef HAVE_SOURCE_HIGHLIGHT
112
113 /* Return the Source Highlight language name, given a gdb language
114 LANG. Returns NULL if the language is not known. */
115
116 static const char *
117 get_language_name (enum language lang)
118 {
119 switch (lang)
120 {
121 case language_c:
122 case language_objc:
123 return "c.lang";
124
125 case language_cplus:
126 return "cpp.lang";
127
128 case language_d:
129 return "d.lang";
130
131 case language_go:
132 return "go.lang";
133
134 case language_fortran:
135 return "fortran.lang";
136
137 case language_m2:
138 /* Not handled by Source Highlight. */
139 break;
140
141 case language_asm:
142 return "asm.lang";
143
144 case language_pascal:
145 return "pascal.lang";
146
147 case language_opencl:
148 /* Not handled by Source Highlight. */
149 break;
150
151 case language_rust:
152 /* Not handled by Source Highlight. */
153 break;
154
155 case language_ada:
156 return "ada.lang";
157
158 default:
159 break;
160 }
161
162 return nullptr;
163 }
164
165 #endif /* HAVE_SOURCE_HIGHLIGHT */
166
167 /* See source-cache.h. */
168
169 bool
170 source_cache::get_source_lines (struct symtab *s, int first_line,
171 int last_line, std::string *lines)
172 {
173 if (first_line < 1 || last_line < 1 || first_line > last_line)
174 return false;
175
176 #ifdef HAVE_SOURCE_HIGHLIGHT
177 if (can_emit_style_escape (gdb_stdout))
178 {
179 const char *fullname = symtab_to_fullname (s);
180
181 for (const auto &item : m_source_map)
182 {
183 if (item.fullname == fullname)
184 return extract_lines (item, first_line, last_line, lines);
185 }
186
187 const char *lang_name = get_language_name (SYMTAB_LANGUAGE (s));
188 if (lang_name != nullptr)
189 {
190 std::ifstream input (fullname);
191 if (input.is_open ())
192 {
193 srchilite::SourceHighlight highlighter ("esc.outlang");
194 highlighter.setStyleFile("esc.style");
195
196 std::ostringstream output;
197 highlighter.highlight (input, output, lang_name, fullname);
198
199 source_text result = { fullname, output.str () };
200 m_source_map.push_back (std::move (result));
201
202 if (m_source_map.size () > MAX_ENTRIES)
203 m_source_map.erase (m_source_map.begin ());
204
205 return extract_lines (m_source_map.back (), first_line,
206 last_line, lines);
207 }
208 }
209 }
210 #endif /* HAVE_SOURCE_HIGHLIGHT */
211
212 return get_plain_source_lines (s, first_line, last_line, lines);
213 }
This page took 0.050744 seconds and 5 git commands to generate.