83743bc637fddd5c2b1cafad4bfabbdede894fd9
[pandora-libraries.git] / minimenu / mmenu.c
1
2 /* minimenu
3  * aka "2wm" - too weak menu, two week menu, akin to twm
4  *
5  * Craig wants a super minimal menu ASAP before launch, so lets see what I can put together in 2 weeks with not much
6  * free time ;) I'd like to do a fuller ('tiny', but with plugin support and a decent expansion and customizing design..)
7  * but later, baby!
8  *
9  */
10
11 /* mmenu - This is the actual menu
12  * The goal of this app is to show a application picker screen of some sort, allow the user to perform some useful
13  * activities (such as set clock speed, say), and request an app to run, or shutdown, etc.
14  * To keep the memory footprint down, when invoking an application, the menu _exits_, and simply spits out
15  * an operation for mmwrapper to perform. In the case of no wrapper, the menu will just exit, which is handy for
16  * debugging.
17  */
18
19 /* mmenu lifecycle:
20  * 1) determine app list (via pnd scan, .desktop scan, whatever voodoo)
21  * 2) show a menu, allow user to interact:
22  *    a) user picks an application to run, or -> exit, pass shell run line to wrapper
23  *    b) user requests menu shutdown -> exit, tell wrapper to exit as well
24  *    c) user performsn some operation (set clock, copy files, whatever) -> probably stays within the menu
25  */
26
27 #include <stdio.h> /* for FILE etc */
28 #include <stdlib.h> /* for malloc */
29 #include <unistd.h> /* for unlink */
30 #include <limits.h> /* for PATH_MAX */
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #define __USE_GNU /* for strcasestr */
34 #include <string.h> /* for making ftw.h happy */
35 #include <strings.h>
36 #include <ctype.h>
37 #include <sys/wait.h>
38 #include <dirent.h>
39 #include <signal.h> // for sigaction
40
41 #include "pnd_logger.h"
42 #include "pnd_pxml.h"
43 #include "pnd_utility.h"
44 #include "pnd_conf.h"
45 #include "pnd_container.h"
46 #include "pnd_discovery.h"
47 #include "pnd_locate.h"
48 #include "pnd_device.h"
49 #include "pnd_pndfiles.h"
50 #include "../lib/pnd_pathiter.h"
51 #include "pnd_notify.h"
52 #include "pnd_dbusnotify.h"
53 #include "pnd_apps.h"
54
55 #include "mmenu.h"
56 #include "mmwrapcmd.h"
57 #include "mmapps.h"
58 #include "mmcache.h"
59 #include "mmcat.h"
60 #include "mmui.h"
61 #include "mmconf.h"
62
63 pnd_box_handle g_active_apps = NULL;
64 unsigned int g_active_appcount = 0;
65 char g_username [ 128 ]; // since we have to wait for login (!!), store username here
66 pnd_conf_handle g_conf = 0;
67 pnd_conf_handle g_desktopconf = 0;
68
69 char *pnd_run_script = NULL;
70 unsigned char g_x11_present = 1; // >0 if X is present
71 unsigned char g_catmap = 0; // if 1, we're doing category mapping
72 unsigned char g_pvwcache = 0; // if 1, we're trying to do preview caching
73 unsigned char g_autorescan = 1; // default to auto rescan
74
75 pnd_dbusnotify_handle dbh = 0; // if >0, dbusnotify is active
76 pnd_notify_handle nh = 0; // if >0, inotify is active
77
78 char g_skin_selected [ 100 ] = "default";
79 char *g_skinpath = NULL; // where 'skin_selected' is located .. the fullpath including skin-dir-name
80 pnd_conf_handle g_skinconf = NULL;
81
82 void sigquit_handler ( int n );
83 unsigned char app_is_visible ( pnd_conf_handle h, char *uniqueid );
84
85 int main ( int argc, char *argv[] ) {
86   int logall = -1; // -1 means normal logging rules; >=0 means log all!
87   int i;
88
89   // boilerplate stuff from pndnotifyd and pndevmapperd
90
91   /* iterate across args
92    */
93   for ( i = 1; i < argc; i++ ) {
94
95     if ( argv [ i ][ 0 ] == '-' && argv [ i ][ 1 ] == 'l' ) {
96
97       if ( isdigit ( argv [ i ][ 2 ] ) ) {
98         unsigned char x = atoi ( argv [ i ] + 2 );
99         if ( x >= 0 &&
100              x < pndn_none )
101         {
102           logall = x;
103         }
104       } else {
105         logall = 0;
106       }
107
108     } else {
109       //printf ( "Unknown: %s\n", argv [ i ] );
110       printf ( "%s [-l##]\n", argv [ 0 ] );
111       printf ( "-l#\tLog-it; -l is 0-and-up (or all), and -l2 means 2-and-up (not all); l[0-3] for now. Log goes to /tmp/mmenu.log\n" );
112       printf ( "-f\tFull path of frontend to run\n" );
113       exit ( 0 );
114     }
115
116   } // for
117
118   /* enable logging?
119    */
120   pnd_log_set_pretext ( "mmenu" );
121   pnd_log_set_flush ( 1 );
122
123   if ( logall == -1 ) {
124     // standard logging; non-daemon versus daemon
125
126 #if 1 // HACK: set debug level to high on desktop, but not on pandora; just a convenience while devving, until the conf file is read
127     struct stat statbuf;
128     if ( stat ( PND_DEVICE_BATTERY_GAUGE_PERC, &statbuf ) == 0 ) {
129       // on pandora
130       pnd_log_set_filter ( pndn_error );
131     } else {
132       pnd_log_set_filter ( pndn_debug );
133     }
134 #endif
135
136     pnd_log_to_stdout();
137
138   } else {
139     FILE *f;
140
141     f = fopen ( "/tmp/mmenu.log", "w" );
142
143     if ( f ) {
144       pnd_log_set_filter ( logall );
145       pnd_log_to_stream ( f );
146       pnd_log ( pndn_rem, "logall mode - logging to /tmp/mmenu.log\n" );
147     }
148
149     if ( logall == pndn_debug ) {
150       pnd_log_set_buried_logging ( 1 ); // log the shit out of it
151       pnd_log ( pndn_rem, "logall mode 0 - turned on buried logging\n" );
152     }
153
154   } // logall
155
156   pnd_log ( pndn_rem, "%s built %s %s", argv [ 0 ], __DATE__, __TIME__ );
157
158   pnd_log ( pndn_rem, "log level starting as %u", pnd_log_get_filter() );
159
160   // wait for a user to be logged in - we should probably get hupped when a user logs in, so we can handle
161   // log-out and back in again, with SDs popping in and out between..
162   pnd_log ( pndn_rem, "Checking to see if a user is logged in\n" );
163   while ( 1 ) {
164     if ( pnd_check_login ( g_username, 127 ) ) {
165       break;
166     }
167     pnd_log ( pndn_debug, "  No one logged in yet .. spinning.\n" );
168     sleep ( 2 );
169   } // spin
170   pnd_log ( pndn_rem, "Looks like user '%s' is in, continue.\n", g_username );
171
172   /* conf files
173    */
174
175   // mmenu conf
176   g_conf = pnd_conf_fetch_by_name ( MMENU_CONF, MMENU_CONF_SEARCHPATH );
177
178   if ( ! g_conf ) {
179     pnd_log ( pndn_error, "ERROR: Couldn't fetch conf file '%s'!\n", MMENU_CONF );
180     emit_and_quit ( MM_QUIT );
181   }
182
183   // override mmenu conf via user preference conf
184   conf_merge_into ( conf_determine_location ( g_conf ), g_conf );
185   conf_setup_missing ( g_conf );
186
187   // desktop conf for app finding preferences
188   g_desktopconf = pnd_conf_fetch_by_id ( pnd_conf_desktop, PND_CONF_SEARCHPATH );
189
190   if ( ! g_desktopconf ) {
191     pnd_log ( pndn_error, "ERROR: Couldn't fetch desktop conf file\n" );
192     emit_and_quit ( MM_QUIT );
193   }
194
195   /* set up quit signal handler
196    */
197   sigset_t ss;
198   sigemptyset ( &ss );
199
200   struct sigaction siggy;
201   siggy.sa_handler = sigquit_handler;
202   siggy.sa_mask = ss; /* implicitly blocks the origin signal */
203   siggy.sa_flags = SA_RESTART; /* don't need anything */
204   sigaction ( SIGQUIT, &siggy, NULL );
205
206   /* category conf file
207    */
208   {
209     char *locater = pnd_locate_filename ( pnd_conf_get_as_char ( g_conf, "categories.catmap_searchpath" ),
210                                           pnd_conf_get_as_char ( g_conf, "categories.catmap_confname" ) );
211
212     if ( locater ) {
213       pnd_log ( pndn_rem, "Found category conf at '%s'\n", locater );
214       pnd_conf_handle h = pnd_conf_fetch_by_path ( locater );
215       if ( h ) {
216         // lets just merge the skin conf onto the regular conf, so it just magicly works
217         pnd_box_append ( g_conf, h );
218       }
219     } else {
220       pnd_log ( pndn_debug, "No additional category conf file found.\n" );
221     }
222
223   } // cat conf
224
225   // redo log filter
226   pnd_log_set_filter ( pnd_conf_get_as_int_d ( g_conf, "minimenu.loglevel", pndn_error ) );
227
228   /* setup
229    */
230
231   // X11?
232   if ( pnd_conf_get_as_char ( g_conf, "minimenu.x11_present_sh" ) ) {
233     FILE *fx = popen ( pnd_conf_get_as_char ( g_conf, "minimenu.x11_present_sh" ), "r" );
234     char buffer [ 100 ];
235     if ( fx ) {
236       if ( fgets ( buffer, 100, fx ) ) {
237         if ( atoi ( buffer ) ) {
238           g_x11_present = 1;
239           pnd_log ( pndn_rem, "X11 seems to be present [pid %u]\n", atoi(buffer) );
240         } else {
241           g_x11_present = 0;
242           pnd_log ( pndn_rem, "X11 seems NOT to be present\n" );
243         }
244       } else {
245           g_x11_present = 0;
246           pnd_log ( pndn_rem, "X11 seems NOT to be present\n" );
247       }
248       pclose ( fx );
249     }
250   } // x11?
251
252   // pnd_run.sh
253   pnd_run_script = pnd_locate_filename ( pnd_conf_get_as_char ( g_conf, "minimenu.pndrun" ), "pnd_run.sh" );
254
255   if ( ! pnd_run_script ) {
256     pnd_log ( pndn_error, "ERROR: Couldn't locate pnd_run.sh!\n" );
257     emit_and_quit ( MM_QUIT );
258   }
259
260   pnd_run_script = strdup ( pnd_run_script ); // so we don't lose it next pnd_locate
261
262   pnd_log ( pndn_rem, "Found pnd_run.sh at '%s'\n", pnd_run_script );
263
264   // auto rescan?
265   if ( pnd_conf_get_as_int ( g_conf, "minimenu.auto_rescan" ) != PND_CONF_BADNUM ) {
266     g_autorescan = pnd_conf_get_as_int ( g_conf, "minimenu.auto_rescan" );
267   }
268   pnd_log ( pndn_debug, "application rescan is set to: %s\n", g_autorescan ? "auto" : "manual" );
269
270   // figure out what skin is selected (or default)
271   FILE *f;
272   char *s = strdup ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_selected" ) );
273   s = pnd_expand_tilde ( s );
274   if ( ( f = fopen ( s, "r" ) ) ) {
275     char buffer [ 100 ];
276     if ( fgets ( buffer, 100, f ) ) {
277       // see if that dir can be located
278       if ( strchr ( buffer, '\n' ) ) {
279         * strchr ( buffer, '\n' ) = '\0';
280       }
281       char *found = pnd_locate_filename ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_searchpath" ), buffer );
282       if ( found ) {
283         strncpy ( g_skin_selected, buffer, 100 );
284         g_skinpath = strdup ( found );
285       } else {
286         pnd_log ( pndn_warning, "Couldn't locate skin named '%s' so falling back.\n", buffer );
287       }
288     }
289     fclose ( f );
290   }
291   free ( s );
292
293   if ( g_skinpath ) {
294     pnd_log ( pndn_rem, "Skin is selected: '%s'\n", g_skin_selected );
295   } else {
296     pnd_log ( pndn_rem, "Skin falling back to: '%s'\n", g_skin_selected );
297
298     char *found = pnd_locate_filename ( pnd_conf_get_as_char ( g_conf, "minimenu.skin_searchpath" ),
299                                         g_skin_selected );
300     if ( found ) {
301       g_skinpath = strdup ( found );
302     } else {
303       pnd_log ( pndn_error, "Couldn't locate skin named '%s'.\n", g_skin_selected );
304       emit_and_quit ( MM_QUIT );
305     }
306
307   }
308   pnd_log ( pndn_rem, "Skin path determined to be: '%s'\n", g_skinpath );
309
310   // lets see if this skin-path actually has a skin conf
311   {
312     char fullpath [ PATH_MAX ];
313     sprintf ( fullpath, "%s/%s", g_skinpath, pnd_conf_get_as_char ( g_conf, "minimenu.skin_confname" ) );
314     g_skinconf = pnd_conf_fetch_by_path ( fullpath );
315   }
316
317   // figure out skin path if we didn't get it already
318   if ( ! g_skinconf ) {
319     pnd_log ( pndn_error, "ERROR: Couldn't set up skin!\n" );
320     emit_and_quit ( MM_QUIT );
321   }
322
323   // lets just merge the skin conf onto the regular conf, so it just magicly works
324   pnd_box_append ( g_conf, g_skinconf );
325
326   // did user override the splash image?
327   char *splash = pnd_conf_get_as_char ( g_conf, "minimenu.force_wallpaper" );
328   if ( splash ) {
329     // we've got a filename, presumably; lets see if it exists
330     struct stat statbuf;
331     if ( stat ( splash, &statbuf ) == 0 ) {
332       // file seems to exist, lets set our override to that..
333       pnd_conf_set_char ( g_conf, "graphics.IMG_BACKGROUND_800480", splash );
334     }
335   }
336
337   // attempt to set up UI
338   if ( ! ui_setup() ) {
339     pnd_log ( pndn_error, "ERROR: Couldn't set up the UI!\n" );
340     emit_and_quit ( MM_QUIT );
341   }
342
343   // show load screen
344   ui_loadscreen();
345
346   // store flag if we're doing preview caching or not
347   if ( pnd_conf_get_as_int_d ( g_conf, "previewpic.do_cache", 0 ) ) {
348     g_pvwcache = 1;
349   }
350
351   // set up static image cache
352   if ( ! ui_imagecache ( g_skinpath ) ) {
353     pnd_log ( pndn_error, "ERROR: Couldn't set up static UI image cache!\n" );
354     emit_and_quit ( MM_QUIT );
355   }
356
357   // init categories
358   category_init();
359
360   // create all cat
361   if ( pnd_conf_get_as_int_d ( g_conf, "categories.do_all_cat", 1 ) ) {
362     category_push ( g_x11_present ? CATEGORY_ALL "    (X11)" : CATEGORY_ALL "   (No X11)", NULL /*app*/, 0, NULL /* fspath */, 1 /* visible */ );
363   }
364
365   // set up category mappings
366   if ( pnd_conf_get_as_int_d ( g_conf, "categories.map_on", 0 ) ) {
367     g_catmap = category_map_setup();
368   }
369
370   /* inhale applications, icons, categories, etc
371    */
372   applications_scan();
373
374   /* actual work now
375    */
376   unsigned char block = 1;
377
378   if ( g_autorescan ) {
379     block = 0;
380
381     // set up notifications
382     dbh = pnd_dbusnotify_init();
383     pnd_log ( pndn_debug, "Setting up dbusnotify\n" );
384     //setup_notifications();
385
386   } // set up rescan
387
388   /* set speed to minimenu run-speed, now that we're all set up
389    */
390 #if 0 /* something crashes at high speed image caching.. */
391   int use_mm_speed = pnd_conf_get_as_int_d ( g_conf, "minimenu.use_mm_speed", 0 );
392   if ( use_mm_speed > 0 ) {
393     int mm_speed = pnd_conf_get_as_int_d ( g_conf, "minimenu.mm_speed", -1 );
394     if ( mm_speed > 50 && mm_speed < 800 ) {
395       char buffer [ 512 ];
396       snprintf ( buffer, 500, "sudo /usr/pandora/scripts/op_cpuspeed.sh %d", mm_speed );
397       system ( buffer );
398     }
399   } // do speed change?
400 #endif
401
402   // do it!
403   while ( 1 ) { // forever!
404
405     // show the menu, or changes thereof
406     ui_render();
407
408     // wait for input or time-based events (like animations)
409     // deal with inputs
410     ui_process_input ( block /* block */ );
411
412     // did a rescan event trigger?
413     if ( g_autorescan ) {
414       unsigned char watch_dbus = 0;
415       unsigned char watch_inotify = 0;
416
417       if ( dbh ) {
418         watch_dbus = pnd_dbusnotify_rediscover_p ( dbh );
419       }
420
421       if ( nh ) {
422         watch_inotify = pnd_notify_rediscover_p ( nh );
423       }
424
425       if ( watch_dbus || watch_inotify ) {
426         pnd_log ( pndn_debug, "dbusnotify detected SD event\n" );
427         applications_free();
428         applications_scan();
429       }
430
431     } // rescan?
432
433     // sleep? block?
434     usleep ( 100000 /*5000*/ );
435
436   } // while
437
438   return ( 0 );
439 }
440
441 void emit_and_quit ( char *s ) {
442   printf ( "%s\n", s );
443   // shutdown notifications
444   if ( g_autorescan ) {
445
446     if ( dbh ) {
447       pnd_dbusnotify_shutdown ( dbh );
448     }
449     if ( nh ) {
450       pnd_notify_shutdown ( nh );
451     }
452
453   }
454
455   exit ( 0 );
456 }
457
458 static unsigned int is_dir_empty ( char *fullpath ) {
459   DIR *d = opendir ( fullpath );
460
461   if ( ! d ) {
462     return ( 0 ); // not empty, since we don't know
463   }
464
465   struct dirent *de = readdir ( d );
466
467   while ( de ) {
468
469     if ( strcmp ( de -> d_name, "." ) == 0 ) {
470       // irrelevent
471     } else if ( strcmp ( de -> d_name, ".." ) == 0 ) {
472       // irrelevent
473     } else {
474       // something else came in, so dir must not be empty
475       closedir ( d );
476       return ( 0 ); 
477     }
478
479     de = readdir ( d );
480   }
481
482   closedir ( d );
483
484   return ( 1 ); // dir is empty
485 }
486
487 void applications_free ( void ) {
488
489   // free up all our category apprefs, but keep the preview and icon cache's..
490   category_freeall();
491
492   // free up old disco_t
493   if ( g_active_apps ) {
494     pnd_disco_t *p = pnd_box_get_head ( g_active_apps );
495     pnd_disco_t *n;
496     while ( p ) {
497       n = pnd_box_get_next ( p );
498       pnd_disco_destroy ( p );
499       p = n;
500     }
501     pnd_box_delete ( g_active_apps );
502   }
503
504   return;
505 }
506
507 void applications_scan ( void ) {
508
509   // has user disabled pnd scanning, by chance?
510   if ( ! pnd_conf_get_as_int_d ( g_conf, "filesystem.do_pnd_disco", 1 ) ) {
511     goto dirbrowser_scan; // skip pnd's
512   }
513
514   // show disco screen
515   ui_discoverscreen ( 1 /* clear screen */ );
516
517   // determine current app list, cache icons
518   // - ignore overrides for now
519
520   g_active_apps = 0;
521   pnd_box_handle merge_apps = 0;
522
523   // desktop apps?
524   if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.desktop_apps", 1 ) ) {
525     pnd_log ( pndn_debug, "Looking for pnd applications here: %s\n",
526               pnd_conf_get_as_char ( g_desktopconf, "desktop.searchpath" ) );
527     g_active_apps = pnd_disco_search ( pnd_conf_get_as_char ( g_desktopconf, "desktop.searchpath" ), NULL );
528   }
529
530   // menu apps?
531   if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.menu_apps", 1 ) ) {
532     pnd_log ( pndn_debug, "Looking for pnd applications here: %s\n",
533               pnd_conf_get_as_char ( g_desktopconf, "menu.searchpath" ) );
534     merge_apps = pnd_disco_search ( pnd_conf_get_as_char ( g_desktopconf, "menu.searchpath" ), NULL );
535   }
536
537   // merge lists
538   if ( merge_apps ) {
539     if ( g_active_apps ) {
540       // the key from pnd_disco_search() is the _path_, so easy to look for duplicates
541       // this is pretty inefficient, being linked lists; perhaps should switch to hash tables when
542       // we expect thousands of apps.. or at least an index or something.
543       void *a = pnd_box_get_head ( merge_apps );
544       void *nexta = NULL;
545       while ( a ) {
546         nexta = pnd_box_get_next ( a );
547
548         // if the key for the node is also found in active apps, toss out the merging one
549         if ( pnd_box_find_by_key ( g_active_apps, pnd_box_get_key ( a ) ) ) {
550           //fprintf ( stderr, "Merging app id '%s' is duplicate; discarding it.\n", pnd_box_get_key ( a ) );
551           pnd_box_delete_node ( merge_apps, a );
552         }
553
554         a = nexta;
555       }
556
557       // got menu apps, and got desktop apps, merge
558       pnd_box_append ( g_active_apps, merge_apps );
559     } else {
560       // got menu apps, had no desktop apps, so just assign
561       g_active_apps = merge_apps;
562     }
563   }
564
565   // aux apps?
566   char *aux_apps = NULL;
567   merge_apps = 0;
568   aux_apps = pnd_conf_get_as_char ( g_conf, "minimenu.aux_searchpath" );
569   if ( aux_apps && aux_apps [ 0 ] ) {
570     pnd_log ( pndn_debug, "Looking for pnd applications here: %s\n", aux_apps );
571     merge_apps = pnd_disco_search ( aux_apps, NULL );
572   }
573
574   // merge aux apps
575   if ( merge_apps ) {
576     if ( g_active_apps ) {
577
578       // LAME: snipped from above; should just catenate the 3 sets of searchpaths into a
579       // master searchpath, possibly removing duplicate paths _then_, and keep all this much
580       // more efficient
581
582       // the key from pnd_disco_search() is the _path_, so easy to look for duplicates
583       // this is pretty inefficient, being linked lists; perhaps should switch to hash tables when
584       // we expect thousands of apps.. or at least an index or something.
585       void *a = pnd_box_get_head ( merge_apps );
586       void *nexta = NULL;
587       while ( a ) {
588         nexta = pnd_box_get_next ( a );
589
590         // if the key for the node is also found in active apps, toss out the merging one
591         if ( pnd_box_find_by_key ( g_active_apps, pnd_box_get_key ( a ) ) ) {
592           fprintf ( stderr, "Merging app id '%s' is duplicate; discarding it.\n", pnd_box_get_key ( a ) );
593           pnd_box_delete_node ( merge_apps, a );
594         }
595
596         a = nexta;
597       }
598
599       pnd_box_append ( g_active_apps, merge_apps );
600     } else {
601       g_active_apps = merge_apps;
602     }
603   }
604
605   // do it
606   g_active_appcount = pnd_box_get_size ( g_active_apps );
607
608   unsigned char maxwidth, maxheight;
609   maxwidth = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_width", 50 );
610   maxheight = pnd_conf_get_as_int_d ( g_conf, "grid.icon_max_height", 50 );
611
612   // show cache screen
613   ui_cachescreen ( 1 /* clear screen */, NULL );
614
615   pnd_log ( pndn_debug, "Found pnd applications, and caching icons:\n" );
616   pnd_disco_t *iter = pnd_box_get_head ( g_active_apps );
617   unsigned int itercount = 0;
618   while ( iter ) {
619     //pnd_log ( pndn_debug, "  App: '%s'\n", IFNULL(iter->title_en,"No Name") );
620
621     // update cachescreen
622     // ... every 5 filenames, just to avoid slowing it too much
623     if ( itercount % 5 == 0 ) {
624       ui_cachescreen ( 0 /* clear screen */, IFNULL(iter->title_en,"No Name") );
625     }
626
627     // if an ovr was flagged by libpnd, lets go inhale it just so we've got the
628     // notes handy, since notes are not handled by libpnd proper
629     pnd_conf_handle ovrh = 0;
630     if ( iter -> object_flags & PND_DISCO_FLAG_OVR ) {
631       char ovrfile [ PATH_MAX ];
632       char *fixpxml;
633       sprintf ( ovrfile, "%s/%s", iter -> object_path, iter -> object_filename );
634       fixpxml = strcasestr ( ovrfile, PND_PACKAGE_FILEEXT );
635       strcpy ( fixpxml, PXML_SAMEPATH_OVERRIDE_FILEEXT );
636
637       ovrh = pnd_conf_fetch_by_path ( ovrfile );
638
639 #if 0
640       if ( ovrh ) {
641         pnd_log ( pndn_debug, "Found ovr file for %s # %u\n", iter -> object_filename, iter -> subapp_number );
642       }
643 #endif
644
645     } // ovr
646
647     // cache the icon, unless deferred
648     if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_icons_later", 0 ) == 0 ) {
649       if ( iter -> pnd_icon_pos &&
650            ! cache_icon ( iter, maxwidth, maxheight ) )
651       {
652         pnd_log ( pndn_warning, "  Couldn't load icon: '%s'\n", IFNULL(iter->title_en,"No Name") );
653       }
654     }
655
656     // cache the preview --> SHOULD DEFER
657     if ( pnd_conf_get_as_int_d ( g_conf, "minimenu.load_previews_now", 0 ) > 0 ) {
658       // load the preview pics now!
659       if ( iter -> preview_pic1 &&
660            ! cache_preview ( iter, pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_width", 200 ), pnd_conf_get_as_int_d ( g_conf, "previewpic.cell_height", 180 ) ) )
661       {
662         pnd_log ( pndn_warning, "  Couldn't load preview pic: '%s' -> '%s'\n", IFNULL(iter->title_en,"No Name"), iter -> preview_pic1 );
663       }
664     } // preview now?
665
666     // push the categories .. or suppress application
667     //
668     if ( ( pnd_pxml_get_x11 ( iter -> option_no_x11 ) != pnd_pxml_x11_required ) ||
669          ( pnd_pxml_get_x11 ( iter -> option_no_x11 ) == pnd_pxml_x11_required && g_x11_present == 1 )
670        )
671     {
672  
673       if ( iter -> title_en == NULL || iter -> title_en [ 0 ] == '\0' ) {
674         // null title; just skip it.
675       } else {
676
677         // push to All category
678         // we do this first, so first category is always All
679         if ( pnd_conf_get_as_int_d ( g_conf, "categories.do_all_cat", 1 ) ) {
680           category_push ( g_x11_present ? CATEGORY_ALL "    (X11)" : CATEGORY_ALL "   (No X11)", iter, ovrh, NULL /* fspath */, 1 /* visible */ );
681         } // all?
682
683         // is this app suppressed? if not, show it in whatever categories the user is allowing
684         if ( iter -> unique_id && app_is_visible ( g_conf, iter -> unique_id ) ) {
685
686           // main categories
687           category_meta_push ( iter -> main_category, NULL /* no parent cat */, iter, ovrh, cat_is_visible ( g_conf, iter -> main_category ) ); //pnd_conf_get_as_int_d ( g_conf, "tabs.top_maincat", 1 ) );
688           category_meta_push ( iter -> main_category1, iter -> main_category, iter, ovrh, cat_is_visible ( g_conf, iter -> main_category1 ) ); //pnd_conf_get_as_int_d ( g_conf, "tabs.top_maincat1", 0 ) );
689           category_meta_push ( iter -> main_category2, iter -> main_category, iter, ovrh, cat_is_visible ( g_conf, iter -> main_category2 ) ); //pnd_conf_get_as_int_d ( g_conf, "tabs.top_maincat2", 0 ) );
690           // alt categories
691           category_meta_push ( iter -> alt_category, NULL /* no parent cat */, iter, ovrh, cat_is_visible ( g_conf, iter -> alt_category ) ); //pnd_conf_get_as_int_d ( g_conf, "tabs.top_altcat", 0 ) );
692           category_meta_push ( iter -> alt_category1, iter -> alt_category, iter, ovrh, cat_is_visible ( g_conf, iter -> alt_category1 ) ); //pnd_conf_get_as_int_d ( g_conf, "tabs.top_altcat1", 0 ) );
693           category_meta_push ( iter -> alt_category2, iter -> alt_category, iter, ovrh, cat_is_visible ( g_conf, iter -> alt_category2 ) ); //pnd_conf_get_as_int_d ( g_conf, "tabs.top_altcat2", 0 ) );
694
695         } // app is visible?
696
697       } // has title?
698
699     } // register with categories or filter out
700
701     // next
702     iter = pnd_box_get_next ( iter );
703     itercount++;
704   } // while
705
706  dirbrowser_scan:
707
708   // set up filesystem browser tabs
709   if ( pnd_conf_get_as_int_d ( g_conf, "filesystem.do_browser", 0 ) ) {
710     char *searchpath = pnd_conf_get_as_char ( g_conf, "filesystem.tab_searchpaths" );
711
712     SEARCHPATH_PRE
713     {
714       char *c, *tabname;
715       c = strrchr ( buffer, '/' );
716       if ( c && (*(c+1)!='\0') ) {
717         tabname = c;
718       } else {
719         tabname = buffer;
720       }
721
722       // check if dir is empty; if so, skip it.
723       if ( ! is_dir_empty ( buffer ) ) {
724         category_push ( tabname /* tab name */, NULL /* app */, 0 /* override */, buffer /* fspath */, 1 /* visible */ );
725       }
726
727     }
728     SEARCHPATH_POST
729
730   } // set up fs browser tabs
731
732   // dump categories
733   //category_dump();
734
735   // publish desired categories
736   category_publish ( CFNORMAL, NULL );
737
738   // let deferred icon cache go now
739   ui_post_scan();
740
741   return;
742 }
743
744 static char _vbuf [ 512 ];
745 unsigned char cat_is_visible ( pnd_conf_handle h, char *catname ) {
746   snprintf ( _vbuf, 500, "tabshow.%s", catname );
747   return ( pnd_conf_get_as_int_d ( g_conf, _vbuf, 1 ) ); // default to 'show' when unknown
748 }
749
750 unsigned char app_is_visible ( pnd_conf_handle h, char *uniqueid ) {
751   snprintf ( _vbuf, 500, "appshow.%s", uniqueid );
752   return ( pnd_conf_get_as_int_d ( g_conf, _vbuf, 1 ) ); // default to 'show' when unknown
753 }
754
755 void sigquit_handler ( int n ) {
756   pnd_log ( pndn_rem, "SIGQUIT received; graceful exit.\n" );
757   emit_and_quit ( MM_QUIT );
758 }
759
760 void setup_notifications ( void ) {
761
762   // figure out notify path
763   char *configpath;
764   char *notifypath = NULL;
765
766   configpath = pnd_conf_query_searchpath();
767
768   pnd_conf_handle apph;
769
770   apph = pnd_conf_fetch_by_id ( pnd_conf_apps, configpath );
771
772   if ( apph ) {
773
774     notifypath = pnd_conf_get_as_char ( apph, PND_APPS_NOTIFY_KEY );
775
776     if ( ! notifypath ) {
777       notifypath = PND_APPS_NOTIFYPATH;
778     }
779
780   }
781
782   // given notify path.. ripped from pndnotifyd :(
783   char *searchpath = notifypath;
784
785   // if this is first time through, we can just set it up; for subsequent times
786   // through, we need to close existing fd and re-open it, since we're too lame
787   // to store the list of watches and 'rm' them
788 #if 1
789   if ( nh ) {
790     pnd_notify_shutdown ( nh );
791     nh = 0;
792   }
793 #endif
794
795   // set up a new set of notifies
796   if ( ! nh ) {
797     nh = pnd_notify_init();
798   }
799
800   if ( ! nh ) {
801     pnd_log ( pndn_rem, "INOTIFY failed to init.\n" );
802     exit ( -1 );
803   }
804
805 #if 0
806   pnd_log ( pndn_rem, "INOTIFY is up.\n" );
807 #endif
808
809   SEARCHPATH_PRE
810   {
811
812     pnd_log ( pndn_rem, "Watching path '%s' and its descendents.\n", buffer );
813     pnd_notify_watch_path ( nh, buffer, PND_NOTIFY_RECURSE );
814
815   }
816   SEARCHPATH_POST
817
818   return;
819 }
820
821 // for Pleng
822 // Goal: normally menu will quit when an app is invoked, but there are cases when some folks
823 // may configure their system and want mmenu to live instead (save on restart time, don't care
824 // about RAM, using a multitasking tray/window manager setup...), so instead of 'exit and emit'
825 // here we just run the app directly and cross fingers!
826 void emit_and_run ( char *buffer ) {
827
828   // run the bloody thing
829   int f;
830
831   if ( ( f = fork() ) < 0 ) {
832     // error forking
833   } else if ( f > 0 ) {
834     // parent
835   } else {
836     // child, do it
837     execl ( "/bin/sh", "/bin/sh", "-c", buffer + strlen(MM_RUN) + 1, (char*) NULL );
838   } 
839
840   return;
841 }
842
843 // this code was swiped from pnd_utility pnd_exec_no_wait_1 as it became a little too minimenu-specific to remain there
844 void exec_raw_binary ( char *fullpath ) {
845   int i;
846
847   if ( ( i = fork() ) < 0 ) {
848     printf ( "ERROR: Couldn't fork()\n" );
849     return;
850   }
851
852   if ( i ) {
853     return; // parent process, don't care
854   }
855
856   // child process, do something
857   execl ( "/bin/sh", "/bin/sh", "-c", fullpath, (char*) NULL );
858   //execl ( fullpath, fullpath, (char*) NULL );
859
860   // error invoking something, and we're the child process, so just die before all hell breaks lose with us thinking we're the (second!) parent on return!
861   exit ( -1 );
862
863   // getting here is an error
864   //printf ( "Error attempting to run %s\n", fullpath );
865
866   return;
867 }