Added globbing support for all searchpaths! (can now search /media/*/pandora/apps...
[pandora-libraries.git] / lib / pnd_pathiter.h
index 4611e99..e91a408 100644 (file)
@@ -1,15 +1,84 @@
 
 #ifndef h_pnd_pathiter_h
-#define h_png_pathiter_h
+#define h_pnd_pathiter_h
 
 // man don'y you wish it was python, perl or c++ right about now?
 // perl: foreach i ( split ( ':', path ) ) would be sauce right now
 
+// for wordexp(); nice thign to have bundled into libc!
+#include <stdio.h>
+#include <stdlib.h>
+#include <wordexp.h>
+// for stat()
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
 // this really should be replaced by a function pair .. one to
 // start a new search and one to go to next, bailing when done. Maybe
 // a state struct. Like we have time. OR perhaps just a single
 // func with a callback. Whatever.
 
+
+#if 1 // globbing is performed
+
+#define SEARCHPATH_PRE                            \
+  char *end, *colon;                              \
+  char *head = searchpath;                        \
+  char chunk [ FILENAME_MAX ];                    \
+                                                  \
+  /*fprintf ( stderr, "sp %s\n", searchpath );*/  \
+                                                  \
+  while ( 1 ) {                                   \
+    colon = strchr ( head, ':' );                 \
+    end = strchr ( head, '\0' );                  \
+                                                  \
+    if ( colon && colon < end ) {                 \
+      memset ( chunk, '\0', FILENAME_MAX );       \
+      strncpy ( chunk, head, colon - head );      \
+    } else {                                      \
+      strncpy ( chunk, head, FILENAME_MAX - 1 );  \
+    }                                             \
+                                                  \
+    /*fprintf ( stderr, "-> %s\n", chunk ); */    \
+                                                  \
+    struct stat statbuf;                          \
+    wordexp_t _p;                                 \
+    char **_w;                                    \
+    int _i;                                       \
+    char buffer [ FILENAME_MAX ];                 \
+                                                  \
+    if ( wordexp ( chunk, &_p, 0 ) != 0 ) {       \
+      /* ignore this chunk I guess.. */           \
+    } else {                                      \
+      _w = _p.we_wordv;                           \
+                                                  \
+      for ( _i=0; _i < _p.we_wordc; _i++ ) {      \
+        strcpy ( buffer, _w [ _i ] );             \
+       /*fprintf ( stderr, "glob %s\n", buffer );*/    \
+       if ( ( stat ( buffer, &statbuf ) == 0 )   \
+         && ( S_ISDIR(statbuf.st_mode) ) )       \
+        { /* user code */
+
+#define SEARCHPATH_POST                           \
+        } /* user code */                         \
+      } /* for each glob result */               \
+      wordfree ( &_p );                           \
+    } /* if wordexp succeeds */                          \
+    /* next search path */                       \
+    if ( colon && colon < end ) {                 \
+      head = colon + 1;                           \
+    } else {                                      \
+      break; /* done! */                          \
+    }                                             \
+                                                  \
+  } // while
+
+#endif // globbing is done
+
+
+#if 0 // deprecated simple (no globbing/expansion)
+
 #define SEARCHPATH_PRE                            \
   char *end, *colon;                              \
   char *head = searchpath;                        \
                                                   \
   } // while
 
-#endif
+#endif // deprecated simple
+
+
+#endif // #ifndef