~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff-delta.c

  • Committer: Martin Pool
  • Date: 2011-03-28 01:28:09 UTC
  • mto: (5425.4.19 220464-stale-locks)
  • mto: This revision was merged to the branch mainline in revision 5970.
  • Revision ID: mbp@canonical.com-20110328012809-frw003r09tcrxkiz
Represent lock held info as an object, not just a dict

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * This code was greatly inspired by parts of LibXDiff from Davide Libenzi
5
5
 * http://www.xmailserver.org/xdiff-lib.html
6
6
 *
7
 
 * Rewritten for GIT by Nicolas Pitre <nico@fluxnic.net>, (C) 2005-2007
 
7
 * Rewritten for GIT by Nicolas Pitre <nico@cam.org>, (C) 2005-2007
8
8
 * Adapted for Bazaar by John Arbash Meinel <john@arbash-meinel.com> (C) 2009
9
9
 *
10
10
 * This program is free software; you can redistribute it and/or modify
280
280
        if (fit_in_old) {
281
281
            // fprintf(stderr, "Fit all %d entries into old index\n",
282
282
            //                 copied_count);
283
 
            /*
284
 
             * No need to allocate a new buffer, but return old_index ptr so
285
 
             * callers can distinguish this from an OOM failure.
286
 
             */
287
 
            return old_index;
 
283
            /* No need to allocate a new buffer */
 
284
            return NULL;
288
285
        } else {
289
286
            // fprintf(stderr, "Fit only %d entries into old index,"
290
287
            //                 " reallocating\n", copied_count);
373
370
}
374
371
 
375
372
 
376
 
delta_result
 
373
struct delta_index *
377
374
create_delta_index(const struct source_info *src,
378
 
                   struct delta_index *old,
379
 
                   struct delta_index **fresh,
380
 
                   int max_bytes_to_index)
 
375
                   struct delta_index *old)
381
376
{
382
377
    unsigned int i, hsize, hmask, num_entries, prev_val, *hash_count;
383
 
    unsigned int total_num_entries, stride, max_entries;
 
378
    unsigned int total_num_entries;
384
379
    const unsigned char *data, *buffer;
385
380
    struct delta_index *index;
386
381
    struct unpacked_index_entry *entry, **hash;
388
383
    unsigned long memsize;
389
384
 
390
385
    if (!src->buf || !src->size)
391
 
        return DELTA_SOURCE_EMPTY;
 
386
        return NULL;
392
387
    buffer = src->buf;
393
388
 
394
389
    /* Determine index hash size.  Note that indexing skips the
395
 
       first byte so we subtract 1 to get the edge cases right.
396
 
     */
397
 
    stride = RABIN_WINDOW;
 
390
       first byte to allow for optimizing the Rabin's polynomial
 
391
       initialization in create_delta(). */
398
392
    num_entries = (src->size - 1)  / RABIN_WINDOW;
399
 
    if (max_bytes_to_index > 0) {
400
 
        max_entries = (unsigned int) (max_bytes_to_index / RABIN_WINDOW);
401
 
        if (num_entries > max_entries) {
402
 
            /* Limit the max number of matching entries. This reduces the 'best'
403
 
             * possible match, but means we don't consume all of ram.
404
 
             */
405
 
            num_entries = max_entries;
406
 
            stride = (src->size - 1) / num_entries;
407
 
        }
408
 
    }
409
393
    if (old != NULL)
410
394
        total_num_entries = num_entries + old->num_entries;
411
395
    else
424
408
          sizeof(*entry) * total_num_entries;
425
409
    mem = malloc(memsize);
426
410
    if (!mem)
427
 
        return DELTA_OUT_OF_MEMORY;
 
411
        return NULL;
428
412
    hash = mem;
429
413
    mem = hash + hsize;
430
414
    entry = mem;
435
419
    hash_count = calloc(hsize, sizeof(*hash_count));
436
420
    if (!hash_count) {
437
421
        free(hash);
438
 
        return DELTA_OUT_OF_MEMORY;
 
422
        return NULL;
439
423
    }
440
424
 
441
425
    /* then populate the index for the new data */
442
426
    prev_val = ~0;
443
 
    for (data = buffer + num_entries * stride - RABIN_WINDOW;
 
427
    for (data = buffer + num_entries * RABIN_WINDOW - RABIN_WINDOW;
444
428
         data >= buffer;
445
 
         data -= stride) {
 
429
         data -= RABIN_WINDOW) {
446
430
        unsigned int val = 0;
447
431
        for (i = 1; i <= RABIN_WINDOW; i++)
448
432
            val = ((val << 8) | data[i]) ^ T[val >> RABIN_SHIFT];
466
450
    total_num_entries = limit_hash_buckets(hash, hash_count, hsize,
467
451
                                           total_num_entries);
468
452
    free(hash_count);
 
453
    if (old) {
 
454
        old->last_src = src;
 
455
    }
469
456
    index = pack_delta_index(hash, hsize, total_num_entries, old);
470
457
    free(hash);
471
 
    /* pack_delta_index only returns NULL on malloc failure */
472
458
    if (!index) {
473
 
        return DELTA_OUT_OF_MEMORY;
 
459
        return NULL;
474
460
    }
475
461
    index->last_src = src;
476
 
    *fresh = index;
477
 
    return DELTA_OK;
 
462
    return index;
478
463
}
479
464
 
480
465
/* Take some entries, and put them into a custom hash.
488
473
                       unsigned int hsize)
489
474
{
490
475
    unsigned int hash_offset, hmask, memsize;
491
 
    struct index_entry *entry;
 
476
    struct index_entry *entry, *last_entry;
492
477
    struct index_entry_linked_list *out_entry, **hash;
493
478
    void *mem;
494
479
 
508
493
    /* We know that entries are in the order we want in the output, but they
509
494
     * aren't "grouped" by hash bucket yet.
510
495
     */
 
496
    last_entry = entries + num_entries;
511
497
    for (entry = entries + num_entries - 1; entry >= entries; --entry) {
512
498
        hash_offset = entry->val & hmask;
513
499
        out_entry->p_entry = entry;
532
518
    unsigned int i, j, hsize, hmask, total_num_entries;
533
519
    struct delta_index *index;
534
520
    struct index_entry *entry, *packed_entry, **packed_hash;
535
 
    struct index_entry null_entry = {0};
 
521
    struct index_entry *last_entry, null_entry = {0};
536
522
    void *mem;
537
523
    unsigned long memsize;
538
524
    struct index_entry_linked_list *unpacked_entry, **mini_hash;
583
569
        free(index);
584
570
        return NULL;
585
571
    }
 
572
    last_entry = entries + num_entries;
586
573
    for (i = 0; i < hsize; i++) {
587
574
        /*
588
575
         * Coalesce all entries belonging in one hash bucket
692
679
    }
693
680
}
694
681
 
695
 
delta_result
 
682
struct delta_index *
696
683
create_delta_index_from_delta(const struct source_info *src,
697
 
                              struct delta_index *old_index,
698
 
                              struct delta_index **fresh)
 
684
                              struct delta_index *old_index)
699
685
{
700
686
    unsigned int i, num_entries, max_num_entries, prev_val, num_inserted;
701
687
    unsigned int hash_offset;
704
690
    struct delta_index *new_index;
705
691
    struct index_entry *entry, *entries;
706
692
 
707
 
    if (!old_index)
708
 
        return DELTA_INDEX_NEEDED;
709
693
    if (!src->buf || !src->size)
710
 
        return DELTA_SOURCE_EMPTY;
 
694
        return NULL;
711
695
    buffer = src->buf;
712
696
    top = buffer + src->size;
713
697
 
723
707
    /* allocate an array to hold whatever entries we find */
724
708
    entries = malloc(sizeof(*entry) * max_num_entries);
725
709
    if (!entries) /* malloc failure */
726
 
        return DELTA_OUT_OF_MEMORY;
 
710
        return NULL;
727
711
 
728
712
    /* then populate the index for the new data */
729
713
    prev_val = ~0;
790
774
        }
791
775
    }
792
776
    if (data != top) {
793
 
        /* The source_info data passed was corrupted or otherwise invalid */
 
777
        /* Something was wrong with this delta */
794
778
        free(entries);
795
 
        return DELTA_SOURCE_BAD;
 
779
        return NULL;
796
780
    }
797
781
    if (num_entries == 0) {
798
782
        /** Nothing to index **/
799
783
        free(entries);
800
 
        *fresh = old_index;
801
 
        return DELTA_OK;
 
784
        return NULL;
802
785
    }
 
786
    assert(old_index != NULL);
803
787
    old_index->last_src = src;
804
788
    /* See if we can fill in these values into the holes in the array */
805
789
    entry = entries;
857
841
        new_index = create_index_from_old_and_new_entries(old_index,
858
842
            entry, num_entries);
859
843
    } else {
860
 
        new_index = old_index;
 
844
        new_index = NULL;
861
845
        // fprintf(stderr, "inserted %d without resizing\n", num_inserted);
862
846
    }
863
847
    free(entries);
864
 
    /* create_index_from_old_and_new_entries returns NULL on malloc failure */
865
 
    if (!new_index)
866
 
        return DELTA_OUT_OF_MEMORY;
867
 
    *fresh = new_index;
868
 
    return DELTA_OK;
 
848
    return new_index;
869
849
}
870
850
 
871
851
void free_delta_index(struct delta_index *index)
888
868
 */
889
869
#define MAX_OP_SIZE (5 + 5 + 1 + RABIN_WINDOW + 7)
890
870
 
891
 
delta_result
 
871
void *
892
872
create_delta(const struct delta_index *index,
893
873
             const void *trg_buf, unsigned long trg_size,
894
 
             unsigned long *delta_size, unsigned long max_size,
895
 
             void **delta_data)
 
874
             unsigned long *delta_size, unsigned long max_size)
896
875
{
897
876
    unsigned int i, outpos, outsize, moff, val;
898
877
    int msize;
903
882
    unsigned long source_size;
904
883
 
905
884
    if (!trg_buf || !trg_size)
906
 
        return DELTA_BUFFER_EMPTY;
 
885
        return NULL;
907
886
    if (index == NULL)
908
 
        return DELTA_INDEX_NEEDED;
 
887
        return NULL;
909
888
 
910
889
    outpos = 0;
911
890
    outsize = 8192;
913
892
        outsize = max_size + MAX_OP_SIZE + 1;
914
893
    out = malloc(outsize);
915
894
    if (!out)
916
 
        return DELTA_OUT_OF_MEMORY;
 
895
        return NULL;
917
896
 
918
897
    source_size = index->last_src->size + index->last_src->agg_offset;
919
898
 
1092
1071
            out = realloc(out, outsize);
1093
1072
            if (!out) {
1094
1073
                free(tmp);
1095
 
                return DELTA_OUT_OF_MEMORY;
 
1074
                return NULL;
1096
1075
            }
1097
1076
        }
1098
1077
    }
1102
1081
 
1103
1082
    if (max_size && outpos > max_size) {
1104
1083
        free(out);
1105
 
        return DELTA_SIZE_TOO_BIG;
 
1084
        return NULL;
1106
1085
    }
1107
1086
 
1108
1087
    *delta_size = outpos;
1109
 
    *delta_data = out;
1110
 
    return DELTA_OK;
1111
 
}
1112
 
 
1113
 
 
1114
 
int
1115
 
get_entry_summary(const struct delta_index *index, int pos,
1116
 
                  unsigned int *text_offset, unsigned int *hash_val)
1117
 
{
1118
 
    int hsize;
1119
 
    const struct index_entry *entry;
1120
 
    const struct index_entry *start_of_entries;
1121
 
    unsigned int offset;
1122
 
    if (pos < 0 || text_offset == NULL || hash_val == NULL
1123
 
        || index == NULL)
1124
 
    {
1125
 
        return 0;
1126
 
    }
1127
 
    hsize = index->hash_mask + 1;
1128
 
    start_of_entries = (struct index_entry *)(((struct index_entry **)index->hash) + (hsize + 1));
1129
 
    entry = start_of_entries + pos;
1130
 
    if (entry > index->last_entry) {
1131
 
        return 0;
1132
 
    }
1133
 
    if (entry->ptr == NULL) {
1134
 
        *text_offset = 0;
1135
 
        *hash_val = 0;
1136
 
    } else {
1137
 
        offset = entry->src->agg_offset;
1138
 
        offset += (entry->ptr - ((unsigned char *)entry->src->buf));
1139
 
        *text_offset = offset;
1140
 
        *hash_val = entry->val;
1141
 
    }
1142
 
    return 1;
1143
 
}
1144
 
 
1145
 
 
1146
 
int
1147
 
get_hash_offset(const struct delta_index *index, int pos,
1148
 
                unsigned int *entry_offset)
1149
 
{
1150
 
    int hsize;
1151
 
    const struct index_entry *entry;
1152
 
    const struct index_entry *start_of_entries;
1153
 
    if (pos < 0 || index == NULL || entry_offset == NULL)
1154
 
    {
1155
 
        return 0;
1156
 
    }
1157
 
    hsize = index->hash_mask + 1;
1158
 
    start_of_entries = (struct index_entry *)(((struct index_entry **)index->hash) + (hsize + 1));
1159
 
    if (pos >= hsize) {
1160
 
        return 0;
1161
 
    }
1162
 
    entry = index->hash[pos];
1163
 
    if (entry == NULL) {
1164
 
        *entry_offset = -1;
1165
 
    } else {
1166
 
        *entry_offset = (entry - start_of_entries);
1167
 
    }
1168
 
    return 1;
1169
 
}
1170
 
 
1171
 
 
1172
 
unsigned int
1173
 
rabin_hash(const unsigned char *data)
1174
 
{
1175
 
    int i;
1176
 
    unsigned int val = 0;
1177
 
    for (i = 0; i < RABIN_WINDOW; i++)
1178
 
        val = ((val << 8) | data[i]) ^ T[val >> RABIN_SHIFT];
1179
 
    return val;
 
1088
    return out;
1180
1089
}
1181
1090
 
1182
1091
/* vim: et ts=4 sw=4 sts=4