]> code.citadel.org Git - citadel.git/blobdiff - citadel/housekeeping.c
Changeover to new room structure. See ChangeLog for details.
[citadel.git] / citadel / housekeeping.c
index 159169e6833adc880b6598fcffcfe0918794aeb7..f54e3122f2375ab1907cd7274f863ddcafe7ddc5 100644 (file)
 #include <ctype.h>
 #include <string.h>
 #include <errno.h>
+#include <limits.h>
 #include <pthread.h>
 #include "citadel.h"
 #include "server.h"
-#include "proto.h"
+#include "citserver.h"
+#include "config.h"
+#include "housekeeping.h"
+#include "sysdep_decls.h"
+#include "room_ops.h"
 
 /*
  * Terminate idle sessions.  This function pounds through the session table
@@ -40,9 +45,9 @@ void terminate_idle_sessions(void) {
 
 
 /*
- * Main housekeeping function.
+ * Main housekeeping function.  This gets run whenever a session terminates.
  */
-void do_housekeeping() {
+void do_housekeeping(void) {
 
        begin_critical_section(S_HOUSEKEEPING);
        /*
@@ -63,3 +68,33 @@ void do_housekeeping() {
        }
 
 
+
+/*
+ * Check (and fix) floor reference counts.  This doesn't need to be done
+ * very often, since the counts should remain correct during normal operation.
+ * NOTE: this function pair should ONLY be called during startup.  It is NOT
+ * thread safe.
+ */
+void check_ref_counts_backend(struct quickroom *qrbuf) {
+       struct floor flbuf;
+
+       lgetfloor(&flbuf, qrbuf->QRfloor);
+       ++flbuf.f_ref_count;
+       flbuf.f_flags = flbuf.f_flags | QR_INUSE;
+       lputfloor(&flbuf, qrbuf->QRfloor);
+       }
+
+void check_ref_counts(void) {
+       struct floor flbuf;
+       int a;
+
+       for (a=0; a<MAXFLOORS; ++a) {
+               lgetfloor(&flbuf, a);
+               flbuf.f_ref_count = 0;
+               flbuf.f_flags = flbuf.f_flags & ~QR_INUSE;
+               lputfloor(&flbuf, a);
+               }
+
+       ForEachRoom(check_ref_counts_backend);
+       }       
+