summaryrefslogtreecommitdiffstats
path: root/xlators/features/changelog/lib/src/gf-history-changelog.c
blob: 4355396a147ff2c15f8127a2a923054ae8f1fefd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
#include <errno.h>
#include <dirent.h>
#include <stddef.h>
#include <sys/types.h>

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <string.h>

#include "globals.h"
#include "glusterfs.h"
#include "logging.h"
#include "syscall.h"

#include "gf-changelog-helpers.h"
#include "gf-changelog-journal.h"

/* from the changelog translator */
#include "changelog-misc.h"
#include "changelog-lib-messages.h"
#include "changelog-mem-types.h"

/**
 * @API
 * gf_history_changelog_done:
 *    Move processed history changelog file from .processing
 *    to .processed
 *
 * ARGUMENTS:
 *    file(IN): path to processed history changelog file in
 *    .processing directory.
 *
 * RETURN VALUE:
 *    0: On success.
 *   -1: On error.
 */
int
gf_history_changelog_done (char *file)
{
        int                     ret               = -1;
        char                   *buffer            = NULL;
        xlator_t               *this              = NULL;
        gf_changelog_journal_t *jnl               = NULL;
        gf_changelog_journal_t *hist_jnl          = NULL;
        char                    to_path[PATH_MAX] = {0,};

        errno = EINVAL;

        this = THIS;
        if (!this)
                goto out;

        jnl = (gf_changelog_journal_t *) GF_CHANGELOG_GET_API_PTR (this);
        if (!jnl)
                goto out;

        hist_jnl = jnl->hist_jnl;
        if (!hist_jnl)
                goto out;

        if (!file || !strlen (file))
                goto out;

        /* make sure 'file' is inside ->jnl_working_dir */
        buffer = realpath (file, NULL);
        if (!buffer)
                goto out;

        if (strncmp (hist_jnl->jnl_working_dir,
                     buffer, strlen (hist_jnl->jnl_working_dir)))
                goto out;

        (void) snprintf (to_path, PATH_MAX, "%s%s",
                         hist_jnl->jnl_processed_dir, basename (buffer));
        gf_msg_debug (this->name, 0,
                      "moving %s to processed directory", file);
        ret = sys_rename (buffer, to_path);
        if (ret) {
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_RENAME_FAILED,
                        "cannot move %s to %s",
                        file, to_path);
                goto out;
        }

        ret = 0;

 out:
        if (buffer)
                free (buffer); /* allocated by realpath() */
        return ret;
}

/**
 * @API
 *  gf_history_changelog_start_fresh:
 *     For a set of changelogs, start from the beginning.
 *     It will truncates the history tracker fd.
 *
 *  RETURN VALUES:
 *     0: On success.
 *    -1: On error.
 */
int
gf_history_changelog_start_fresh ()
{
        xlator_t               *this     = NULL;
        gf_changelog_journal_t *jnl      = NULL;
        gf_changelog_journal_t *hist_jnl = NULL;

        this = THIS;
        if (!this)
                goto out;

        errno = EINVAL;

        jnl = (gf_changelog_journal_t *) GF_CHANGELOG_GET_API_PTR (this);
        if (!jnl)
                goto out;

        hist_jnl = jnl->hist_jnl;
        if (!hist_jnl)
                goto out;

        if (gf_ftruncate (hist_jnl->jnl_fd, 0))
                goto out;

        return 0;

 out:
        return -1;
}

/**
 * @API
 *  gf_history_changelog_next_change:
 *     Return the next history changelog file entry. Zero means all
 *     history chanelogs are consumed.
 *
 *  ARGUMENTS:
 *     bufptr(OUT): Path to unprocessed history changelog file
 *                  from tracker file.
 *     maxlen(IN): Usually PATH_MAX.
 *
 *  RETURN VALUES:
 *     size: On success.
 *     -1  : On error.
 */
ssize_t
gf_history_changelog_next_change (char *bufptr, size_t maxlen)
{
        ssize_t                 size             = -1;
        int                     tracker_fd       = 0;
        xlator_t               *this             = NULL;
        gf_changelog_journal_t *jnl              = NULL;
        gf_changelog_journal_t *hist_jnl         = NULL;
        char                    buffer[PATH_MAX] = {0,};

        if (maxlen > PATH_MAX) {
                errno = ENAMETOOLONG;
                goto out;
        }

        errno = EINVAL;

        this = THIS;
        if (!this)
                goto out;

        jnl = (gf_changelog_journal_t *) GF_CHANGELOG_GET_API_PTR (this);
        if (!jnl)
                goto out;

        hist_jnl = jnl->hist_jnl;
        if (!hist_jnl)
                goto out;

        tracker_fd = hist_jnl->jnl_fd;

        size = gf_readline (tracker_fd, buffer, maxlen);
        if (size < 0) {
                size = -1;
                goto out;
        }

        if (size == 0)
                goto out;

        memcpy (bufptr, buffer, size - 1);
        bufptr[size - 1] = '\0';

out:
        return size;
}

/**
 * @API
 *  gf_history_changelog_scan:
 *     Scan and generate a list of change entries.
 *     Calling this api multiple times (without calling gf_changlog_done())
 *     would result new changelogs(s) being refreshed in the tracker file.
 *     This call also acts as a cancellation point for the consumer.
 *
 *  RETURN VALUES:
 *      +ve integer : success and keep scanning.(count of changelogs)
 *      0           : success and done scanning.
 *     -1           : error.
 *
 *  NOTE: After first 0 return call_get_next change for once more time
 *        to empty the tracker
 *
 */
ssize_t
gf_history_changelog_scan ()
{
        int                     tracker_fd   = 0;
        size_t                  off          = 0;
        xlator_t               *this         = NULL;
        size_t                  nr_entries   = 0;
        gf_changelog_journal_t *jnl          = NULL;
        gf_changelog_journal_t *hist_jnl     = NULL;
        struct dirent          *entry        = NULL;
        struct dirent           scratch[2]   = {{0,},};
        char buffer[PATH_MAX]                = {0,};
        static int              is_last_scan;

        this = THIS;
        if (!this)
                goto out;

        jnl = (gf_changelog_journal_t *) GF_CHANGELOG_GET_API_PTR (this);
        if (!jnl)
                goto out;
        if (JNL_IS_API_DISCONNECTED (jnl)) {
                errno = ENOTCONN;
                goto out;
        }

        hist_jnl = jnl->hist_jnl;
        if (!hist_jnl)
                goto out;

 retry:
        if (is_last_scan == 1)
                return 0;
        if (hist_jnl->hist_done == 0)
                is_last_scan = 1;

        errno = EINVAL;
        if (hist_jnl->hist_done == -1)
                goto out;

        tracker_fd = hist_jnl->jnl_fd;

        if (gf_ftruncate (tracker_fd, 0))
                goto out;

        rewinddir (hist_jnl->jnl_dir);

        for (;;) {
                errno = 0;
                entry = sys_readdir (hist_jnl->jnl_dir, scratch);
                if (!entry || errno != 0)
                        break;

                if (strcmp (basename (entry->d_name), ".") == 0 ||
                    strcmp (basename (entry->d_name), "..") == 0)
                        continue;

                nr_entries++;

                GF_CHANGELOG_FILL_BUFFER (hist_jnl->jnl_processing_dir,
                                          buffer, off,
                                          strlen (hist_jnl->jnl_processing_dir));
                GF_CHANGELOG_FILL_BUFFER (entry->d_name, buffer,
                                          off, strlen (entry->d_name));
                GF_CHANGELOG_FILL_BUFFER ("\n", buffer, off, 1);

                if (gf_changelog_write (tracker_fd, buffer, off) != off) {
                        gf_msg (this->name, GF_LOG_ERROR, 0,
                                CHANGELOG_LIB_MSG_WRITE_FAILED,
                                "error writing changelog filename"
                                " to tracker file");
                        break;
                }
                off = 0;
        }

        gf_msg_debug (this->name, 0,
                      "hist_done %d, is_last_scan: %d",
                      hist_jnl->hist_done, is_last_scan);

        if (!entry) {
                if (gf_lseek (tracker_fd, 0, SEEK_SET) != -1) {
                        if (nr_entries > 0)
                                return nr_entries;
                        else {
                                sleep(1);
                                goto retry;
                        }
                }
        }
 out:
        return -1;
}

/*
 * Gets timestamp value at the changelog path at index.
 * Returns 0 on success(updates given time-stamp), -1 on failure.
 */
int
gf_history_get_timestamp (int fd, int index, int len,
                          unsigned long *ts)
{
        xlator_t        *this             = NULL;
        int             n_read            = -1;
        char            path_buf[PATH_MAX]= {0,};
        char            *iter             = path_buf;
        size_t          offset            = index * (len+1);
        unsigned long   value             = 0;
        int             ret               = 0;

        this = THIS;
        if (!this) {
                return -1;
        }

        n_read = sys_pread (fd, path_buf, len, offset);
        if (n_read < 0 ) {
                ret = -1;
                gf_msg (this->name, GF_LOG_ERROR, errno,
                         CHANGELOG_LIB_MSG_READ_ERROR,
                         "could not read from htime file");
                goto out;
        }
        iter+= len - TIMESTAMP_LENGTH;
        sscanf (iter, "%lu",&value);
out:
        if(ret == 0)
                *ts = value;
        return ret;
}

/*
 * Function to ensure correctness of search
 * Checks whether @value is there next to @target_index or not
 */
int
gf_history_check ( int fd, int target_index, unsigned long value, int len)
{
        int             ret = 0;
        unsigned long   ts1 = 0;
        unsigned long   ts2 = 0;

        if (target_index == 0) {
                ret = gf_history_get_timestamp (fd, target_index, len, &ts1);
                if (ret == -1)
                        goto out;
                if (value <= ts1)
                        goto out;
                else {
                        ret = -1;
                        goto out;
                }
        }

        ret = gf_history_get_timestamp (fd, target_index, len, &ts1);
        if (ret ==-1)
                goto out;
        ret = gf_history_get_timestamp (fd, target_index -1, len, &ts2);
        if (ret ==-1)
                goto out;

        if ( (value <= ts1) && (value > ts2) ) {
                goto out;
        }
        else
                ret = -1;
out:
        return ret;
}

/*
 * This is a "binary search" based search function which checks neighbours
 * for in-range availability of the value to be searched and provides the
 * index at which the changelog file nearest to the requested timestamp(value)
 * can be read from.
 *
 * Actual offset can be calculated as (index* (len+1) ).
 * "1" is because the changelog paths are null terminated.
 *
 * @path        : Htime file to search in
 * @value       : time stamp to search
 * @from        : start index to search
 * @to          : end index to search
 * @len         : length of fixes length strings separated by null
 */

int
gf_history_b_search (int fd, unsigned long value,
                     unsigned long from, unsigned long to, int len)
{
        int             m_index   = -1;
        unsigned long   cur_value = 0;
        unsigned long   ts1       = 0;
        int             ret       = 0;

        m_index = (from + to)/2;

        if ( (to - from) <=1 ) {
                /* either one or 2 changelogs left */
                if ( to != from ) {
                        /* check if value is less or greater than to
                         * return accordingly
                         */
                        ret = gf_history_get_timestamp (fd, from, len, &ts1);
                        if (ret ==-1)
                                goto out;
                        if ( ts1 >= value) {
                                /* actually compatision should be
                                 * exactly == but considering
                                 *
                                 * case of only 2 changelogs in htime file
                                 */
                                return from;
                        }
                        else
                                return to;
                }
                else
                        return to;
        }

        ret = gf_history_get_timestamp (fd, m_index, len, &cur_value);
        if (ret == -1)
                goto out;
        if (cur_value == value) {
                return m_index;
        }
        else if (value > cur_value) {
                ret = gf_history_get_timestamp (fd, m_index+1, len, &cur_value);
                if (ret == -1)
                        goto out;
                if (value < cur_value)
                        return m_index + 1;
                else
                        return gf_history_b_search (fd, value,
                                                    m_index+1, to, len);
        }
        else {
                if (m_index ==0) {
                       /*  we are sure that values exists
                        *  in this htime file
                        */
                        return 0;
                }
                else {
                        ret = gf_history_get_timestamp (fd, m_index-1, len,
                                                        &cur_value);
                        if (ret == -1)
                                goto out;
                        if (value > cur_value) {
                                return m_index;
                        }
                        else
                                return gf_history_b_search (fd, value, from,
                                                            m_index-1, len);
                }
        }
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)
{
        int                          ret   = -1;
        ssize_t                      nread = 0;
        xlator_t                    *this  = NULL;
        gf_changelog_consume_data_t *ccd   = NULL;

        ccd = (gf_changelog_consume_data_t *) data;
        this = ccd->this;

        ccd->retval = -1;

        nread = sys_pread (ccd->fd, ccd->changelog, PATH_MAX, ccd->offset);
        if (nread < 0) {
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_READ_ERROR,
                        "cannot read from history metadata file");
                goto out;
        }

        /* 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_msg (this->name, GF_LOG_ERROR,
                                0, CHANGELOG_LIB_MSG_PARSE_ERROR,
                                "could not parse changelog: %s",
                                ccd->changelog);
                        goto out;
                }
        }
        ccd->retval = 0;

 out:
        return NULL;
}

/**
 * "gf_history_consume" is a worker function for history.
 * parses and moves changelogs files from index "from"
 * to index "to" in open htime file whose fd is "fd".
 */

#define MAX_PARALLELS  10

void *
gf_history_consume (void * data)
{
        xlator_t                    *this              = NULL;
        gf_changelog_journal_t              *jnl               = NULL;
        gf_changelog_journal_t              *hist_jnl          = NULL;
        int                          ret               = 0;
        int                          iter              = 0;
        int                          fd                = -1;
        int                          from              = -1;
        int                          to                = -1;
        int                          len               = -1;
        int                          n_parallel        = 0;
        int                          n_envoked         = 0;
        gf_boolean_t                 publish           = _gf_true;
        pthread_t th_id[MAX_PARALLELS]                 = {0,};
        gf_changelog_history_data_t *hist_data         = NULL;
        gf_changelog_consume_data_t ccd[MAX_PARALLELS] = {{0},};
        gf_changelog_consume_data_t *curr              = NULL;
        char thread_name[GF_THREAD_NAMEMAX]            = {0,};

        hist_data = (gf_changelog_history_data_t *) data;
        if (hist_data == NULL) {
                ret = -1;
                goto out;
        }

        fd         = hist_data->htime_fd;
        from       = hist_data->from;
        to         = hist_data->to;
        len        = hist_data->len;
        n_parallel = hist_data->n_parallel;

        THIS = hist_data->this;
        this = hist_data->this;
        if (!this) {
                ret = -1;
                goto out;
        }

        jnl = (gf_changelog_journal_t *) GF_CHANGELOG_GET_API_PTR (this);
        if (!jnl) {
                ret = -1;
                goto out;
        }

        hist_jnl = jnl->hist_jnl;
        if (!hist_jnl) {
                ret = -1;
                goto out;
        }

        while (from <= to) {
                n_envoked = 0;

                for (iter = 0 ; (iter < n_parallel) && (from <= to); iter++) {
                        curr = &ccd[iter];

                        curr->this   = this;
                        curr->jnl    = hist_jnl;
                        curr->fd     = fd;
                        curr->offset = from * (len + 1);

                        curr->retval = 0;
                        memset (curr->changelog, '\0', PATH_MAX);
                        snprintf (thread_name, sizeof(thread_name), "%s%d",
                                  "clogc", iter + 1);

                        ret = gf_thread_create (&th_id[iter], NULL,
                                                gf_changelog_consume_wrap, curr,
                                                thread_name);
                        if (ret) {
                                gf_msg (this->name, GF_LOG_ERROR, ret,
                                        CHANGELOG_LIB_MSG_THREAD_CREATION_FAILED
                                        , "could not create consume-thread");
                                ret = -1;
                                goto sync;
                        } else
                                n_envoked++;

                        from++;
                }

        sync:
                for (iter = 0; iter < n_envoked; iter++) {
                        ret = pthread_join (th_id[iter], NULL);
                        if (ret) {
                                publish = _gf_false;
                                gf_msg (this->name, GF_LOG_ERROR, ret,
                                        CHANGELOG_LIB_MSG_PTHREAD_JOIN_FAILED,
                                        "pthread_join() error");
                                /* try to join the rest */
                                continue;
                        }

                        if (publish == _gf_false)
                                continue;

                        curr = &ccd[iter];
                        if (ccd->retval) {
                                publish = _gf_false;
                                gf_msg (this->name, GF_LOG_ERROR,
                                        0, CHANGELOG_LIB_MSG_PARSE_ERROR,
                                        "parsing error, ceased publishing...");
                                continue;
                        }

                        ret = gf_changelog_publish (curr->this,
                                                    curr->jnl, curr->changelog);
                        if (ret) {
                                publish = _gf_false;
                                gf_msg (this->name, GF_LOG_ERROR, 0,
                                        CHANGELOG_LIB_MSG_PUBLISH_ERROR,
                                        "publish error, ceased publishing...");
                        }
                }
        }

       /* informing "parsing done". */
        hist_jnl->hist_done = (publish == _gf_true) ? 0 : -1;

out:
        if (fd != -1)
                (void) sys_close (fd);
        GF_FREE (hist_data);
        return NULL;
}

/**
 * @API
 * gf_history_changelog() : Get/parse historical changelogs and get them ready
 * for consumption.
 *
 * Arguments:
 * @changelog_dir : Directory location from where history changelogs are
 * supposed to be consumed.
 * @start: Unix timestamp FROM where changelogs should be consumed.
 * @end: Unix timestamp TO where changelogsshould be consumed.
 * @n_parallel : degree of parallelism while changelog parsing.
 * @actual_end : the end time till where changelogs are available.
 *
 * Return:
 * Returns <timestamp> on success, the last time till where changelogs are
 *      available.
 * Returns -1 on failure(error).
 */

/**
 * Extract timestamp range from a historical metadata file
 * Returns:
 *    0 : Success ({min,max}_ts with the appropriate values)
 *   -1 : Failure
 *   -2 : Ignore this metadata file and process next
 */
int
gf_changelog_extract_min_max (const char *dname, const char *htime_dir,
                              int *fd, unsigned long *total,
                              unsigned long *min_ts, unsigned long *max_ts)
{
        int          ret          = -1;
        xlator_t    *this         = NULL;
        char htime_file[PATH_MAX] = {0,};
        struct stat  stbuf        = {0,};
        char        *iter         = NULL;
        char x_value[30]          = {0,};

        this = THIS;

        snprintf (htime_file, PATH_MAX, "%s/%s", htime_dir, dname);

        iter = (htime_file + strlen (htime_file) - TIMESTAMP_LENGTH);
        sscanf (iter ,"%lu",min_ts);

        ret = sys_stat (htime_file, &stbuf);
        if (ret) {
                ret = -1;
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_HTIME_ERROR,
                        "stat() failed on htime file %s",
                        htime_file);
                goto out;
        }

        /* ignore everything except regular files */
        if (!S_ISREG (stbuf.st_mode)) {
                ret = -2;
                goto out;
        }

        *fd = open (htime_file, O_RDONLY);
        if (*fd < 0) {
                ret = -1;
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_HTIME_ERROR,
                        "open() failed for htime %s",
                        htime_file);
                goto out;
        }

        /* Looks good, extract max timestamp */
        ret = sys_fgetxattr (*fd, HTIME_KEY, x_value, sizeof (x_value));
        if (ret < 0) {
                ret = -1;
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_GET_XATTR_FAILED,
                        "error extracting max timstamp from htime file"
                        " %s", htime_file);
                goto out;
        }

        sscanf (x_value, "%lu:%lu", max_ts, total);
        gf_msg (this->name, GF_LOG_INFO, 0,
                CHANGELOG_LIB_MSG_TOTAL_LOG_INFO,
                "MIN: %lu, MAX: %lu, TOTAL CHANGELOGS: %lu",
                *min_ts, *max_ts, *total);

        ret = 0;

 out:
        return ret;
}

int
gf_history_changelog (char* changelog_dir, unsigned long start,
                      unsigned long end, int n_parallel,
                      unsigned long *actual_end)
{
        int                             ret                     = 0;
        int                             len                     = -1;
        int                             fd                      = -1;
        int                             n_read                  = -1;
        unsigned long                   min_ts                  = 0;
        unsigned long                   max_ts                  = 0;
        unsigned long                   end2                    = 0;
        unsigned long                   ts1                     = 0;
        unsigned long                   ts2                     = 0;
        unsigned long                   to                      = 0;
        unsigned long                   from                    = 0;
        unsigned long                   total_changelog         = 0;
        xlator_t                       *this                    = NULL;
        gf_changelog_journal_t         *jnl                     = NULL;
        gf_changelog_journal_t         *hist_jnl                = NULL;
        gf_changelog_history_data_t    *hist_data               = NULL;
        DIR                            *dirp                    = NULL;
        struct dirent                  *entry                   = NULL;
        struct dirent                   scratch[2]              = {{0,},};
        pthread_t                       consume_th              = 0;
        char                            htime_dir[PATH_MAX]     = {0,};
        char                            buffer[PATH_MAX]        = {0,};

        pthread_attr_t attr;

        ret = pthread_attr_init (&attr);
        if (ret != 0) {
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_PTHREAD_ERROR,
                        "Pthread init failed");
                return -1;
        }

        this = THIS;
        if (!this) {
                ret = -1;
                goto out;
        }

        jnl = (gf_changelog_journal_t *) GF_CHANGELOG_GET_API_PTR (this);
        if (!jnl) {
                ret = -1;
                goto out;
        }

        hist_jnl = (gf_changelog_journal_t *) jnl->hist_jnl;
        if (!hist_jnl) {
                ret = -1;
                goto out;
        }

        /* basic sanity check */
        if (start > end || n_parallel <= 0) {
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_HIST_FAILED, "Sanity check failed. "
                        "START - %lu END - %lu THREAD_COUNT - %d",
                        start, end, n_parallel);
                ret = -1;
                goto out;
        }

        /* cap parallelism count */
        if (n_parallel > MAX_PARALLELS)
                n_parallel = MAX_PARALLELS;

        CHANGELOG_FILL_HTIME_DIR (changelog_dir, htime_dir);

        dirp = sys_opendir (htime_dir);
        if (dirp == NULL) {
                gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_HTIME_ERROR,
                        "open dir on htime failed : %s",
                        htime_dir);
                ret = -1;
                goto out;
        }

        for (;;) {

                errno = 0;

                entry = sys_readdir (dirp, scratch);

                if (!entry || errno != 0)
                        break;

                ret = gf_changelog_extract_min_max (entry->d_name, htime_dir,
                                                    &fd, &total_changelog,
                                                    &min_ts, &max_ts);
                if (ret) {
                        if (-2 == ret)
                                continue;
                        goto out;
                }

                if (start >= min_ts && start < max_ts) {
                        /**
                         * TODO: handle short reads later...
                         */
                        n_read = sys_read (fd, buffer, PATH_MAX);
                        if (n_read < 0) {
                                ret = -1;
                                gf_msg (this->name, GF_LOG_ERROR, errno,
                                        CHANGELOG_LIB_MSG_READ_ERROR,
                                        "unable to read htime file");
                                goto out;
                        }

                        len = strlen (buffer);

                        /**
                         * search @start in the htime file returning it's index
                         * (@from)
                         */
                        from = gf_history_b_search (fd, start, 0,
                                                   total_changelog - 1, len);

                        /* ensuring correctness of gf_b_search */
                        if (gf_history_check (fd, from, start, len) != 0) {
                                ret = -1;
                                gf_msg (this->name, GF_LOG_ERROR, 0,
                                        CHANGELOG_LIB_MSG_GET_TIME_ERROR,
                                        "wrong result for start: %lu idx: %lu",
                                        start, from);
                                goto out;
                        }

                        end2 = (end <= max_ts) ? end : max_ts;

                        /**
                         * search @end2 in htime file returning it's index (@to)
                         */
                        to = gf_history_b_search (fd, end2,
                                                  0, total_changelog - 1, len);

                        if (gf_history_check (fd, to, end2, len) != 0) {
                                ret = -1;
                                gf_msg (this->name, GF_LOG_ERROR, 0,
                                        CHANGELOG_LIB_MSG_GET_TIME_ERROR,
                                        "wrong result for start: %lu idx: %lu",
                                        end2, to);
                                goto out;
                        }

                        ret = gf_history_get_timestamp (fd, from, len, &ts1);
                        if (ret == -1)
                                goto out;

                        ret = gf_history_get_timestamp (fd, to, len, &ts2);
                        if (ret == -1)
                                goto out;

                        gf_msg (this->name, GF_LOG_INFO, 0,
                                CHANGELOG_LIB_MSG_TOTAL_LOG_INFO,
                                "FINAL: from: %lu, to: %lu, changes: %lu",
                                ts1, ts2, (to - from + 1));

                        hist_data =  GF_CALLOC (1,
                                     sizeof (gf_changelog_history_data_t),
                                     gf_changelog_mt_history_data_t);

                        hist_data->htime_fd   = fd;
                        hist_data->from       = from;
                        hist_data->to         = to;
                        hist_data->len        = len;
                        hist_data->n_parallel = n_parallel;
                        hist_data->this       = this;

                        ret = pthread_attr_setdetachstate
                                (&attr, PTHREAD_CREATE_DETACHED);
                        if (ret != 0) {
                                gf_msg (this->name, GF_LOG_ERROR, ret,
                                        CHANGELOG_LIB_MSG_PTHREAD_ERROR,
                                        "unable to sets the detach"
                                        " state attribute");
                                ret = -1;
                                goto out;
                        }

                        /* spawn a thread for background parsing & publishing */
                        ret = gf_thread_create (&consume_th, &attr,
                                                gf_history_consume, hist_data,
                                                "cloghcon");
                        if (ret) {
                                gf_msg (this->name, GF_LOG_ERROR, ret,
                                        CHANGELOG_LIB_MSG_THREAD_CREATION_FAILED
                                        , "creation of consume parent-thread"
                                        " failed.");
                                ret = -1;
                                goto out;
                        }

                        goto out;

                } else {/* end of range check */
                        gf_msg (this->name, GF_LOG_ERROR, errno,
                        CHANGELOG_LIB_MSG_HIST_FAILED, "Requested changelog "
                        "range is not available. START - %lu CHLOG_MIN - %lu "
                        "CHLOG_MAX - %lu", start, min_ts, max_ts);
                        ret = -2;
                        goto out;
                }
        } /* end of readdir() */

        if (!from || !to)
                ret = -1;

out:
        if (dirp != NULL)
                (void) sys_closedir (dirp);

        if (ret < 0) {
                if (fd != -1)
                        (void) sys_close (fd);
                GF_FREE (hist_data);
                (void) pthread_attr_destroy (&attr);

                return ret;
        }

        hist_jnl->hist_done = 1;
        *actual_end = ts2;

        return ret;
}