/[LeafOK_CVS]/lbbs/src/menu_proc.c
ViewVC logotype

Diff of /lbbs/src/menu_proc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.1 by sysadm, Fri May 6 15:50:23 2005 UTC Revision 1.25 by sysadm, Mon Jun 16 14:30:44 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2                            menu_proc.c  -  description                                                    menu_proc.c  -  description
3                               -------------------                                                           -------------------
4      begin                : Fri May 6 2005          Copyright            : (C) 2004-2025 by Leaflet
5      copyright            : (C) 2005 by Leaflet          Email                : leaflet@leafok.com
     email                : leaflet@leafok.com  
6   ***************************************************************************/   ***************************************************************************/
7    
8  /***************************************************************************  /***************************************************************************
9   *                                                                         *   *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
11   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
12   *   the Free Software Foundation; either version 2 of the License, or     *   *   the Free Software Foundation; either version 3 of the License, or     *
13   *   (at your option) any later version.                                   *   *   (at your option) any later version.                                   *
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17    #define _POSIX_C_SOURCE 200809L
18    
19  #include "bbs.h"  #include "bbs.h"
20  #include "bbs_cmd.h"  #include "bbs_cmd.h"
21  #include "common.h"  #include "common.h"
22    #include "log.h"
23  #include "io.h"  #include "io.h"
24    #include "screen.h"
25    #include "menu.h"
26    #include "user_priv.h"
27    #include "section_list_display.h"
28  #include <dlfcn.h>  #include <dlfcn.h>
29  #include <time.h>  #include <errno.h>
30    #include <signal.h>
31  #include <string.h>  #include <string.h>
32    #include <time.h>
33    #include <unistd.h>
34    #include <sys/types.h>
35    
36    int list_section(void *param)
37    {
38            section_list_display(param);
39    
40            return REDRAW;
41    }
42    
43    int exec_mbem(void *param)
44    {
45            void *hdll;
46            int (*func)();
47            char *c, *s;
48            char buf[FILE_PATH_LEN];
49    
50            strncpy(buf, (const char *)param, sizeof(buf) - 1);
51            buf[sizeof(buf) - 1] = '\0';
52    
53            s = strstr(buf, "@mod:");
54            if (s)
55            {
56                    c = strstr(s + 5, "#");
57                    if (c)
58                    {
59                            *c = 0;
60                            c++;
61                    }
62    
63                    hdll = dlopen(s + 5, RTLD_LAZY);
64    
65                    if (hdll)
66                    {
67                            char *error;
68    
69                            if ((func = dlsym(hdll, c ? c : "mod_main")) != NULL)
70                                    func();
71                            else if ((error = dlerror()) != NULL)
72                            {
73                                    clearscr();
74                                    prints("%s\r\n", error);
75                                    press_any_key();
76                            }
77                            dlclose(hdll);
78                    }
79                    else
80                    {
81                            clearscr();
82                            prints("加载库文件 [%s] 失败!!\r\n", s + 5);
83                            prints("失败原因:%s\r\n", dlerror());
84                            press_any_key();
85                    }
86            }
87    
88            return REDRAW;
89    }
90    
91    int exit_bbs(void *param)
92    {
93            return EXITBBS;
94    }
95    
96    int license(void *param)
97    {
98            display_file(DATA_LICENSE, 0);
99    
100            return REDRAW;
101    }
102    
103    int copyright(void *param)
104    {
105            display_file(DATA_COPYRIGHT, 1);
106    
107            return REDRAW;
108    }
109    
110    int reload_bbs_conf(void *param)
111    {
112            clearscr();
113    
114            if (kill(getppid(), SIGHUP) < 0)
115            {
116                    log_error("Send SIGHUP signal failed (%d)\n", errno);
117    
118                    prints("发送指令失败\r\n");
119            }
120            else
121            {
122                    prints("已发送指令\r\n");
123            }
124    
125            press_any_key();
126    
127            return REDRAW;
128    }
129    
130    int shutdown_bbs(void *param)
131    {
132            log_common("Notify main process to exit\n");
133    
134            if (kill(getppid(), SIGTERM) < 0)
135            {
136                    log_error("Send SIGTERM signal failed (%d)\n", errno);
137            }
138    
139            return REDRAW;
140    }
141    
142  int  int favour_section_filter(void *param)
 exec_mbem(const char *str)  
143  {  {
144      void *hdll;          MENU_ITEM *p_menu_item = param;
     int (*func) ();  
     char *c,*s;  
     char buf[1024];  
   
     strcpy(buf, str);  
     s = strstr(buf, "@mod:");  
     if (s) {  
         c = strstr(s + 5, "#");  
         if (c) {  
             *c = 0;  
             c++;  
         }  
   
         hdll = dlopen (s + 5, RTLD_LAZY);  
   
         if (hdll) {  
             char *error;  
   
             if ((func = dlsym (hdll, c ? c : "mod_main")) != NULL)  
                 func ();  
             else if ((error = dlerror ()) != NULL) {  
                 clearscr ();  
                 prints ("%s\n", error);  
                 press_any_key ();  
             }  
             dlclose (hdll);  
         } else {  
             clearscr ();  
             prints ("加载库文件 [%s] 失败!!\n\n", s + 5);  
             prints ("失败原因:%s", dlerror());  
             press_any_key ();  
         }  
     }  
   
         return REDRAW;  
 }  
   
 int  
 exitbbs (const char *s)  
 {  
         return EXITBBS;  
 }  
   
 int  
 license (const char *s)  
 {  
         char temp[256];  
           
     strcpy (temp, app_home_dir);  
     strcat (temp, "data/license.txt");  
     display_file_ex (temp, 0, 1);  
   
         return REDRAW;  
 }  
   
 int  
 copyright (const char *s)  
 {  
         char temp[256];  
           
     strcpy (temp, app_home_dir);  
     strcat (temp, "data/copyright.txt");  
     display_file_ex (temp, 0, 1);  
145    
146          return REDRAW;          return (is_favor(&BBS_priv, p_menu_item->priv) && checklevel2(&BBS_priv, p_menu_item->level));
147  }  }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1