diff options
author | Saravanakumar Arumugam <sarumuga@redhat.com> | 2015-04-29 17:33:43 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-05-08 04:52:51 -0700 |
commit | df919238505a74a9d89b308bbc6d01b797140439 (patch) | |
tree | 1e9c0a06f75df8f22217670d9954f24392c5f936 /xlators/features/changelog/lib/src | |
parent | 9c21c5a632ba22a6f46d037bd4fa4d825b24d07f (diff) |
features/changelog: Avoid creation of empty changelogs
An empty changelog when rolled over gets unlinked and indexed with
a modified path-name in htime file. The modification is "changelog"
not "CHANGELOG" in basename of the empty changelog file.
Change-Id: I77fd0b48b5c33c245418f5ac7a9756f08ece24d9
BUG: 1208470
Signed-off-by: Ajeet Jha <ajha@redhat.com>
Signed-off-by: Saravanakumar Arumugam <sarumuga@redhat.com>
Reviewed-on: http://review.gluster.org/9572
Tested-by: NetBSD Build System
Reviewed-by: Aravinda VK <avishwan@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kotresh HR <khiremat@redhat.com>
Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/features/changelog/lib/src')
-rw-r--r-- | xlators/features/changelog/lib/src/gf-history-changelog.c | 45 |
1 files changed, 38 insertions, 7 deletions
diff --git a/xlators/features/changelog/lib/src/gf-history-changelog.c b/xlators/features/changelog/lib/src/gf-history-changelog.c index 50afb3fe0c7..ba312e3b10f 100644 --- a/xlators/features/changelog/lib/src/gf-history-changelog.c +++ b/xlators/features/changelog/lib/src/gf-history-changelog.c @@ -477,6 +477,36 @@ out: return -1; } +/* + * Description: Checks if the changelog path is usable or not, + * which is differenciated by checking for "changelog" + * in the path and not "CHANGELOG". + * + * Returns: + * 1 : Yes, usable ( contains "CHANGELOG" ) + * 0 : No, Not usable ( contains, "changelog") + */ +int +gf_is_changelog_usable (char *cl_path) +{ + int ret = -1; + const char low_c[] = "changelog"; + char *str_ret = NULL; + char *bname = NULL; + + bname = basename (cl_path); + + str_ret = strstr (bname, low_c); + + if (str_ret != NULL) + ret = 0; + else + ret = 1; + + return ret; + +} + void * gf_changelog_consume_wrap (void* data) { @@ -499,15 +529,16 @@ gf_changelog_consume_wrap (void* data) } /* TODO: handle short reads and EOF. */ + if (gf_is_changelog_usable (ccd->changelog) == 1) { - ret = gf_changelog_consume (ccd->this, - ccd->jnl, ccd->changelog, _gf_true); - if (ret) { - gf_log (this->name, GF_LOG_ERROR, - "could not parse changelog: %s", ccd->changelog); - goto out; + ret = gf_changelog_consume (ccd->this, + ccd->jnl, ccd->changelog, _gf_true); + if (ret) { + gf_log (this->name, GF_LOG_ERROR, + "could not parse changelog: %s", ccd->changelog); + goto out; + } } - ccd->retval = 0; out: |