/[LeafOK_CVS]/lbbs/include/section_list.h
ViewVC logotype

Annotation of /lbbs/include/section_list.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.37 - (hide annotations)
Thu Nov 20 03:38:49 2025 UTC (3 months, 3 weeks ago) by sysadm
Branch: MAIN
Changes since 1.36: +1 -1 lines
Content type: text/x-chdr
Use POSIX shared object instead of SysV shared segment in section_list

1 sysadm 1.32 /* SPDX-License-Identifier: GPL-3.0-or-later */
2     /*
3     * section_list
4     * - data models and basic operations of section and article
5     *
6 sysadm 1.33 * Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com>
7 sysadm 1.32 */
8 sysadm 1.1
9 sysadm 1.19 #ifndef _SECTION_LIST_H_
10     #define _SECTION_LIST_H_
11    
12 sysadm 1.22 #include "bbs.h"
13 sysadm 1.1 #include "common.h"
14 sysadm 1.24 #include "menu.h"
15 sysadm 1.15 #include <time.h>
16 sysadm 1.1
17 sysadm 1.34 enum section_list_constant_t
18     {
19     BBS_article_title_max_len = 160,
20 sysadm 1.36 #ifdef __CYGWIN__
21 sysadm 1.35 BBS_article_limit_per_section = 10000,
22     #else
23 sysadm 1.34 BBS_article_limit_per_section = 50000,
24 sysadm 1.35 #endif
25 sysadm 1.34 BBS_article_limit_per_page = 20,
26 sysadm 1.1
27 sysadm 1.34 BBS_ontop_article_limit_per_section = 10,
28 sysadm 1.23
29 sysadm 1.34 BBS_article_count_per_block = 1000,
30     };
31 sysadm 1.1
32     struct article_t
33     {
34     int32_t aid;
35     int32_t tid;
36 sysadm 1.10 int32_t sid;
37 sysadm 1.1 int32_t cid;
38     int32_t uid;
39 sysadm 1.5 struct article_t *p_prior; // prior article
40     struct article_t *p_next; // next article
41     struct article_t *p_topic_prior; // same topic
42     struct article_t *p_topic_next; // same topic
43 sysadm 1.1 int8_t visible;
44     int8_t excerption;
45     int8_t ontop;
46     int8_t lock;
47 sysadm 1.18 int8_t transship;
48 sysadm 1.1 char username[BBS_username_max_len + 1];
49     char nickname[BBS_nickname_max_len + 1];
50     char title[BBS_article_title_max_len + 1];
51 sysadm 1.15 time_t sub_dt;
52 sysadm 1.1 };
53     typedef struct article_t ARTICLE;
54    
55 sysadm 1.5 struct section_list_t
56 sysadm 1.1 {
57     int32_t sid;
58 sysadm 1.13 int32_t class_id;
59     int8_t enable;
60 sysadm 1.1 char sname[BBS_section_name_max_len + 1];
61     char stitle[BBS_section_title_max_len + 1];
62 sysadm 1.20 char master_list[(BBS_username_max_len + 1) * 3 + 1];
63 sysadm 1.13 int read_user_level;
64     int write_user_level;
65 sysadm 1.1 int32_t article_count;
66 sysadm 1.6 int32_t topic_count;
67     int32_t visible_article_count;
68     int32_t visible_topic_count;
69 sysadm 1.4 ARTICLE *p_article_head;
70     ARTICLE *p_article_tail;
71 sysadm 1.5 ARTICLE *p_page_first_article[BBS_article_limit_per_section / BBS_article_limit_per_page];
72     int32_t page_count;
73 sysadm 1.6 int32_t last_page_visible_article_count;
74 sysadm 1.23 ARTICLE *p_ontop_articles[BBS_ontop_article_limit_per_section];
75     int32_t ontop_article_count;
76 sysadm 1.24 MENU_SET ex_menu_set;
77     time_t ex_menu_tm;
78 sysadm 1.1 };
79 sysadm 1.5 typedef struct section_list_t SECTION_LIST;
80 sysadm 1.1
81 sysadm 1.26 struct section_list_pool_t
82     {
83 sysadm 1.37 size_t shm_size;
84 sysadm 1.26 SECTION_LIST sections[BBS_max_section];
85     int section_count;
86     int semid;
87     TRIE_NODE *p_trie_dict_section_by_name;
88     TRIE_NODE *p_trie_dict_section_by_sid;
89     };
90     typedef struct section_list_pool_t SECTION_LIST_POOL;
91    
92     extern SECTION_LIST_POOL *p_section_list_pool;
93    
94 sysadm 1.34 // article_block_count * BBS_article_count_per_block should be
95 sysadm 1.5 // no less than BBS_article_limit_per_section * BBS_max_section,
96     // in order to allocate enough memory for blocks
97     extern int article_block_init(const char *filename, int block_count);
98     extern void article_block_cleanup(void);
99 sysadm 1.16
100     extern int set_article_block_shm_readonly(void);
101     extern int detach_article_block_shm(void);
102    
103 sysadm 1.5 extern int article_block_reset(void);
104    
105     extern ARTICLE *article_block_find_by_aid(int32_t aid);
106     extern ARTICLE *article_block_find_by_index(int index);
107    
108 sysadm 1.15 extern int32_t article_block_last_aid(void);
109 sysadm 1.17 extern int article_block_article_count(void);
110 sysadm 1.15
111 sysadm 1.10 extern int article_count_of_topic(int32_t aid);
112    
113 sysadm 1.12 extern int section_list_init(const char *filename);
114     extern void section_list_cleanup(void);
115 sysadm 1.9
116 sysadm 1.16 extern int set_section_list_shm_readonly(void);
117     extern int detach_section_list_shm(void);
118    
119 sysadm 1.21 extern SECTION_LIST *section_list_create(int32_t sid, const char *sname, const char *stitle, const char *master_list);
120 sysadm 1.29 extern int section_list_update(SECTION_LIST *p_section, const char *sname, const char *stitle, const char *master_list);
121 sysadm 1.5 extern void section_list_reset_articles(SECTION_LIST *p_section);
122 sysadm 1.28 extern SECTION_LIST *section_list_find_by_name(const char *sname);
123     extern SECTION_LIST *section_list_find_by_sid(int32_t sid);
124 sysadm 1.11 extern int get_section_index(SECTION_LIST *p_section);
125 sysadm 1.31
126     // sname could be NULL, or pointer to char[] in size >= sizeof(SECTION_LIST.sname)
127     // stitle could be NULL, or pointer to char[] in size >= sizeof(SECTION_LIST.stitle)
128     // master_list could be NULL, or pointer to char[] in size >= sizeof(SECTION_LIST.master_list)
129 sysadm 1.30 extern int get_section_info(SECTION_LIST *p_section, char *sname, char *stitle, char *master_list);
130 sysadm 1.1
131 sysadm 1.5 extern int section_list_append_article(SECTION_LIST *p_section, const ARTICLE *p_article_src);
132     extern int section_list_set_article_visible(SECTION_LIST *p_section, int32_t aid, int8_t visible);
133 sysadm 1.7
134 sysadm 1.23 extern int section_list_update_article_ontop(SECTION_LIST *p_section, ARTICLE *p_article);
135     extern int section_list_page_count_with_ontop(SECTION_LIST *p_section);
136     extern int section_list_page_article_count_with_ontop(SECTION_LIST *p_section, int32_t page_id);
137    
138 sysadm 1.7 // *p_page, *p_offset will be set as page / offset of the article with aid in *p_section (including both visible and invisible articles)
139     // *pp_next will be set as pointer to the next article of the article with aid
140     // *pp_next will be set as head article of the section if the article with aid locates at the tail of the section
141 sysadm 1.8 extern ARTICLE *section_list_find_article_with_offset(SECTION_LIST *p_section, int32_t aid, int32_t *p_page, int32_t *p_offset, ARTICLE **pp_next);
142 sysadm 1.7
143 sysadm 1.6 extern int section_list_calculate_page(SECTION_LIST *p_section, int32_t start_aid);
144 sysadm 1.7 extern int section_list_move_topic(SECTION_LIST *p_section_src, SECTION_LIST *p_section_dest, int32_t aid);
145 sysadm 1.11
146     extern int section_list_try_rd_lock(SECTION_LIST *p_section, int wait_sec);
147     extern int section_list_try_rw_lock(SECTION_LIST *p_section, int wait_sec);
148     extern int section_list_rd_unlock(SECTION_LIST *p_section);
149     extern int section_list_rw_unlock(SECTION_LIST *p_section);
150 sysadm 1.14 extern int section_list_rd_lock(SECTION_LIST *p_section);
151     extern int section_list_rw_lock(SECTION_LIST *p_section);
152 sysadm 1.19
153     #endif //_SECTION_LIST_H_

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