texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Gavin D. Smith
Date: Sun, 20 Mar 2022 04:55:18 -0400 (EDT)

branch: master
commit 7fc1814c46fc019adadf573b90770ce4e0f89b19
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Wed Oct 16 15:03:22 2019 +0100

    indicate debugging output from subthread
---
 js/wkinfo/extension.c | 86 ++++++++++++++++++++++++++++++++-------------------
 js/wkinfo/main.c      | 26 ++++++++++------
 2 files changed, 70 insertions(+), 42 deletions(-)

diff --git a/js/wkinfo/extension.c b/js/wkinfo/extension.c
index 3301aea485..77cfd33898 100644
--- a/js/wkinfo/extension.c
+++ b/js/wkinfo/extension.c
@@ -15,6 +15,28 @@
 #include "common.h"
 #include "infopath.h"
 
+void
+vmsg (char *fmt, va_list v)
+{
+  vprintf (fmt, v);
+}
+
+int debug_level = 1;
+
+void
+debug (int level, char *fmt, ...)
+{
+  if (level > debug_level)
+    return;
+
+  va_list v;
+  va_start (v, fmt);
+
+  printf ("SUBTHREAD: ");
+  vmsg (fmt, v);
+  va_end (v);
+}
+
 /* For communicating with the main Gtk process */
 static struct sockaddr_un main_name;
 static size_t main_name_size;
@@ -37,10 +59,10 @@ send_datagram (GString *s)
 {
   ssize_t result;
 
-  g_print ("send datagram %s", s->str);
+  //debug (2, "send datagram %s", s->str);
   if (s->len > PACKET_SIZE)
     {
-      g_print ("datagram too big");
+      debug (0, "datagram too big");
       return;
     }
 
@@ -49,7 +71,7 @@ send_datagram (GString *s)
 
   if (result == -1)
     {
-      g_print ("sending datagram failed: %s\n",
+      debug (0, "sending datagram failed: %s\n",
                strerror(errno));
     }
 }
@@ -63,7 +85,7 @@ load_manual (char *manual)
 {
   free (current_manual_dir);
   current_manual_dir = locate_manual (manual);
-  g_print ("NEW MANUAL AT %s\n", current_manual_dir);
+  debug (1, "NEW MANUAL AT %s\n", current_manual_dir);
 
   if (!current_manual_dir)
     {
@@ -80,8 +102,6 @@ load_manual (char *manual)
   g_string_append (s1, current_manual_dir);
   g_string_append (s1, "\n");
 
-  g_print ("SENDING %s\n", s1->str);
-
   send_datagram (s1);
 
   g_string_free (s1, TRUE);
@@ -97,7 +117,7 @@ request_callback (WebKitWebPage     *web_page,
 {
   const char *uri = webkit_uri_request_get_uri (request);
 
-  g_print ("Intercepting link <%s>\n", uri);
+  debug (1, "Intercepting link <%s>\n", uri);
 
   /* Clear flags on WebKitWebPage object. */
   g_object_set_data (G_OBJECT(web_page), "top-node",
@@ -111,11 +131,11 @@ request_callback (WebKitWebPage     *web_page,
       char *new_uri = strdup (uri);
       new_uri[p - uri] = 0;
       webkit_uri_request_set_uri (request, new_uri);
-      g_print ("new_uri %s\n", new_uri);
+      debug (1, "new_uri %s\n", new_uri);
       free (new_uri);
 
       p++;
-      g_print ("request type %s\n", p);
+      debug (1, "request type %s\n", p);
       if (!strcmp (p, "send-index"))
         {
           g_object_set_data (G_OBJECT(web_page), "send-index",
@@ -138,7 +158,7 @@ request_callback (WebKitWebPage     *web_page,
          "../MANUAL/NODE.html" but by the time this function is called
          they are absolute paths beginning "file:/". */
       parse_external_url (uri, &manual, &node);
-      g_print ("finding manual and node %s:%s\n", manual, node);
+      debug (1, "finding manual and node %s:%s\n", manual, node);
 
       if (!current_manual || strcmp(manual, current_manual) != 0)
         {
@@ -155,7 +175,7 @@ request_callback (WebKitWebPage     *web_page,
 void
 find_indices (WebKitDOMHTMLCollection *links, gulong num_links)
 {
-  g_print ("looking for indices\n");
+  debug (1, "looking for indices\n");
 
   gulong i = 0;
   GString *s = g_string_new (NULL);
@@ -168,7 +188,7 @@ find_indices (WebKitDOMHTMLCollection *links, gulong 
num_links)
         = webkit_dom_html_collection_item (links, i);
       if (!node)
         {
-          g_print ("No node\n");
+          debug (1, "No node\n");
           return;
         }
 
@@ -180,7 +200,7 @@ find_indices (WebKitDOMHTMLCollection *links, gulong 
num_links)
       else
         {
           /* When would this happen? */
-          g_print ("Not an DOM element\n");
+          debug (1, "Not an DOM element\n");
           continue;
         }
 
@@ -190,11 +210,14 @@ find_indices (WebKitDOMHTMLCollection *links, gulong 
num_links)
       char *rel = webkit_dom_element_get_attribute (element, "rel");
       char *id = webkit_dom_element_get_attribute (element, "id");
 
-      /* Look for links to index nodes in the main menu by checking the "rel" 
-         attribute. */
-      if (href && (!id || !*id) && rel && !strcmp(rel, "index"))
+      /* Look for links to index nodes in top node by checking the "rel" 
+         attribute.  Only use links in the table of contents to avoid
+         loading the same index more than once. */
+      if (href
+          && id && !strncmp (id, "toc-", 4)
+          && rel && !strcmp(rel, "index"))
         {
-          g_print ("index node at |%s|\n", href);
+          debug (1, "index node at |%s|\n", href);
           g_string_append (s, href);
           g_string_append (s, "\n");
         }
@@ -208,7 +231,7 @@ find_indices (WebKitDOMHTMLCollection *links, gulong 
num_links)
 void
 send_index (WebKitDOMHTMLCollection *links, gulong num_links)
 {
-  g_print ("trying to send index\n");
+  debug (1, "trying to send index\n");
 
   gulong i = 0;
   GString *s = g_string_new (NULL);
@@ -224,7 +247,7 @@ send_index (WebKitDOMHTMLCollection *links, gulong 
num_links)
         = webkit_dom_html_collection_item (links, i);
       if (!node)
         {
-          g_print ("No node\n");
+          debug (1, "No node\n");
           return;
         }
 
@@ -236,7 +259,7 @@ send_index (WebKitDOMHTMLCollection *links, gulong 
num_links)
       else
         {
           /* When would this happen? */
-          g_print ("Not an DOM element\n");
+          debug (1, "Not an DOM element\n");
           continue;
         }
 
@@ -255,7 +278,7 @@ send_index (WebKitDOMHTMLCollection *links, gulong 
num_links)
               if (s->len > PACKET_SIZE && try != 1)
                 {
                   g_string_truncate (s, old_len);
-                  // g_print ("sending packet %u||%s||\n", s->len, s->str);
+                  // debug (2, "sending packet %u||%s||\n", s->len, s->str);
                   send_datagram (s);
                   g_string_assign (s, "index\n");
                   try++;
@@ -269,15 +292,14 @@ send_index (WebKitDOMHTMLCollection *links, gulong 
num_links)
 
   g_string_free (s, TRUE);
 
-  g_print ("index sent\n");
+  debug (1, "index sent\n");
 }
 
 void
 document_loaded_callback (WebKitWebPage *web_page,
                           gpointer       user_data)
 {
-  g_print ("Page %d loaded for %s\n", 
-           webkit_web_page_get_id (web_page),
+  debug (1, "Page %d loaded for %s\n", webkit_web_page_get_id (web_page),
            webkit_web_page_get_uri (web_page));
 
   WebKitDOMDocument *dom_document
@@ -285,7 +307,7 @@ document_loaded_callback (WebKitWebPage *web_page,
 
   if (!dom_document)
     {
-      g_print ("No DOM document\n");
+      debug (1, "No DOM document\n");
       return;
     }
 
@@ -294,12 +316,12 @@ document_loaded_callback (WebKitWebPage *web_page,
 
   if (!links)
     {
-      g_print ("No links\n");
+      debug (1, "No links\n");
       return;
     }
 
    gulong num_links = webkit_dom_html_collection_get_length (links);
-   g_print ("Found %d links\n",
+   debug (1, "Found %d links\n",
     webkit_dom_html_collection_get_length (links));
 
    gint send_index_p
@@ -327,7 +349,7 @@ document_loaded_callback (WebKitWebPage *web_page,
          = webkit_dom_html_collection_item (links, i);
        if (!node)
          {
-           g_print ("No node\n");
+           debug (1, "No node\n");
            return;
          }
 
@@ -339,7 +361,7 @@ document_loaded_callback (WebKitWebPage *web_page,
        else
          {
            /* When would this happen? */
-           g_print ("Not an DOM element\n");
+           debug (1, "Not an DOM element\n");
            continue;
          }
 
@@ -387,7 +409,7 @@ document_loaded_callback (WebKitWebPage *web_page,
 
                        if (result == -1)
                          {
-                           g_print ("socket write failed: %s\n",
+                           debug (1, "socket write failed: %s\n",
                                     strerror(errno));
                          }
 
@@ -408,7 +430,7 @@ web_page_created_callback (WebKitWebExtension *extension,
                            WebKitWebPage      *web_page,
                            gpointer            user_data)
 {
-    g_print ("Page %d created for %s\n", 
+    debug (1, "Page %d created for %s\n",
              webkit_web_page_get_id (web_page),
              webkit_web_page_get_uri (web_page));
 
@@ -481,7 +503,7 @@ webkit_web_extension_initialize_with_user_data 
(WebKitWebExtension *extension,
                                                 GVariant *user_data)
 {
   const char *socket_file = g_variant_get_bytestring (user_data);
-  g_print ("thread id %s\n", socket_file);
+  debug (1, "thread id %s\n", socket_file);
 
   initialize_socket (socket_file);
   
diff --git a/js/wkinfo/main.c b/js/wkinfo/main.c
index dc770bbe75..f9ea86edfb 100644
--- a/js/wkinfo/main.c
+++ b/js/wkinfo/main.c
@@ -22,11 +22,17 @@ vmsg (char *fmt, va_list v)
   vprintf (fmt, v);
 }
 
+int debug_level = 1;
+
 void
-msg (char *fmt, ...)
+debug (int level, char *fmt, ...)
 {
+  if (level > debug_level)
+    return;
+
   va_list v;
   va_start (v, fmt);
+
   printf ("%lu: ", clock ());
   vmsg (fmt, v);
   va_end (v);
@@ -88,7 +94,7 @@ load_relative_url (const char *href)
           memcpy (link, current_uri, p - current_uri);
           strcpy (link + (p - current_uri), href);
 
-          g_print ("LOADING %s\n", link);
+          debug (1, "LOADING %s\n", link);
           webkit_web_view_load_uri (webView, link);
         }
     }
@@ -143,12 +149,12 @@ save_completions (char *p)
       q2 = strchr (q, '\n');
       if (!q2)
         {
-          g_print ("incomplete packet\n");
+          debug (1, "incomplete packet\n");
           return;
         }
       *q2++ = 0;
 
-      g_print ("add index entry %s\n", p);
+      // debug (2, "add index entry %s\n", p);
 
       gtk_list_store_append (index_store, &iter);
       gtk_list_store_set (index_store, &iter,
@@ -167,7 +173,7 @@ load_index_nodes (char *p)
   GString *s;
   char *q;
 
-  g_print ("index nodes %s\n", p);
+  debug (1, "index nodes %s\n", p);
 
   s = g_string_new (NULL);
 
@@ -180,7 +186,7 @@ load_index_nodes (char *p)
       g_string_append (s, p);
       g_string_append (s, "?send-index");
 
-      g_print ("load index node %s\n", s->str);
+      debug (1, "load index node %s\n", s->str);
       webkit_web_view_load_uri (hiddenWebView, s->str);
 
       p = q + 1;
@@ -203,12 +209,12 @@ socket_cb (GSocket *socket,
       result = g_socket_receive (socket, buffer, sizeof buffer, NULL, &err);
       if (result <= 0)
         {
-          g_print ("socket receive error: %s\n", err->message);
+          debug (1, "socket receive error: %s\n", err->message);
           gtk_main_quit ();
         }
 
       buffer[PACKET_SIZE] = '\0';
-      // g_print ("Received le data: <%s>\n", buffer);
+      // debug (2, "Received le data: <%s>\n", buffer);
 
       char *p, *q;
       p = strchr (buffer, '\n'); 
@@ -242,7 +248,7 @@ socket_cb (GSocket *socket,
         }
       else if (!strcmp (buffer, "new-manual"))
         {
-          g_print ("NEW MANUAL %s\n", p + 1);
+          debug (1, "NEW MANUAL %s\n", p + 1);
           clear_completions ();
 
           char *q = strchr (p + 1, '\n');
@@ -375,7 +381,7 @@ decide_policy_cb (WebKitWebView           *web_view,
       /* Check for an external URL. */
       if (!memcmp (uri, "http:", 5) || !memcmp(uri, "https:", 6))
         {
-          g_print ("link blocked");
+          debug (1, "link blocked");
           webkit_policy_decision_ignore (decision);
         }
       else



reply via email to

[Prev in Thread] Current Thread [Next in Thread]