[gdb/cli] Keep track of styling failures in source_cache
authorTom de Vries <tdevries@suse.de>
Tue, 17 Oct 2023 09:38:06 +0000 (11:38 +0200)
committerTom de Vries <tdevries@suse.de>
Tue, 17 Oct 2023 09:38:06 +0000 (11:38 +0200)
In source_cache::ensure, keep track of which files failed to be styled, and
don't attempt to style them again in case the file dropped out of the cache.

Tested on x86_64-linux.

Reviewed-By: Lancelot Six <lancelot.six@amd.com>
gdb/source-cache.c
gdb/source-cache.h

index a6b035b513cad29c960042ca8bbbd2a5f90e55f2..99be33348031ae9f9dd044d50a56e5c2ddd43d7d 100644 (file)
@@ -281,7 +281,8 @@ source_cache::ensure (struct symtab *s)
       return false;
     }
 
-  if (source_styling && gdb_stdout->can_emit_style_escape ())
+  if (source_styling && gdb_stdout->can_emit_style_escape ()
+      && m_no_styling_files.count (fullname) == 0)
     {
       bool already_styled
        = try_source_highlight (contents, s->language (), fullname);
@@ -291,7 +292,26 @@ source_cache::ensure (struct symtab *s)
          gdb::optional<std::string> ext_contents;
          ext_contents = ext_lang_colorize (fullname, contents);
          if (ext_contents.has_value ())
-           contents = std::move (*ext_contents);
+           {
+             contents = std::move (*ext_contents);
+             already_styled = true;
+           }
+       }
+
+      if (!already_styled)
+       {
+         /* Styling failed.  Styling can fail for instance for these
+            reasons:
+            - the language is not supported.
+            - the language cannot not be auto-detected from the file name.
+            - no stylers available.
+
+            Since styling failed, don't try styling the file again after it
+            drops from the cache.
+
+            Note that clearing the source cache also clears
+            m_no_styling_files.  */
+         m_no_styling_files.insert (fullname);
        }
     }
 
index bec6598ff9ff940598dcc8ac1d6d1d8ec0645f53..f1d30b43ce00f7687eeaa6326d4e392bcde4e3ce 100644 (file)
@@ -66,6 +66,7 @@ public:
   {
     m_source_map.clear ();
     m_offset_cache.clear ();
+    m_no_styling_files.clear ();
   }
 
 private:
@@ -95,6 +96,9 @@ private:
   /* The file offset cache.  The key is the full name of the source
      file.  */
   std::unordered_map<std::string, std::vector<off_t>> m_offset_cache;
+
+  /* The list of files where styling failed.  */
+  std::unordered_set<std::string> m_no_styling_files;
 };
 
 /* The global source cache.  */