X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ovsdb%2Flog.c;h=f0926c0e6d976c138ffe3b16867323f7e47514a4;hb=6910a6e6f25f7fe7adfd93c8405671e72d4d156b;hp=6d07aca01e65adfb10824b7f72e984dd1affa2e1;hpb=7446f1480bb27ccb63feab066d901cc940d52462;p=sliver-openvswitch.git diff --git a/ovsdb/log.c b/ovsdb/log.c index 6d07aca01..f0926c0e6 100644 --- a/ovsdb/log.c +++ b/ovsdb/log.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010 Nicira Networks +/* Copyright (c) 2009, 2010, 2011 Nicira Networks * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,6 +22,7 @@ #include #include #include +#include #include #include "json.h" @@ -29,18 +30,20 @@ #include "ovsdb.h" #include "ovsdb-error.h" #include "sha1.h" +#include "socket-util.h" #include "transaction.h" #include "util.h" - -#define THIS_MODULE VLM_ovsdb_log #include "vlog.h" +VLOG_DEFINE_THIS_MODULE(ovsdb_log); + enum ovsdb_log_mode { OVSDB_LOG_READ, OVSDB_LOG_WRITE }; struct ovsdb_log { + off_t prev_offset; off_t offset; char *name; struct lockfile *lockfile; @@ -106,17 +109,7 @@ ovsdb_log_open(const char *name, enum ovsdb_log_open_mode open_mode, if (!fstat(fd, &s) && s.st_size == 0) { /* It's (probably) a new file so fsync() its parent directory to ensure * that its directory entry is committed to disk. */ - char *dir = dir_name(name); - int dirfd = open(dir, O_RDONLY); - if (dirfd >= 0) { - if (fsync(dirfd) && errno != EINVAL) { - VLOG_ERR("%s: fsync failed (%s)", dir, strerror(errno)); - } - close(dirfd); - } else { - VLOG_ERR("%s: open failed (%s)", dir, strerror(errno)); - } - free(dir); + fsync_parent_dir(name); } stream = fdopen(fd, open_mode == OVSDB_LOG_READ_ONLY ? "rb" : "w+b"); @@ -129,6 +122,7 @@ ovsdb_log_open(const char *name, enum ovsdb_log_open_mode open_mode, file->name = xstrdup(name); file->lockfile = lockfile; file->stream = stream; + file->prev_offset = 0; file->offset = 0; file->read_error = NULL; file->write_error = NULL; @@ -292,9 +286,10 @@ ovsdb_log_read(struct ovsdb_log *file, struct json **jsonp) goto error; } + file->prev_offset = file->offset; file->offset = data_offset + data_length; *jsonp = json; - return 0; + return NULL; error: file->read_error = ovsdb_error_clone(error); @@ -302,6 +297,22 @@ error: return error; } +/* Causes the log record read by the previous call to ovsdb_log_read() to be + * effectively discarded. The next call to ovsdb_log_write() will overwrite + * that previously read record. + * + * Calling this function more than once has no additional effect. + * + * This function is useful when ovsdb_log_read() successfully reads a record + * but that record does not make sense at a higher level (e.g. it specifies an + * invalid transaction). */ +void +ovsdb_log_unread(struct ovsdb_log *file) +{ + assert(file->mode == OVSDB_LOG_READ); + file->offset = file->prev_offset; +} + struct ovsdb_error * ovsdb_log_write(struct ovsdb_log *file, struct json *json) { @@ -361,7 +372,7 @@ ovsdb_log_write(struct ovsdb_log *file, struct json *json) file->offset += strlen(header) + length; free(json_string); - return 0; + return NULL; error: file->write_error = ovsdb_error_clone(error); @@ -375,6 +386,14 @@ ovsdb_log_commit(struct ovsdb_log *file) if (fsync(fileno(file->stream))) { return ovsdb_io_error(errno, "%s: fsync failed", file->name); } - return 0; + return NULL; } +/* Returns the current offset into the file backing 'log', in bytes. This + * reflects the number of bytes that have been read or written in the file. If + * the whole file has been read, this is the file size. */ +off_t +ovsdb_log_get_offset(const struct ovsdb_log *log) +{ + return log->offset; +}