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

Diff of /lbbs/src/section_list.c

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

Revision 1.11 by sysadm, Fri May 23 07:06:57 2025 UTC Revision 1.25 by sysadm, Mon May 26 23:38:11 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17    #define _GNU_SOURCE
18    
19  #include "section_list.h"  #include "section_list.h"
20  #include "log.h"  #include "log.h"
21  #include "trie_dict.h"  #include "trie_dict.h"
# Line 24  Line 26 
26  #include <stdlib.h>  #include <stdlib.h>
27  #include <errno.h>  #include <errno.h>
28  #include <sys/param.h>  #include <sys/param.h>
29    #include <sys/sem.h>
30  #include <sys/shm.h>  #include <sys/shm.h>
31  #include <sys/ipc.h>  #include <sys/ipc.h>
32    
33    #ifdef _SEM_SEMUN_UNDEFINED
34    union semun
35    {
36            int val;                           /* Value for SETVAL */
37            struct semid_ds *buf;  /* Buffer for IPC_STAT, IPC_SET */
38            unsigned short *array; /* Array for GETALL, SETALL */
39            struct seminfo *__buf; /* Buffer for IPC_INFO
40                                                              (Linux-specific) */
41    };
42    #endif // #ifdef _SEM_SEMUN_UNDEFINED
43    
44    #define SECTION_TRY_LOCK_WAIT_TIME 1 // second
45    #define SECTION_TRY_LOCK_TIMES 10
46    
47  #define ARTICLE_BLOCK_PER_SHM 400                 // sizeof(ARTICLE_BLOCK) * ARTICLE_BLOCK_PER_SHM is the size of each shm segment to allocate  #define ARTICLE_BLOCK_PER_SHM 400                 // sizeof(ARTICLE_BLOCK) * ARTICLE_BLOCK_PER_SHM is the size of each shm segment to allocate
48  #define ARTICLE_BLOCK_SHM_COUNT_LIMIT 256 // limited by length (8-bit) of proj_id in ftok(path, proj_id)  #define ARTICLE_BLOCK_SHM_COUNT_LIMIT 200 // limited by length (8-bit) of proj_id in ftok(path, proj_id)
49  #define ARTICLE_BLOCK_PER_POOL (ARTICLE_BLOCK_PER_SHM * ARTICLE_BLOCK_SHM_COUNT_LIMIT)  #define ARTICLE_BLOCK_PER_POOL (ARTICLE_BLOCK_PER_SHM * ARTICLE_BLOCK_SHM_COUNT_LIMIT)
50    
51    #define CALCULATE_PAGE_THRESHOLD 100 // Adjust to tune performance of move topic
52    
53    #define SID_STR_LEN 5 // 32-bit + NULL
54    
55  struct article_block_t  struct article_block_t
56  {  {
57          ARTICLE articles[ARTICLE_PER_BLOCK];          ARTICLE articles[ARTICLE_PER_BLOCK];
58          int32_t article_count;          int article_count;
59          struct article_block_t *p_next_block;          struct article_block_t *p_next_block;
60  };  };
61  typedef struct article_block_t ARTICLE_BLOCK;  typedef struct article_block_t ARTICLE_BLOCK;
62    
 struct article_block_shm_t  
 {  
         int shmid;  
         void *p_shm;  
 };  
 typedef struct article_block_shm_t ARTICLE_BLOCK_SHM;  
   
63  struct article_block_pool_t  struct article_block_pool_t
64  {  {
65          ARTICLE_BLOCK_SHM shm_pool[ARTICLE_BLOCK_SHM_COUNT_LIMIT];          int shmid;
66            struct
67            {
68                    int shmid;
69                    void *p_shm;
70            } shm_pool[ARTICLE_BLOCK_SHM_COUNT_LIMIT];
71          int shm_count;          int shm_count;
72          ARTICLE_BLOCK *p_block_free_list;          ARTICLE_BLOCK *p_block_free_list;
73          ARTICLE_BLOCK *p_block[ARTICLE_BLOCK_PER_POOL];          ARTICLE_BLOCK *p_block[ARTICLE_BLOCK_PER_POOL];
74          int32_t block_count;          int block_count;
75  };  };
76  typedef struct article_block_pool_t ARTICLE_BLOCK_POOL;  typedef struct article_block_pool_t ARTICLE_BLOCK_POOL;
77    
78  static ARTICLE_BLOCK_POOL *p_article_block_pool = NULL;  static ARTICLE_BLOCK_POOL *p_article_block_pool = NULL;
79    
80  static SECTION_LIST *p_section_list_pool = NULL;  struct section_list_pool_t
81  static int section_list_count = 0;  {
82  static TRIE_NODE *p_trie_dict_section_list = NULL;          int shmid;
83            SECTION_LIST sections[BBS_max_section];
84            int section_count;
85            int semid;
86            TRIE_NODE *p_trie_dict_section_by_name;
87            TRIE_NODE *p_trie_dict_section_by_sid;
88    };
89    typedef struct section_list_pool_t SECTION_LIST_POOL;
90    
91    static SECTION_LIST_POOL *p_section_list_pool = NULL;
92    
93  int article_block_init(const char *filename, int block_count)  int article_block_init(const char *filename, int block_count)
94  {  {
# Line 86  int article_block_init(const char *filen Line 114  int article_block_init(const char *filen
114                  return -2;                  return -2;
115          }          }
116    
117          p_article_block_pool = calloc(1, sizeof(ARTICLE_BLOCK_POOL));          // Allocate shared memory
118          if (p_article_block_pool == NULL)          proj_id = ARTICLE_BLOCK_SHM_COUNT_LIMIT; // keep different from proj_id used to create block shm
119            key = ftok(filename, proj_id);
120            if (key == -1)
121          {          {
122                  log_error("calloc(ARTICLE_BLOCK_POOL) OOM\n");                  log_error("ftok(%s, %d) error (%d)\n", filename, proj_id, errno);
123                  return -2;                  return -3;
124          }          }
125    
126          // Allocate shared memory          size = sizeof(ARTICLE_BLOCK_POOL);
127            shmid = shmget(key, size, IPC_CREAT | IPC_EXCL | 0600);
128            if (shmid == -1)
129            {
130                    log_error("shmget(article_block_pool_shm, size = %d) error (%d)\n", size, errno);
131                    return -3;
132            }
133            p_shm = shmat(shmid, NULL, 0);
134            if (p_shm == (void *)-1)
135            {
136                    log_error("shmat(shmid = %d) error (%d)\n", shmid, errno);
137                    return -3;
138            }
139    
140            p_article_block_pool = p_shm;
141            p_article_block_pool->shmid = shmid;
142    
143          p_article_block_pool->shm_count = 0;          p_article_block_pool->shm_count = 0;
144          pp_block_next = &(p_article_block_pool->p_block_free_list);          pp_block_next = &(p_article_block_pool->p_block_free_list);
145    
# Line 102  int article_block_init(const char *filen Line 148  int article_block_init(const char *filen
148                  block_count_in_shm = MIN(block_count, ARTICLE_BLOCK_PER_SHM);                  block_count_in_shm = MIN(block_count, ARTICLE_BLOCK_PER_SHM);
149                  block_count -= block_count_in_shm;                  block_count -= block_count_in_shm;
150    
151                  proj_id = getpid() + p_article_block_pool->shm_count;                  proj_id = p_article_block_pool->shm_count;
152                  key = ftok(filename, proj_id);                  key = ftok(filename, proj_id);
153                  if (key == -1)                  if (key == -1)
154                  {                  {
# Line 111  int article_block_init(const char *filen Line 157  int article_block_init(const char *filen
157                          return -3;                          return -3;
158                  }                  }
159    
160                  size = sizeof(shmid) + sizeof(ARTICLE_BLOCK) * (size_t)block_count_in_shm;                  size = sizeof(ARTICLE_BLOCK) * (size_t)block_count_in_shm;
161                  shmid = shmget(key, size, IPC_CREAT | IPC_EXCL | 0600);                  shmid = shmget(key, size, IPC_CREAT | IPC_EXCL | 0600);
162                  if (shmid == -1)                  if (shmid == -1)
163                  {                  {
# Line 155  int article_block_init(const char *filen Line 201  int article_block_init(const char *filen
201    
202  void article_block_cleanup(void)  void article_block_cleanup(void)
203  {  {
204          if (p_article_block_pool != NULL)          int shmid;
205    
206            if (p_article_block_pool == NULL)
207          {          {
208                  for (int i = 0; i < p_article_block_pool->shm_count; i++)                  return;
209            }
210    
211            for (int i = 0; i < p_article_block_pool->shm_count; i++)
212            {
213                    if (shmdt((p_article_block_pool->shm_pool + i)->p_shm) == -1)
214                  {                  {
215                          if (shmdt((p_article_block_pool->shm_pool + i)->p_shm) == -1)                          log_error("shmdt(shmid = %d) error (%d)\n", (p_article_block_pool->shm_pool + i)->shmid, errno);
216                          {                  }
                                 log_error("shmdt(shmid = %d) error (%d)\n", (p_article_block_pool->shm_pool + i)->shmid, errno);  
                         }  
217    
218                          if (shmctl((p_article_block_pool->shm_pool + i)->shmid, IPC_RMID, NULL) == -1)                  if (shmctl((p_article_block_pool->shm_pool + i)->shmid, IPC_RMID, NULL) == -1)
219                          {                  {
220                                  log_error("shmctl(shmid = %d, IPC_RMID) error (%d)\n", (p_article_block_pool->shm_pool + i)->shmid, errno);                          log_error("shmctl(shmid = %d, IPC_RMID) error (%d)\n", (p_article_block_pool->shm_pool + i)->shmid, errno);
                         }  
221                  }                  }
222            }
223    
224            shmid = p_article_block_pool->shmid;
225    
226            if (shmdt(p_article_block_pool) == -1)
227            {
228                    log_error("shmdt(shmid = %d) error (%d)\n", shmid, errno);
229            }
230    
231                  free(p_article_block_pool);          if (shmctl(shmid, IPC_RMID, NULL) == -1)
232                  p_article_block_pool = NULL;          {
233                    log_error("shmctl(shmid = %d, IPC_RMID) error (%d)\n", shmid, errno);
234          }          }
235    
236            p_article_block_pool = NULL;
237  }  }
238    
239  inline static ARTICLE_BLOCK *pop_free_article_block(void)  inline static ARTICLE_BLOCK *pop_free_article_block(void)
# Line 294  ARTICLE *article_block_find_by_index(int Line 355  ARTICLE *article_block_find_by_index(int
355    
356          if (index < 0 || index / ARTICLE_PER_BLOCK >= p_article_block_pool->block_count)          if (index < 0 || index / ARTICLE_PER_BLOCK >= p_article_block_pool->block_count)
357          {          {
358                  log_error("section_data_find_article_by_index(%d) is out of boundary of block [0, %d)\n", index, p_article_block_pool->block_count);                  log_error("article_block_find_by_index(%d) is out of boundary of block [0, %d)\n", index, p_article_block_pool->block_count);
359                  return NULL;                  return NULL;
360          }          }
361    
# Line 302  ARTICLE *article_block_find_by_index(int Line 363  ARTICLE *article_block_find_by_index(int
363    
364          if (index % ARTICLE_PER_BLOCK >= p_block->article_count)          if (index % ARTICLE_PER_BLOCK >= p_block->article_count)
365          {          {
366                  log_error("section_data_find_article_by_index(%d) is out of boundary of article [0, %d)\n", index, p_block->article_count);                  log_error("article_block_find_by_index(%d) is out of boundary of article [0, %d)\n", index, p_block->article_count);
367                  return NULL;                  return NULL;
368          }          }
369    
370          return (p_block->articles + (index % ARTICLE_PER_BLOCK));          return (p_block->articles + (index % ARTICLE_PER_BLOCK));
371  }  }
372    
373  SECTION_LIST *section_list_create(int32_t sid, const char *sname, const char *stitle, const char *master_name)  extern int section_list_init(const char *filename)
374  {  {
375          SECTION_LIST *p_section;          int semid;
376            int shmid;
377            int proj_id;
378            key_t key;
379            size_t size;
380            void *p_shm;
381            union semun arg;
382            int i;
383    
384          if (p_section_list_pool == NULL)          if (p_section_list_pool != NULL)
385          {          {
386                  p_section_list_pool = calloc(BBS_max_section, sizeof(SECTION_LIST));                  section_list_cleanup();
387                  if (p_section_list_pool == NULL)          }
388                  {  
389                          log_error("calloc(%d SECTION_LIST) OOM\n", BBS_max_section);          proj_id = (int)(time(NULL) % getpid());
390                          return NULL;          key = ftok(filename, proj_id);
391                  }          if (key == -1)
392            {
393                    log_error("ftok(%s, %d) error (%d)\n", filename, proj_id, errno);
394                    return -3;
395            }
396    
397                  section_list_count = 0;          // Allocate shared memory
398            size = sizeof(SECTION_LIST_POOL);
399            shmid = shmget(key, size, IPC_CREAT | IPC_EXCL | 0600);
400            if (shmid == -1)
401            {
402                    log_error("shmget(section_list_pool_shm, size = %d) error (%d)\n", size, errno);
403                    return -3;
404            }
405            p_shm = shmat(shmid, NULL, 0);
406            if (p_shm == (void *)-1)
407            {
408                    log_error("shmat(shmid = %d) error (%d)\n", shmid, errno);
409                    return -3;
410            }
411    
412            p_section_list_pool = p_shm;
413            p_section_list_pool->shmid = shmid;
414            p_section_list_pool->section_count = 0;
415    
416            // Allocate semaphore as section locks
417            size = 2 * (BBS_max_section + 1); // r_sem and w_sem per section, the last pair for all sections
418            semid = semget(key, (int)size, IPC_CREAT | IPC_EXCL | 0600);
419            if (semid == -1)
420            {
421                    log_error("semget(section_list_pool_sem, size = %d) error (%d)\n", size, errno);
422                    return -3;
423          }          }
424    
425          if (p_trie_dict_section_list == NULL)          // Initialize sem value to 0
426            arg.val = 0;
427            for (i = 0; i < size; i++)
428          {          {
429                  p_trie_dict_section_list = trie_dict_create();                  if (semctl(semid, i, SETVAL, arg) == -1)
                 if (p_trie_dict_section_list == NULL)  
430                  {                  {
431                          log_error("trie_dict_create() OOM\n", BBS_max_section);                          log_error("semctl(section_list_pool_sem, SETVAL) error (%d)\n", errno);
432                          return NULL;                          return -3;
433                  }                  }
434          }          }
435    
436          if (section_list_count >= BBS_max_section)          p_section_list_pool->semid = semid;
437    
438            p_section_list_pool->p_trie_dict_section_by_name = trie_dict_create();
439            if (p_section_list_pool->p_trie_dict_section_by_name == NULL)
440            {
441                    log_error("trie_dict_create() OOM\n", BBS_max_section);
442                    return -2;
443            }
444    
445            p_section_list_pool->p_trie_dict_section_by_sid = trie_dict_create();
446            if (p_section_list_pool->p_trie_dict_section_by_sid == NULL)
447            {
448                    log_error("trie_dict_create() OOM\n", BBS_max_section);
449                    return -2;
450            }
451    
452            return 0;
453    }
454    
455    inline static void sid_to_str(int32_t sid, char *p_sid_str)
456    {
457            uint32_t u_sid;
458            int i;
459    
460            u_sid = (uint32_t)sid;
461            for (i = 0; i < SID_STR_LEN - 1; i++)
462            {
463                    p_sid_str[i] = (char)(u_sid % 255 + 1);
464                    u_sid /= 255;
465            }
466            p_sid_str[i] = '\0';
467    }
468    
469    SECTION_LIST *section_list_create(int32_t sid, const char *sname, const char *stitle, const char *master_name)
470    {
471            SECTION_LIST *p_section;
472            char sid_str[SID_STR_LEN];
473    
474            if (p_section_list_pool == NULL)
475            {
476                    log_error("session_list_pool not initialized\n");
477                    return NULL;
478            }
479    
480            if (p_section_list_pool->section_count >= BBS_max_section)
481          {          {
482                  log_error("section_list_count exceed limit %d\n", BBS_max_section);                  log_error("section_count reach limit %d >= %d\n", p_section_list_pool->section_count, BBS_max_section);
483                  return NULL;                  return NULL;
484          }          }
485    
486          p_section = p_section_list_pool + section_list_count;          sid_to_str(sid, sid_str);
487    
488            p_section = p_section_list_pool->sections + p_section_list_pool->section_count;
489    
490          p_section->sid = sid;          p_section->sid = sid;
491    
# Line 354  SECTION_LIST *section_list_create(int32_ Line 498  SECTION_LIST *section_list_create(int32_
498          strncpy(p_section->master_name, master_name, sizeof(p_section->master_name - 1));          strncpy(p_section->master_name, master_name, sizeof(p_section->master_name - 1));
499          p_section->master_name[sizeof(p_section->master_name - 1)] = '\0';          p_section->master_name[sizeof(p_section->master_name - 1)] = '\0';
500    
501          if (trie_dict_set(p_trie_dict_section_list, sname, section_list_count) != 1)          if (trie_dict_set(p_section_list_pool->p_trie_dict_section_by_name, sname, p_section_list_pool->section_count) != 1)
502            {
503                    log_error("trie_dict_set(section, %s, %d) error\n", sname, p_section_list_pool->section_count);
504                    return NULL;
505            }
506    
507            if (trie_dict_set(p_section_list_pool->p_trie_dict_section_by_sid, sid_str, p_section_list_pool->section_count) != 1)
508          {          {
509                  log_error("trie_dict_set(section_data, %s, %d) error\n", sname, section_list_count);                  log_error("trie_dict_set(section, %d, %d) error\n", sid, p_section_list_pool->section_count);
510                  return NULL;                  return NULL;
511          }          }
512    
513          section_list_reset_articles(p_section);          section_list_reset_articles(p_section);
514    
515          section_list_count++;          p_section_list_pool->section_count++;
516    
517          return p_section;          return p_section;
518  }  }
# Line 382  void section_list_reset_articles(SECTION Line 532  void section_list_reset_articles(SECTION
532    
533  void section_list_cleanup(void)  void section_list_cleanup(void)
534  {  {
535          if (p_trie_dict_section_list != NULL)          int shmid;
536    
537            if (p_section_list_pool == NULL)
538            {
539                    return;
540            }
541    
542            if (p_section_list_pool->p_trie_dict_section_by_name != NULL)
543          {          {
544                  trie_dict_destroy(p_trie_dict_section_list);                  trie_dict_destroy(p_section_list_pool->p_trie_dict_section_by_name);
545                  p_trie_dict_section_list = NULL;                  p_section_list_pool->p_trie_dict_section_by_name = NULL;
546            }
547    
548            if (p_section_list_pool->p_trie_dict_section_by_sid != NULL)
549            {
550                    trie_dict_destroy(p_section_list_pool->p_trie_dict_section_by_sid);
551                    p_section_list_pool->p_trie_dict_section_by_sid = NULL;
552          }          }
553    
554          if (p_section_list_pool != NULL)          if (p_section_list_pool != NULL)
555          {          {
556                  free(p_section_list_pool);                  if (semctl(p_section_list_pool->semid, 0, IPC_RMID) == -1)
557                    {
558                            log_error("semctl(semid = %d, IPC_RMID) error (%d)\n", p_section_list_pool->semid, errno);
559                    }
560    
561                    shmid = p_section_list_pool->shmid;
562    
563                    if (shmdt(p_section_list_pool) == -1)
564                    {
565                            log_error("shmdt(shmid = %d) error (%d)\n", shmid, errno);
566                    }
567    
568                    if (shmctl(shmid, IPC_RMID, NULL) == -1)
569                    {
570                            log_error("shmctl(shmid = %d, IPC_RMID) error (%d)\n", shmid, errno);
571                    }
572    
573                  p_section_list_pool = NULL;                  p_section_list_pool = NULL;
574          }          }
   
         section_list_count = 0;  
575  }  }
576    
577  SECTION_LIST *section_list_find_by_name(const char *sname)  SECTION_LIST *section_list_find_by_name(const char *sname)
578  {  {
579          int64_t index;          int64_t index;
580            int ret;
581    
582            if (p_section_list_pool == NULL)
583            {
584                    log_error("section_list not initialized\n");
585                    return NULL;
586            }
587    
588            ret = trie_dict_get(p_section_list_pool->p_trie_dict_section_by_name, sname, &index);
589            if (ret < 0)
590            {
591                    log_error("trie_dict_get(section, %s) error\n", sname);
592                    return NULL;
593            }
594            else if (ret == 0)
595            {
596                    return NULL;
597            }
598    
599            return (p_section_list_pool->sections + index);
600    }
601    
602    SECTION_LIST *section_list_find_by_sid(int32_t sid)
603    {
604            int64_t index;
605            int ret;
606            char sid_str[SID_STR_LEN];
607    
608          if (p_section_list_pool == NULL || p_trie_dict_section_list == NULL)          if (p_section_list_pool == NULL)
609          {          {
610                  log_error("section_list not initialized\n");                  log_error("section_list not initialized\n");
611                  return NULL;                  return NULL;
612          }          }
613    
614          if (trie_dict_get(p_trie_dict_section_list, sname, &index) != 1)          sid_to_str(sid, sid_str);
615    
616            ret = trie_dict_get(p_section_list_pool->p_trie_dict_section_by_sid, sid_str, &index);
617            if (ret < 0)
618            {
619                    log_error("trie_dict_get(section, %d) error\n", sid);
620                    return NULL;
621            }
622            else if (ret == 0)
623          {          {
                 log_error("trie_dict_get(section_data, %s) error\n", sname);  
624                  return NULL;                  return NULL;
625          }          }
626    
627          return (p_section_list_pool + index);          return (p_section_list_pool->sections + index);
628  }  }
629    
630  int section_list_append_article(SECTION_LIST *p_section, const ARTICLE *p_article_src)  int section_list_append_article(SECTION_LIST *p_section, const ARTICLE *p_article_src)
# Line 436  int section_list_append_article(SECTION_ Line 647  int section_list_append_article(SECTION_
647                  return -1;                  return -1;
648          }          }
649    
650            if (p_section->sid != p_article_src->sid)
651            {
652                    log_error("section_list_append_article() error: section sid %d != article sid %d\n", p_section->sid, p_article_src->sid);
653                    return -2;
654            }
655    
656          if (p_section->article_count >= BBS_article_limit_per_section)          if (p_section->article_count >= BBS_article_limit_per_section)
657          {          {
658                  log_error("section_list_append_article() error: article_count reach limit in section %d\n", p_section->sid);                  log_error("section_list_append_article() error: article_count reach limit in section %d\n", p_section->sid);
# Line 468  int section_list_append_article(SECTION_ Line 685  int section_list_append_article(SECTION_
685          // AID of articles should be strictly ascending          // AID of articles should be strictly ascending
686          if (p_article_src->aid <= last_aid)          if (p_article_src->aid <= last_aid)
687          {          {
688                  log_error("section_data_append_article(aid=%d) error: last_aid=%d\n", p_article_src->aid, last_aid);                  log_error("section_list_append_article(aid=%d) error: last_aid=%d\n", p_article_src->aid, last_aid);
689                  return -3;                  return -3;
690          }          }
691    
# Line 566  int section_list_set_article_visible(SEC Line 783  int section_list_set_article_visible(SEC
783                  return -1; // Not found                  return -1; // Not found
784          }          }
785    
786            if (p_section->sid != p_article->sid)
787            {
788                    log_error("section_list_set_article_visible() error: section sid %d != article sid %d\n", p_section->sid, p_article->sid);
789                    return -2;
790            }
791    
792          if (p_article->visible == visible)          if (p_article->visible == visible)
793          {          {
794                  return 0; // Already set                  return 0; // Already set
# Line 732  int section_list_calculate_page(SECTION_ Line 955  int section_list_calculate_page(SECTION_
955    
956          if (start_aid > 0)          if (start_aid > 0)
957          {          {
958                    p_article = article_block_find_by_aid(start_aid);
959                    if (p_article == NULL)
960                    {
961                            return -1; // Not found
962                    }
963    
964                    if (p_section->sid != p_article->sid)
965                    {
966                            log_error("section_list_calculate_page() error: section sid %d != start article sid %d\n", p_section->sid, p_article->sid);
967                            return -2;
968                    }
969    
970                  p_article = section_list_find_article_with_offset(p_section, start_aid, &page, &offset, &p_next);                  p_article = section_list_find_article_with_offset(p_section, start_aid, &page, &offset, &p_next);
971                  if (p_article == NULL)                  if (p_article == NULL)
972                  {                  {
# Line 800  int section_list_calculate_page(SECTION_ Line 1035  int section_list_calculate_page(SECTION_
1035          return 0;          return 0;
1036  }  }
1037    
1038  int section_list_count_of_topic_articles(int32_t aid)  int32_t article_block_last_aid(void)
1039    {
1040            ARTICLE_BLOCK *p_block = p_article_block_pool->p_block[p_article_block_pool->block_count - 1];
1041            int32_t last_aid = p_block->articles[p_block->article_count - 1].aid;
1042    
1043            return last_aid;
1044    }
1045    
1046    int article_count_of_topic(int32_t aid)
1047  {  {
1048          ARTICLE *p_article;          ARTICLE *p_article;
1049          int article_count;          int article_count;
# Line 815  int section_list_count_of_topic_articles Line 1058  int section_list_count_of_topic_articles
1058    
1059          do          do
1060          {          {
1061                    if (p_article->tid != 0 && p_article->tid != aid)
1062                    {
1063                            log_error("article_count_of_topic(%d) error: article %d not linked to the topic\n", aid, p_article->aid);
1064                            break;
1065                    }
1066    
1067                  article_count++;                  article_count++;
1068                  p_article = p_article->p_topic_next;                  p_article = p_article->p_topic_next;
1069          } while (p_article->aid != aid);          } while (p_article->aid != aid);
# Line 831  int section_list_move_topic(SECTION_LIST Line 1080  int section_list_move_topic(SECTION_LIST
1080          int32_t move_article_count;          int32_t move_article_count;
1081          int32_t dest_article_count_old;          int32_t dest_article_count_old;
1082          int32_t last_unaffected_aid_src;          int32_t last_unaffected_aid_src;
1083            int32_t first_inserted_aid_dest;
1084            int move_counter;
1085    
1086          if (p_section_dest == NULL)          if (p_section_dest == NULL)
1087          {          {
# Line 838  int section_list_move_topic(SECTION_LIST Line 1089  int section_list_move_topic(SECTION_LIST
1089                  return -1;                  return -1;
1090          }          }
1091    
1092          if ((p_article = section_list_find_article_with_offset(p_section_src, aid, &page, &offset, &p_next)) == NULL)          if ((p_article = article_block_find_by_aid(aid)) == NULL)
1093            {
1094                    log_error("section_list_move_topic() error: article %d not found in block\n", aid);
1095                    return -2;
1096            }
1097    
1098            if (p_section_src->sid != p_article->sid)
1099          {          {
1100                  log_error("section_list_move_topic() error: article %d not found in section %d\n", aid, p_section_src->sid);                  log_error("section_list_move_topic() error: src section sid %d != article %d sid %d\n",
1101                                      p_section_src->sid, p_article->aid, p_article->sid);
1102                  return -2;                  return -2;
1103          }          }
1104    
# Line 852  int section_list_move_topic(SECTION_LIST Line 1110  int section_list_move_topic(SECTION_LIST
1110    
1111          last_unaffected_aid_src = (p_article == p_section_src->p_article_head ? 0 : p_article->p_prior->aid);          last_unaffected_aid_src = (p_article == p_section_src->p_article_head ? 0 : p_article->p_prior->aid);
1112    
1113          move_article_count = section_list_count_of_topic_articles(aid);          move_article_count = article_count_of_topic(aid);
1114          if (move_article_count <= 0)          if (move_article_count <= 0)
1115          {          {
1116                  log_error("section_list_count_of_topic_articles(aid = %d) <= 0\n", aid);                  log_error("article_count_of_topic(aid = %d) <= 0\n", aid);
1117                  return -2;                  return -2;
1118          }          }
1119    
# Line 867  int section_list_move_topic(SECTION_LIST Line 1125  int section_list_move_topic(SECTION_LIST
1125          }          }
1126    
1127          dest_article_count_old = p_section_dest->article_count;          dest_article_count_old = p_section_dest->article_count;
1128            move_counter = 0;
1129            first_inserted_aid_dest = p_article->aid;
1130    
1131          do          do
1132          {          {
1133                  if (section_list_find_article_with_offset(p_section_dest, p_article->aid, &page, &offset, &p_next) != NULL)                  if (p_section_src->sid != p_article->sid)
1134                  {                  {
1135                          log_error("section_list_move_topic() error: article %d already in section %d\n", p_article->aid, p_section_dest->sid);                          log_error("section_list_move_topic() error: src section sid %d != article %d sid %d\n",
1136                          return -4;                                            p_section_src->sid, p_article->aid, p_article->sid);
1137                            return -2;
1138                  }                  }
1139    
1140                  // Remove from bi-directional article list of src section                  // Remove from bi-directional article list of src section
# Line 894  int section_list_move_topic(SECTION_LIST Line 1155  int section_list_move_topic(SECTION_LIST
1155                  p_article->p_prior->p_next = p_article->p_next;                  p_article->p_prior->p_next = p_article->p_next;
1156                  p_article->p_next->p_prior = p_article->p_prior;                  p_article->p_next->p_prior = p_article->p_prior;
1157    
1158                    // Update sid of article
1159                    p_article->sid = p_section_dest->sid;
1160    
1161                    if (section_list_find_article_with_offset(p_section_dest, p_article->aid, &page, &offset, &p_next) != NULL)
1162                    {
1163                            log_error("section_list_move_topic() error: article %d already in section %d\n", p_article->aid, p_section_dest->sid);
1164                            return -4;
1165                    }
1166    
1167                  // Insert into bi-directional article list of dest section                  // Insert into bi-directional article list of dest section
1168                  if (p_next == NULL) // empty section                  if (p_next == NULL) // empty section
1169                  {                  {
# Line 952  int section_list_move_topic(SECTION_LIST Line 1222  int section_list_move_topic(SECTION_LIST
1222                  }                  }
1223    
1224                  p_article = p_article->p_topic_next;                  p_article = p_article->p_topic_next;
1225    
1226                    move_counter++;
1227                    if (move_counter % CALCULATE_PAGE_THRESHOLD == 0)
1228                    {
1229                            // Re-calculate pages of desc section
1230                            if (section_list_calculate_page(p_section_dest, first_inserted_aid_dest) < 0)
1231                            {
1232                                    log_error("section_list_calculate_page(dest section = %d, aid = %d) error\n",
1233                                                      p_section_dest->sid, first_inserted_aid_dest);
1234                            }
1235    
1236                            first_inserted_aid_dest = p_article->aid;
1237                    }
1238          } while (p_article->aid != aid);          } while (p_article->aid != aid);
1239    
1240          if (p_section_dest->article_count - dest_article_count_old != move_article_count)          if (p_section_dest->article_count - dest_article_count_old != move_article_count)
# Line 960  int section_list_move_topic(SECTION_LIST Line 1243  int section_list_move_topic(SECTION_LIST
1243                                    p_section_dest->article_count - dest_article_count_old, move_article_count);                                    p_section_dest->article_count - dest_article_count_old, move_article_count);
1244          }          }
1245    
1246          // Re-calculate pages of both src and desc sections          // Re-calculate pages of src section
1247          if (section_list_calculate_page(p_section_src, last_unaffected_aid_src) < 0)          if (section_list_calculate_page(p_section_src, last_unaffected_aid_src) < 0)
1248          {          {
1249                  log_error("section_list_calculate_page(section = %d, aid = %d) error at aid = %d\n", p_section_src->sid, last_unaffected_aid_src, aid);                  log_error("section_list_calculate_page(src section = %d, aid = %d) error at aid = %d\n",
1250                                      p_section_src->sid, last_unaffected_aid_src, aid);
1251          }          }
1252          if (section_list_calculate_page(p_section_dest, aid) < 0)  
1253            if (move_counter % CALCULATE_PAGE_THRESHOLD != 0)
1254          {          {
1255                  log_error("section_list_calculate_page(section = %d, aid = %d) error\n", p_section_dest->sid, aid);                  // Re-calculate pages of desc section
1256                    if (section_list_calculate_page(p_section_dest, first_inserted_aid_dest) < 0)
1257                    {
1258                            log_error("section_list_calculate_page(dest section = %d, aid = %d) error\n",
1259                                              p_section_dest->sid, first_inserted_aid_dest);
1260                    }
1261          }          }
1262    
1263          return move_article_count;          return move_article_count;
1264  }  }
1265    
1266    int get_section_index(SECTION_LIST *p_section)
1267    {
1268            int index;
1269    
1270            if (p_section_list_pool == NULL)
1271            {
1272                    log_error("get_section_index() error: uninitialized\n");
1273                    return -1;
1274            }
1275    
1276            if (p_section == NULL)
1277            {
1278                    index = BBS_max_section;
1279            }
1280            else
1281            {
1282                    index = (int)(p_section - p_section_list_pool->sections);
1283                    if (index < 0 || index >= BBS_max_section)
1284                    {
1285                            log_error("get_section_index(%d) error: index out of range\n", index);
1286                            return -2;
1287                    }
1288            }
1289    
1290            return index;
1291    }
1292    
1293    int section_list_try_rd_lock(SECTION_LIST *p_section, int wait_sec)
1294    {
1295            int index;
1296            struct sembuf sops[4];
1297            struct timespec timeout;
1298            int ret;
1299    
1300            index = get_section_index(p_section);
1301            if (index < 0)
1302            {
1303                    return -2;
1304            }
1305    
1306            sops[0].sem_num = (unsigned short)(index * 2 + 1); // w_sem of section index
1307            sops[0].sem_op = 0;                                                                // wait until unlocked
1308            sops[0].sem_flg = 0;
1309    
1310            sops[1].sem_num = (unsigned short)(index * 2); // r_sem of section index
1311            sops[1].sem_op = 1;                                                        // lock
1312            sops[1].sem_flg = SEM_UNDO;                                        // undo on terminate
1313    
1314            // Read lock on any specific section will also acquire single read lock on "all section"
1315            // so that write lock on all section only need to acquire single write on on "all section"
1316            // rather than to acquire multiple write locks on all the available sections.
1317            if (index != BBS_max_section)
1318            {
1319                    sops[2].sem_num = BBS_max_section * 2 + 1; // w_sem of all section
1320                    sops[2].sem_op = 0;                                                // wait until unlocked
1321                    sops[2].sem_flg = 0;
1322    
1323                    sops[3].sem_num = BBS_max_section * 2; // r_sem of all section
1324                    sops[3].sem_op = 1;                                        // lock
1325                    sops[3].sem_flg = SEM_UNDO;                        // undo on terminate
1326            }
1327    
1328            timeout.tv_sec = wait_sec;
1329            timeout.tv_nsec = 0;
1330    
1331            ret = semtimedop(p_section_list_pool->semid, sops, (index == BBS_max_section ? 2 : 4), &timeout);
1332            if (ret == -1 && errno != EAGAIN && errno != EINTR)
1333            {
1334                    log_error("semtimedop(index = %d, lock read) error %d\n", index, errno);
1335            }
1336    
1337            return ret;
1338    }
1339    
1340    int section_list_try_rw_lock(SECTION_LIST *p_section, int wait_sec)
1341    {
1342            int index;
1343            struct sembuf sops[3];
1344            struct timespec timeout;
1345            int ret;
1346    
1347            index = get_section_index(p_section);
1348            if (index < 0)
1349            {
1350                    return -2;
1351            }
1352    
1353            sops[0].sem_num = (unsigned short)(index * 2 + 1); // w_sem of section index
1354            sops[0].sem_op = 0;                                                                // wait until unlocked
1355            sops[0].sem_flg = 0;
1356    
1357            sops[1].sem_num = (unsigned short)(index * 2 + 1); // w_sem of section index
1358            sops[1].sem_op = 1;                                                                // lock
1359            sops[1].sem_flg = SEM_UNDO;                                                // undo on terminate
1360    
1361            sops[2].sem_num = (unsigned short)(index * 2); // r_sem of section index
1362            sops[2].sem_op = 0;                                                        // wait until unlocked
1363            sops[2].sem_flg = 0;
1364    
1365            timeout.tv_sec = wait_sec;
1366            timeout.tv_nsec = 0;
1367    
1368            ret = semtimedop(p_section_list_pool->semid, sops, 3, &timeout);
1369            if (ret == -1 && errno != EAGAIN && errno != EINTR)
1370            {
1371                    log_error("semtimedop(index = %d, lock write) error %d\n", index, errno);
1372            }
1373    
1374            return ret;
1375    }
1376    
1377    int section_list_rd_unlock(SECTION_LIST *p_section)
1378    {
1379            int index;
1380            struct sembuf sops[2];
1381            int ret;
1382    
1383            index = get_section_index(p_section);
1384            if (index < 0)
1385            {
1386                    return -2;
1387            }
1388    
1389            sops[0].sem_num = (unsigned short)(index * 2); // r_sem of section index
1390            sops[0].sem_op = -1;                                               // unlock
1391            sops[0].sem_flg = IPC_NOWAIT | SEM_UNDO;           // no wait
1392    
1393            if (index != BBS_max_section)
1394            {
1395                    sops[1].sem_num = BBS_max_section * 2;   // r_sem of all section
1396                    sops[1].sem_op = -1;                                     // unlock
1397                    sops[1].sem_flg = IPC_NOWAIT | SEM_UNDO; // no wait
1398            }
1399    
1400            ret = semop(p_section_list_pool->semid, sops, (index == BBS_max_section ? 1 : 2));
1401            if (ret == -1 && errno != EAGAIN && errno != EINTR)
1402            {
1403                    log_error("semop(index = %d, unlock read) error %d\n", index, errno);
1404            }
1405    
1406            return ret;
1407    }
1408    
1409    int section_list_rw_unlock(SECTION_LIST *p_section)
1410    {
1411            int index;
1412            struct sembuf sops[1];
1413            int ret;
1414    
1415            index = get_section_index(p_section);
1416            if (index < 0)
1417            {
1418                    return -2;
1419            }
1420    
1421            sops[0].sem_num = (unsigned short)(index * 2 + 1); // w_sem of section index
1422            sops[0].sem_op = -1;                                                       // unlock
1423            sops[0].sem_flg = IPC_NOWAIT | SEM_UNDO;                   // no wait
1424    
1425            ret = semop(p_section_list_pool->semid, sops, 1);
1426            if (ret == -1 && errno != EAGAIN && errno != EINTR)
1427            {
1428                    log_error("semop(index = %d, unlock write) error %d\n", index, errno);
1429            }
1430    
1431            return ret;
1432    }
1433    
1434    int section_list_rd_lock(SECTION_LIST *p_section)
1435    {
1436            int timer = 0;
1437            int sid = (p_section == NULL ? 0 : p_section->sid);
1438            int ret = -1;
1439    
1440            while (!SYS_server_exit)
1441            {
1442                    ret = section_list_try_rd_lock(p_section, SECTION_TRY_LOCK_WAIT_TIME);
1443                    if (ret == 0) // success
1444                    {
1445                            break;
1446                    }
1447                    else if (errno == EAGAIN || errno == EINTR) // retry
1448                    {
1449                            timer++;
1450                            if (timer % SECTION_TRY_LOCK_TIMES == 0)
1451                            {
1452                                    log_error("section_list_rd_lock() tried %d times on section %d\n", sid, timer);
1453                            }
1454                    }
1455                    else // failed
1456                    {
1457                            log_error("section_list_rd_lock() failed on section %d\n", sid);
1458                            break;
1459                    }
1460            }
1461    
1462            return ret;
1463    }
1464    
1465    int section_list_rw_lock(SECTION_LIST *p_section)
1466    {
1467            int timer = 0;
1468            int sid = (p_section == NULL ? 0 : p_section->sid);
1469            int ret = -1;
1470    
1471            while (!SYS_server_exit)
1472            {
1473                    ret = section_list_try_rw_lock(p_section, SECTION_TRY_LOCK_WAIT_TIME);
1474                    if (ret == 0) // success
1475                    {
1476                            break;
1477                    }
1478                    else if (errno == EAGAIN || errno == EINTR) // retry
1479                    {
1480                            timer++;
1481                            if (timer % SECTION_TRY_LOCK_TIMES == 0)
1482                            {
1483                                    log_error("acquire_section_rw_lock() tried %d times on section %d\n", sid, timer);
1484                            }
1485                    }
1486                    else // failed
1487                    {
1488                            log_error("acquire_section_rw_lock() failed on section %d\n", sid);
1489                            break;
1490                    }
1491            }
1492    
1493            return ret;
1494    }


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

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