diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-08 22:46:30 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-08 22:46:30 +0000 |
commit | 27c6e9c76ecf069521b0a561241cf362134a3eef (patch) | |
tree | 86141edd6e15204c8101776bb711195e862a59ef /src/modules | |
parent | 4692b17bafec83325b01735bd67fc3005b463cb4 (diff) |
Code to write xline.db.. reading is not yet handled.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8668 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_xline_db.cpp | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/modules/m_xline_db.cpp b/src/modules/m_xline_db.cpp index 881c0dd2f..af011173a 100644 --- a/src/modules/m_xline_db.cpp +++ b/src/modules/m_xline_db.cpp @@ -45,6 +45,8 @@ class ModuleXLineDB : public Module ServerInstance->WriteOpers("%s %s %s %lu %lu :%s", line->type.c_str(), line->Displayable(), ServerInstance->Config->ServerName, line->set_time, line->duration, line->reason); } + + WriteDatabase(); } /** Called whenever an xline is deleted. @@ -62,6 +64,70 @@ ServerInstance->Config->ServerName, line->set_time, line->duration, line->reason break; } } + + WriteDatabase(); + } + + bool WriteDatabase() + { + FILE *f; + + /* + * We need to perform an atomic write so as not to fuck things up. + * So, let's write to a temporary file, flush and sync the FD, then rename the file.. + * Technically, that means that this can block, but I have *never* seen that. + * -- w00t + */ + ServerInstance->Log(DEBUG, "xlinedb: Opening temporary database"); + f = fopen("xline.db.new", "w"); + if (!f) + { + ServerInstance->Log(DEBUG, "xlinedb: Cannot create database! %s (%d)", strerror(errno), errno); + ServerInstance->SNO->WriteToSnoMask('x', "database: cannot create new db: %s (%d)", strerror(errno), errno); + return false; + } + + ServerInstance->Log(DEBUG, "xlinedb: Opened. Writing.."); + + /* + * Now, much as I hate writing semi-unportable formats, additional + * xline types may not have a conf tag, so let's just write them. + * In addition, let's use a file version, so we can maintain some + * semblance of backwards compatibility for reading on startup.. + * -- w00t + */ + fprintf(f, "VERSION 1\n"); + + // Now, let's write. + XLine *line; + for (std::vector<XLine *>::iterator i = xlines.begin(); i != xlines.end(); i++) + { + line = (*i); + fprintf(f, "%s %s %s %lu %lu :%s\n", line->type.c_str(), line->Displayable(), + ServerInstance->Config->ServerName, line->set_time, line->duration, line->reason); + } + + ServerInstance->Log(DEBUG, "xlinedb: Finished writing XLines. Checking for error.."); + + int write_error = 0; + write_error = ferror(f); + write_error |= fclose(f); + if (write_error) + { + ServerInstance->Log(DEBUG, "xlinedb: Cannot write to new database! %s (%d)", strerror(errno), errno); + ServerInstance->SNO->WriteToSnoMask('x', "database: cannot write to new db: %s (%d)", strerror(errno), errno); + return false; + } + + // Use rename to move temporary to new db - this is guarenteed not to fuck up, even in case of a crash. + if (rename("xline.db.new", "xline.db") < 0) + { + ServerInstance->Log(DEBUG, "xlinedb: Cannot move new to old database! %s (%d)", strerror(errno), errno); + ServerInstance->SNO->WriteToSnoMask('x', "database: cannot replace old with new db: %s (%d)", strerror(errno), errno); + return false; + } + + return true; } virtual Version GetVersion() |