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

Diff of /lbbs/src/common.c

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

Revision 1.15 by sysadm, Tue May 6 05:31:26 2025 UTC Revision 1.24 by sysadm, Tue May 27 03:25:02 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17    #define _POSIX_C_SOURCE 200112L
18    
19  #include "common.h"  #include "common.h"
20  #include "log.h"  #include "log.h"
21  #include "menu.h"  #include "menu.h"
22  #include <string.h>  #include <string.h>
23  #include <time.h>  #include <time.h>
24  #include <sys/types.h>  #include <sys/types.h>
 #include <sys/wait.h>  
25    
26  // Version information  // Version information
27  char app_version[256] = "LBBS-devel version 1.0";  char app_version[256] = "LBBS-devel version 1.0";
28    
29    // File loader
30    const char *data_files_load_startup[] = {
31            DATA_WELCOME,
32            DATA_REGISTER,
33            DATA_GOODBYE,
34            DATA_LICENSE,
35            DATA_COPYRIGHT,
36            DATA_LOGIN_ERROR,
37            DATA_ACTIVE_BOARD,
38            DATA_READ_HELP,
39            VAR_BBS_TOP};
40    int data_files_load_startup_count = 9; // Count of data_files_load_startup[]
41    
42    const char *data_files_load_timeval[] = {
43            VAR_BBS_TOP};
44    int data_files_load_timeval_count = 1; // Count of data_files_load_timeval[]
45    
46  // Global declaration for sockets  // Global declaration for sockets
47  int socket_server;  int socket_server;
48  int socket_client;  int socket_client;
# Line 34  int port_server; Line 52  int port_server;
52  int port_client;  int port_client;
53    
54  // Global declaration for system  // Global declaration for system
55  int SYS_exit;  volatile int SYS_server_exit = 0;
56  int SYS_child_process_count;  volatile int SYS_child_process_count = 0;
57    volatile int SYS_child_exit = 0;
58    volatile int SYS_menu_reload = 0;
59    volatile int SYS_data_file_reload = 0;
60    volatile int SYS_section_list_reload = 0;
61    
62  // Common function  static const char *weekday[] = {
63  const char *str_space(char *string, int length)          "天", "一", "二", "三", "四", "五", "六"};
 {  
         int i;  
         for (i = 0; i < length; i++)  
         {  
                 string[i] = ' ';  
         }  
         string[length] = '\0';  
         return string;  
 }  
64    
65    // Common function
66  const char *get_time_str(char *s, size_t len)  const char *get_time_str(char *s, size_t len)
67  {  {
68          time_t curtime = time(NULL);          time_t curtime;
69          struct tm *loctime;          struct tm local_tm;
         loctime = localtime(&curtime);  
70    
71          size_t j = strftime(s, len, "%Y年%m月%d日%H:%M:%S ", loctime);          time(&curtime);
72            localtime_r(&curtime, &local_tm);
73            size_t j = strftime(s, len, "%Y年%m月%d日%H:%M:%S 星期", &local_tm);
74    
75          if (j == 0)          if (j == 0 || j + strlen(weekday[local_tm.tm_wday]) + 1 > len)
76          {          {
77                  return NULL;                  return NULL;
78          }          }
79    
80          switch (loctime->tm_wday)          strncat(s, weekday[local_tm.tm_wday], len - 1 - j);
         {  
         case 0:  
                 strncat(s, "星期天", len - j);  
                 break;  
         case 1:  
                 strncat(s, "星期一", len - j);  
                 break;  
         case 2:  
                 strncat(s, "星期二", len - j);  
                 break;  
         case 3:  
                 strncat(s, "星期三", len - j);  
                 break;  
         case 4:  
                 strncat(s, "星期四", len - j);  
                 break;  
         case 5:  
                 strncat(s, "星期五", len - j);  
                 break;  
         case 6:  
                 strncat(s, "星期六", len - j);  
                 break;  
         }  
81    
82          return s;          return s;
83  }  }
84    
85  void reload_bbs_menu(int i)  void sig_hup_handler(int i)
86    {
87            SYS_menu_reload = 1;
88            SYS_data_file_reload = 1;
89            SYS_section_list_reload = 1;
90    }
91    
92    void sig_term_handler(int i)
93  {  {
94          if (reload_menu(&bbs_menu) < 0)          SYS_server_exit = 1;
                 log_error("Reload menu failed\n");  
         else  
                 log_std("Reload menu successfully\n");  
95  }  }
96    
97  void system_exit(int i)  void sig_chld_handler(int i)
98  {  {
99          SYS_exit = 1;          SYS_child_exit = 1;
100  }  }
101    
102  void child_exit(int i)  const char *ip_mask(char *s, int level, char mask)
103  {  {
104          int pid;          char *p = s;
105    
106          pid = wait(0);          if (level <= 0)
107            {
108                    return s;
109            }
110            if (level > 4)
111            {
112                    level = 4;
113            }
114    
115          if (pid > 0)          for (int i = 0; i < 4 - level; i++)
116          {          {
117                  SYS_child_process_count--;                  p = strchr(p, '.');
118                  log_std("Child process (%d) exited\n", pid);                  if (p == NULL)
119                    {
120                            return s;
121                    }
122                    p++;
123          }          }
124    
125            for (int i = 0; i < level; i++)
126            {
127                    *p = mask;
128                    p++;
129                    if (i < level - 1)
130                    {
131                            *p = '.';
132                            p++;
133                    }
134            }
135            *p = '\0';
136    
137            return s;
138  }  }


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

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