Revert r27972 to fix FS#11610 (but in a way android builds still work).
[maemo-rb.git] / apps / filetree.c
blob9781f8396a285ef2beb162e01139f1b11f842cee
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Björn Stenberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #include <stdlib.h>
22 #include <file.h>
23 #include <dir.h>
24 #include <string.h>
25 #include <kernel.h>
26 #include <lcd.h>
27 #include <debug.h>
28 #include <font.h>
29 #include <limits.h>
30 #include "bookmark.h"
31 #include "tree.h"
32 #include "settings.h"
33 #include "filetypes.h"
34 #include "talk.h"
35 #include "playlist.h"
36 #include "lang.h"
37 #include "language.h"
38 #include "screens.h"
39 #include "plugin.h"
40 #include "rolo.h"
41 #include "splash.h"
42 #include "cuesheet.h"
43 #include "filetree.h"
44 #include "misc.h"
45 #include "strnatcmp.h"
46 #ifdef HAVE_LCD_BITMAP
47 #include "keyboard.h"
48 #endif
50 #if CONFIG_TUNER
51 #include "radio.h"
52 #endif
53 #include "wps.h"
55 static int compare_sort_dir; /* qsort key for sorting directories */
57 int ft_build_playlist(struct tree_context* c, int start_index)
59 int i;
60 int start=start_index;
62 struct entry *dircache = c->dircache;
64 for(i = 0;i < c->filesindir;i++)
66 if((dircache[i].attr & FILE_ATTR_MASK) == FILE_ATTR_AUDIO)
68 if (playlist_add(dircache[i].name) < 0)
69 break;
71 else
73 /* Adjust the start index when se skip non-MP3 entries */
74 if(i < start)
75 start_index--;
79 return start_index;
82 /* Start playback of a playlist, checking for bookmark autoload, modified
83 * playlists, etc., as required. Returns false if playback wasn't started,
84 * or started via bookmark autoload, true otherwise.
86 * Pointers to both the full pathname and the separated parts needed to
87 * avoid allocating yet another path buffer on the stack (and save some
88 * code; the caller typically needs to create the full pathname anyway)...
90 bool ft_play_playlist(char* pathname, char* dirname, char* filename)
92 if (global_settings.party_mode && audio_status())
94 splash(HZ, ID2P(LANG_PARTY_MODE));
95 return false;
98 if (bookmark_autoload(pathname))
100 return false;
103 splash(0, ID2P(LANG_WAIT));
105 /* about to create a new current playlist...
106 allow user to cancel the operation */
107 if (!warn_on_pl_erase())
108 return false;
110 if (playlist_create(dirname, filename) != -1)
112 if (global_settings.playlist_shuffle)
114 playlist_shuffle(current_tick, -1);
117 playlist_start(0, 0);
118 return true;
121 return false;
124 /* walk a directory and check all dircache entries if a .talk file exists */
125 static void check_file_thumbnails(struct tree_context* c)
127 int i;
128 struct dirent *entry;
129 struct entry* dircache = c->dircache;
130 DIR *dir;
132 dir = opendir(c->currdir);
133 if(!dir)
134 return;
135 /* mark all files as non talking, except the .talk ones */
136 for (i=0; i < c->filesindir; i++)
138 if (dircache[i].attr & ATTR_DIRECTORY)
139 continue; /* we're not touching directories */
141 if (strcasecmp(file_thumbnail_ext,
142 &dircache[i].name[strlen(dircache[i].name)
143 - strlen(file_thumbnail_ext)]))
144 { /* no .talk file */
145 dircache[i].attr &= ~FILE_ATTR_THUMBNAIL; /* clear */
147 else
148 { /* .talk file, we later let them speak themselves */
149 dircache[i].attr |= FILE_ATTR_THUMBNAIL; /* set */
153 while((entry = readdir(dir)) != 0) /* walk directory */
155 int ext_pos;
156 struct dirinfo info = dir_get_info(dir, entry);
157 ext_pos = strlen((char *)entry->d_name) - strlen(file_thumbnail_ext);
158 if (ext_pos <= 0 /* too short to carry ".talk" */
159 || (info.attribute & ATTR_DIRECTORY) /* no file */
160 || strcasecmp((char *)&entry->d_name[ext_pos], file_thumbnail_ext))
161 { /* or doesn't end with ".talk", no candidate */
162 continue;
165 /* terminate the (disposable) name in dir buffer,
166 this truncates off the ".talk" without needing an extra buffer */
167 entry->d_name[ext_pos] = '\0';
169 /* search corresponding file in dir cache */
170 for (i=0; i < c->filesindir; i++)
172 if (!strcasecmp(dircache[i].name, (char *)entry->d_name))
173 { /* match */
174 dircache[i].attr |= FILE_ATTR_THUMBNAIL; /* set the flag */
175 break; /* exit search loop, because we found it */
179 closedir(dir);
182 /* support function for qsort() */
183 static int compare(const void* p1, const void* p2)
185 struct entry* e1 = (struct entry*)p1;
186 struct entry* e2 = (struct entry*)p2;
187 int criteria;
189 if (e1->attr & ATTR_DIRECTORY && e2->attr & ATTR_DIRECTORY)
190 { /* two directories */
191 criteria = compare_sort_dir;
193 #ifdef HAVE_MULTIVOLUME
194 if (e1->attr & ATTR_VOLUME || e2->attr & ATTR_VOLUME)
195 { /* a volume identifier is involved */
196 if (e1->attr & ATTR_VOLUME && e2->attr & ATTR_VOLUME)
197 criteria = SORT_ALPHA; /* two volumes: sort alphabetically */
198 else /* only one is a volume: volume first */
199 return (e2->attr & ATTR_VOLUME) - (e1->attr & ATTR_VOLUME);
201 #endif
204 else if (!(e1->attr & ATTR_DIRECTORY) && !(e2->attr & ATTR_DIRECTORY))
205 { /* two files */
206 criteria = global_settings.sort_file;
208 else /* dir and file, dir goes first */
209 return (e2->attr & ATTR_DIRECTORY) - (e1->attr & ATTR_DIRECTORY);
211 switch(criteria)
213 case SORT_TYPE:
214 case SORT_TYPE_REVERSED:
216 int t1 = e1->attr & FILE_ATTR_MASK;
217 int t2 = e2->attr & FILE_ATTR_MASK;
219 if (!t1) /* unknown type */
220 t1 = INT_MAX; /* gets a high number, to sort after known */
221 if (!t2) /* unknown type */
222 t2 = INT_MAX; /* gets a high number, to sort after known */
224 if (t1 != t2) /* if different */
225 return (t1 - t2) * (criteria == SORT_TYPE_REVERSED ? -1 : 1);
226 /* else fall through to alphabetical sorting */
229 case SORT_DATE:
230 case SORT_DATE_REVERSED:
231 /* Ignore SORT_TYPE */
232 if (criteria == SORT_DATE || criteria == SORT_DATE_REVERSED)
234 if (e1->time_write != e2->time_write)
235 return (e1->time_write - e2->time_write)
236 * (criteria == SORT_DATE_REVERSED ? -1 : 1);
237 /* else fall through to alphabetical sorting */
240 case SORT_ALPHA:
241 case SORT_ALPHA_REVERSED:
243 if (global_settings.sort_case)
245 if (global_settings.interpret_numbers == SORT_INTERPRET_AS_NUMBER)
246 return strnatcmp(e1->name, e2->name)
247 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
248 else
249 return strncmp(e1->name, e2->name, MAX_PATH)
250 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
252 else
254 if (global_settings.interpret_numbers == SORT_INTERPRET_AS_NUMBER)
255 return strnatcasecmp(e1->name, e2->name)
256 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
257 else
258 return strncasecmp(e1->name, e2->name, MAX_PATH)
259 * (criteria == SORT_ALPHA_REVERSED ? -1 : 1);
264 return 0; /* never reached */
267 /* load and sort directory into dircache. returns NULL on failure. */
268 int ft_load(struct tree_context* c, const char* tempdir)
270 int i;
271 int name_buffer_used = 0;
272 DIR *dir;
274 if (tempdir)
275 dir = opendir(tempdir);
276 else
277 dir = opendir(c->currdir);
278 if(!dir)
279 return -1; /* not a directory */
281 c->dirsindir = 0;
282 c->dirfull = false;
284 for ( i=0; i < global_settings.max_files_in_dir; i++ ) {
285 int len;
286 struct dirent *entry = readdir(dir);
287 struct dirinfo info;
288 struct entry* dptr =
289 (struct entry*)(c->dircache + i * sizeof(struct entry));
290 if (!entry)
291 break;
293 DEBUGF("aaa\n");
294 info = dir_get_info(dir, entry);
295 DEBUGF("ccc\n");
296 len = strlen((char *)entry->d_name);
298 /* skip directories . and .. */
299 if ((info.attribute & ATTR_DIRECTORY) &&
300 (((len == 1) && (!strncmp((char *)entry->d_name, ".", 1))) ||
301 ((len == 2) && (!strncmp((char *)entry->d_name, "..", 2))))) {
302 i--;
303 continue;
306 /* Skip FAT volume ID */
307 if (info.attribute & ATTR_VOLUME_ID) {
308 i--;
309 continue;
312 /* filter out dotfiles and hidden files */
313 if (*c->dirfilter != SHOW_ALL &&
314 ((entry->d_name[0]=='.') ||
315 (info.attribute & ATTR_HIDDEN))) {
316 i--;
317 continue;
320 dptr->attr = info.attribute;
322 /* check for known file types */
323 if ( !(dptr->attr & ATTR_DIRECTORY) )
324 dptr->attr |= filetype_get_attr((char *)entry->d_name);
326 /* filter out non-visible files */
327 if ((!(dptr->attr & ATTR_DIRECTORY) && (
328 (*c->dirfilter == SHOW_PLAYLIST &&
329 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_M3U) ||
330 ((*c->dirfilter == SHOW_MUSIC &&
331 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_AUDIO) &&
332 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_M3U) ||
333 (*c->dirfilter == SHOW_SUPPORTED && !filetype_supported(dptr->attr)))) ||
334 (*c->dirfilter == SHOW_WPS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_WPS) ||
335 #ifdef HAVE_LCD_BITMAP
336 (*c->dirfilter == SHOW_FONT && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_FONT) ||
337 (*c->dirfilter == SHOW_SBS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_SBS) ||
338 #if CONFIG_TUNER
339 (*c->dirfilter == SHOW_FMS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_FMS) ||
340 #endif
341 #endif
342 #ifdef HAVE_REMOTE_LCD
343 (*c->dirfilter == SHOW_RWPS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_RWPS) ||
344 (*c->dirfilter == SHOW_RSBS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_RSBS) ||
345 #if CONFIG_TUNER
346 (*c->dirfilter == SHOW_RFMS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_RFMS) ||
347 #endif
348 #endif
349 #if CONFIG_TUNER
350 (*c->dirfilter == SHOW_FMR && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_FMR) ||
351 #endif
352 (*c->dirfilter == SHOW_CFG && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_CFG) ||
353 (*c->dirfilter == SHOW_LNG && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_LNG) ||
354 (*c->dirfilter == SHOW_MOD && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_MOD) ||
355 (*c->dirfilter == SHOW_PLUGINS && (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_ROCK &&
356 (dptr->attr & FILE_ATTR_MASK) != FILE_ATTR_LUA))
358 i--;
359 continue;
362 if (len > c->name_buffer_size - name_buffer_used - 1) {
363 /* Tell the world that we ran out of buffer space */
364 c->dirfull = true;
365 break;
367 dptr->name = &c->name_buffer[name_buffer_used];
368 dptr->time_write =
369 (long)info.wrtdate<<16 |
370 (long)info.wrttime; /* in one # */
371 strcpy(dptr->name, (char *)entry->d_name);
372 name_buffer_used += len + 1;
374 if (dptr->attr & ATTR_DIRECTORY) /* count the remaining dirs */
375 c->dirsindir++;
377 c->filesindir = i;
378 c->dirlength = i;
379 closedir(dir);
381 compare_sort_dir = c->sort_dir;
382 qsort(c->dircache,i,sizeof(struct entry),compare);
384 /* If thumbnail talking is enabled, make an extra run to mark files with
385 associated thumbnails, so we don't do unsuccessful spinups later. */
386 if (global_settings.talk_file_clip)
387 check_file_thumbnails(c); /* map .talk to ours */
389 return 0;
391 #ifdef HAVE_LCD_BITMAP
392 static void ft_load_font(char *file)
394 #if NB_SCREENS > 1
395 MENUITEM_STRINGLIST(menu, ID2P(LANG_CUSTOM_FONT), NULL,
396 ID2P(LANG_MAIN_SCREEN), ID2P(LANG_REMOTE_SCREEN))
397 switch (do_menu(&menu, NULL, NULL, false))
399 case 0: /* main lcd */
400 splash(0, ID2P(LANG_WAIT));
401 font_load(NULL, file);
402 set_file(file, (char *)global_settings.font_file, MAX_FILENAME);
403 break;
404 case 1: /* remote */
405 splash(0, ID2P(LANG_WAIT));
406 font_load_remoteui(file);
407 set_file(file, (char *)global_settings.remote_font_file, MAX_FILENAME);
408 break;
410 #else
411 splash(0, ID2P(LANG_WAIT));
412 font_load(NULL, file);
413 set_file(file, (char *)global_settings.font_file, MAX_FILENAME);
414 #endif
416 #endif
418 int ft_enter(struct tree_context* c)
420 int rc = GO_TO_PREVIOUS;
421 char buf[MAX_PATH];
422 struct entry *dircache = c->dircache;
423 struct entry* file = &dircache[c->selected_item];
425 if (c->currdir[1])
426 snprintf(buf,sizeof(buf),"%s/%s",c->currdir, file->name);
427 else
428 snprintf(buf,sizeof(buf),"/%s",file->name);
430 if (file->attr & ATTR_DIRECTORY) {
431 memcpy(c->currdir, buf, sizeof(c->currdir));
432 if ( c->dirlevel < MAX_DIR_LEVELS )
433 c->selected_item_history[c->dirlevel] = c->selected_item;
434 c->dirlevel++;
435 c->selected_item=0;
437 else {
438 int seed = current_tick;
439 bool play = false;
440 int start_index=0;
442 switch ( file->attr & FILE_ATTR_MASK ) {
443 case FILE_ATTR_M3U:
444 play = ft_play_playlist(buf, c->currdir, file->name);
446 if (play)
448 start_index = 0;
451 break;
453 case FILE_ATTR_AUDIO:
454 if (bookmark_autoload(c->currdir))
455 break;
457 splash(0, ID2P(LANG_WAIT));
459 /* about to create a new current playlist...
460 allow user to cancel the operation */
461 if (!warn_on_pl_erase())
462 break;
464 if (global_settings.party_mode && audio_status())
466 playlist_insert_track(NULL, buf,
467 PLAYLIST_INSERT_LAST, true, true);
468 splash(HZ, ID2P(LANG_QUEUE_LAST));
470 else if (playlist_create(c->currdir, NULL) != -1)
472 start_index = ft_build_playlist(c, c->selected_item);
473 if (global_settings.playlist_shuffle)
475 start_index = playlist_shuffle(seed, start_index);
477 /* when shuffling dir.: play all files
478 even if the file selected by user is
479 not the first one */
480 if (!global_settings.play_selected)
481 start_index = 0;
484 playlist_start(start_index, 0);
485 play = true;
487 break;
489 #if CONFIG_TUNER
490 /* fmr preset file */
491 case FILE_ATTR_FMR:
492 splash(0, ID2P(LANG_WAIT));
494 /* Preset inside the default folder. */
495 if(!strncasecmp(FMPRESET_PATH, buf, strlen(FMPRESET_PATH)))
497 set_file(buf, global_settings.fmr_file, MAX_FILENAME);
498 radio_load_presets(global_settings.fmr_file);
501 * Preset outside default folder, we can choose such only
502 * if we are out of the radio screen, so the check for the
503 * radio status isn't neccessary
505 else
507 radio_load_presets(buf);
509 rc = GO_TO_FM;
511 break;
512 case FILE_ATTR_FMS:
513 splash(0, ID2P(LANG_WAIT));
514 set_file(buf, (char *)global_settings.fms_file, MAX_FILENAME);
515 settings_apply_skins();
516 break;
517 #ifdef HAVE_REMOTE_LCD
518 case FILE_ATTR_RFMS:
519 splash(0, ID2P(LANG_WAIT));
520 set_file(buf, (char *)global_settings.rfms_file, MAX_FILENAME);
521 settings_apply_skins();
522 break;
523 #endif
524 #endif
526 #ifdef HAVE_LCD_BITMAP
527 case FILE_ATTR_SBS:
528 splash(0, ID2P(LANG_WAIT));
529 set_file(buf, (char *)global_settings.sbs_file, MAX_FILENAME);
530 settings_apply_skins();
531 break;
532 #endif
533 #ifdef HAVE_REMOTE_LCD
534 case FILE_ATTR_RSBS:
535 splash(0, ID2P(LANG_WAIT));
536 set_file(buf, (char *)global_settings.rsbs_file, MAX_FILENAME);
537 settings_apply_skins();
538 break;
539 #endif
540 /* wps config file */
541 case FILE_ATTR_WPS:
542 splash(0, ID2P(LANG_WAIT));
543 set_file(buf, (char *)global_settings.wps_file,
544 MAX_FILENAME);
545 settings_apply_skins();
546 break;
548 #if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1)
549 /* remote-wps config file */
550 case FILE_ATTR_RWPS:
551 splash(0, ID2P(LANG_WAIT));
552 set_file(buf, (char *)global_settings.rwps_file,
553 MAX_FILENAME);
554 settings_apply_skins();
555 break;
556 #endif
558 case FILE_ATTR_CFG:
559 splash(0, ID2P(LANG_WAIT));
560 if (!settings_load_config(buf,true))
561 break;
562 splash(HZ, ID2P(LANG_SETTINGS_LOADED));
563 break;
565 case FILE_ATTR_BMARK:
566 splash(0, ID2P(LANG_WAIT));
567 bookmark_load(buf, false);
568 rc = GO_TO_FILEBROWSER;
569 break;
571 case FILE_ATTR_LNG:
572 splash(0, ID2P(LANG_WAIT));
573 if (lang_core_load(buf))
575 splash(HZ, ID2P(LANG_FAILED));
576 break;
578 set_file(buf, (char *)global_settings.lang_file,
579 MAX_FILENAME);
580 talk_init(); /* use voice of same language */
581 viewportmanager_theme_changed(THEME_LANGUAGE);
582 settings_apply_skins();
583 splash(HZ, ID2P(LANG_LANGUAGE_LOADED));
584 break;
586 #ifdef HAVE_LCD_BITMAP
587 case FILE_ATTR_FONT:
588 ft_load_font(buf);
589 break;
591 case FILE_ATTR_KBD:
592 splash(0, ID2P(LANG_WAIT));
593 if (!load_kbd(buf))
594 splash(HZ, ID2P(LANG_KEYBOARD_LOADED));
595 set_file(buf, (char *)global_settings.kbd_file, MAX_FILENAME);
596 break;
597 #endif
599 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
600 /* firmware file */
601 case FILE_ATTR_MOD:
602 splash(0, ID2P(LANG_WAIT));
603 rolo_load(buf);
604 break;
605 #endif
607 /* plugin file */
608 case FILE_ATTR_ROCK:
609 case FILE_ATTR_LUA:
611 char *plugin = buf, *argument = NULL, lua_path[MAX_PATH];
612 int ret;
614 if ((file->attr & FILE_ATTR_MASK) == FILE_ATTR_LUA) {
615 snprintf(lua_path, sizeof(lua_path)-1, "%s/lua.rock", VIEWERS_DIR); /* Use a #define here ? */
616 plugin = lua_path;
617 argument = buf;
620 if (global_settings.party_mode && audio_status()) {
621 splash(HZ, ID2P(LANG_PARTY_MODE));
622 break;
624 ret = plugin_load(plugin, argument);
625 switch (ret)
627 case PLUGIN_GOTO_WPS:
628 play = true;
629 break;
630 case PLUGIN_USB_CONNECTED:
631 if(*c->dirfilter > NUM_FILTER_MODES)
632 /* leave sub-browsers after usb, doing
633 otherwise might be confusing to the user */
634 rc = GO_TO_ROOT;
635 else
636 rc = GO_TO_FILEBROWSER;
637 break;
639 case PLUGIN_ERROR:
640 case PLUGIN_OK:
642 default:
643 break;
645 break;
647 case FILE_ATTR_CUE:
648 display_cuesheet_content(buf);
649 break;
651 default:
653 const char* plugin;
655 if (global_settings.party_mode && audio_status()) {
656 splash(HZ, ID2P(LANG_PARTY_MODE));
657 break;
660 plugin = filetype_get_plugin(file);
661 if (plugin)
663 switch (plugin_load(plugin,buf))
665 case PLUGIN_USB_CONNECTED:
666 rc = GO_TO_FILEBROWSER;
667 break;
668 case PLUGIN_GOTO_WPS:
669 rc = GO_TO_WPS;
670 break;
672 case PLUGIN_OK:
673 case PLUGIN_ERROR:
675 default:
676 break;
679 break;
683 if ( play ) {
684 /* the resume_index must always be the index in the
685 shuffled list in case shuffle is enabled */
686 global_status.resume_index = start_index;
687 global_status.resume_offset = 0;
688 status_save();
689 rc = GO_TO_WPS;
691 else {
692 if (*c->dirfilter > NUM_FILTER_MODES &&
693 *c->dirfilter != SHOW_CFG &&
694 *c->dirfilter != SHOW_FONT &&
695 *c->dirfilter != SHOW_PLUGINS)
697 rc = GO_TO_ROOT;
701 return rc;
704 int ft_exit(struct tree_context* c)
706 extern char lastfile[]; /* from tree.c */
707 char buf[MAX_PATH];
708 int rc = 0;
709 bool exit_func = false;
711 int i = strlen(c->currdir);
712 if (i>1) {
713 while (c->currdir[i-1]!='/')
714 i--;
715 strcpy(buf,&c->currdir[i]);
716 if (i==1)
717 c->currdir[i]=0;
718 else
719 c->currdir[i-1]=0;
721 if (*c->dirfilter > NUM_FILTER_MODES && c->dirlevel < 1)
722 exit_func = true;
724 c->dirlevel--;
725 if ( c->dirlevel < MAX_DIR_LEVELS )
726 c->selected_item=c->selected_item_history[c->dirlevel];
727 else
728 c->selected_item=0;
730 /* if undefined position */
731 if (c->selected_item == -1)
732 strcpy(lastfile, buf);
734 else
736 if (*c->dirfilter > NUM_FILTER_MODES && c->dirlevel < 1)
737 exit_func = true;
740 if (exit_func)
741 rc = 3;
743 return rc;