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 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
|
// =============================================================== //
// //
// File : adseqcompr.cxx //
// Purpose : //
// //
// Institute of Microbiology (Technical University Munich) //
// http://www.arb-home.de/ //
// //
// =============================================================== //
#include <arbdbt.h>
#include <arb_progress.h>
#include <arb_file.h>
#include <arb_misc.h>
#include <arb_diff.h>
#include "ad_cb.h"
#include "gb_key.h"
#include <climits>
// --------------------------------------------------------------------------------
#define MAX_SEQUENCE_PER_MASTER 50 // was 18 till May 2008
#if defined(DEBUG)
// don't do optimize, only create tree and save to DB
// #define SAVE_COMPRESSION_TREE_TO_DB
#endif // DEBUG
// --------------------------------------------------------------------------------
struct CompressionTree : public GBT_TREE {
// members initialized by init_indices_and_count_sons
int index; // master(inner nodes) or sequence(leaf nodes) index
int sons; // sons with sequence or masters (in subtree)
~CompressionTree() OVERRIDE {}
DEFINE_SIMPLE_TREE_RELATIVES_ACCESSORS(CompressionTree);
};
struct Consensus {
int len;
char used[256];
unsigned char *con[256];
};
struct Sequence {
GBENTRY *gb_seq;
int master;
};
struct MasterSequence {
GBENTRY *gb_mas;
int master;
};
// --------------------------------------------------------------------------------
static Consensus *g_b_new_Consensus(long len) {
Consensus *gcon = (Consensus *)GB_calloc(sizeof(*gcon), 1);
unsigned char *data = (unsigned char *)GB_calloc(sizeof(char)*256, len);
gcon->len = len;
for (int i=0; i<256; i++) {
gcon->con[i] = data + len*i;
}
return gcon;
}
static void g_b_delete_Consensus(Consensus *gcon) {
free(gcon->con[0]);
free(gcon);
}
static void g_b_Consensus_add(Consensus *gcon, unsigned char *seq, long seq_len) {
const int max_priority = 255/MAX_SEQUENCE_PER_MASTER; // No overflow possible
gb_assert(max_priority >= 1);
if (seq_len > gcon->len) seq_len = gcon->len;
// Search for runs
unsigned char *s = seq;
int last = 0;
int i;
int li;
int c;
for (li = i = 0; i < seq_len; i++) {
c = *(s++);
if (c == last) {
continue;
}
else {
inc_hits :
int eq_count = i-li;
gcon->used[c] = 1;
unsigned char *p = gcon->con[last];
last = c;
if (eq_count <= GB_RUNLENGTH_SIZE) {
c = max_priority;
while (li < i) p[li++] += c;
}
else {
c = max_priority * (GB_RUNLENGTH_SIZE) / eq_count;
if (c) {
while (li < i) p[li++] += c;
}
else {
while (li < i) p[li++] |= 1;
}
}
}
}
if (li<seq_len) {
c = last;
i = seq_len;
goto inc_hits;
}
}
static char *g_b_Consensus_get_sequence(Consensus *gcon) {
int pos;
unsigned char *s;
unsigned char *max = (unsigned char *)GB_calloc(sizeof(char), gcon->len);
int c;
char *seq = (char *)GB_calloc(sizeof(char), gcon->len+1);
memset(seq, '@', gcon->len);
for (c = 1; c<256; c++) { // Find maximum frequency of non run
if (!gcon->used[c]) continue;
s = gcon->con[c];
for (pos = 0; pos<gcon->len; pos++) {
if (*s > max[pos]) {
max[pos] = *s;
seq[pos] = c;
}
s++;
}
}
free(max);
return seq;
}
static int g_b_count_leafs(CompressionTree *node) {
if (node->is_leaf) return 1;
node->gb_node = 0;
return (g_b_count_leafs(node->get_leftson()) + g_b_count_leafs(node->get_rightson()));
}
static void g_b_put_sequences_in_container(CompressionTree *ctree, Sequence *seqs, MasterSequence **masters, Consensus *gcon) {
if (ctree->is_leaf) {
if (ctree->index >= 0) {
GB_CSTR data = GB_read_char_pntr(seqs[ctree->index].gb_seq);
long len = GB_read_string_count(seqs[ctree->index].gb_seq);
g_b_Consensus_add(gcon, (unsigned char *)data, len);
}
}
else if (ctree->index<0) {
g_b_put_sequences_in_container(ctree->get_leftson(), seqs, masters, gcon);
g_b_put_sequences_in_container(ctree->get_rightson(), seqs, masters, gcon);
}
else {
GB_CSTR data = GB_read_char_pntr(masters[ctree->index]->gb_mas);
long len = GB_read_string_count(masters[ctree->index]->gb_mas);
g_b_Consensus_add(gcon, (unsigned char *)data, len);
}
}
static void g_b_create_master(CompressionTree *node, Sequence *seqs, MasterSequence **masters, int my_master, const char *ali_name, long seq_len, arb_progress& progress) {
if (node->is_leaf) {
if (node->index >= 0) {
GBDATA *gb_data = GBT_read_sequence(node->gb_node, ali_name);
seqs[node->index].gb_seq = gb_data->as_entry();
seqs[node->index].master = my_master;
}
}
else {
if (progress.aborted()) return;
if (node->index>=0) {
masters[node->index]->master = my_master;
my_master = node->index;
}
g_b_create_master(node->get_leftson(), seqs, masters, my_master, ali_name, seq_len, progress);
g_b_create_master(node->get_rightson(), seqs, masters, my_master, ali_name, seq_len, progress);
if (node->index>=0 && !progress.aborted()) { // build me
char *data;
Consensus *gcon = g_b_new_Consensus(seq_len);
g_b_put_sequences_in_container(node->get_leftson(), seqs, masters, gcon);
g_b_put_sequences_in_container(node->get_rightson(), seqs, masters, gcon);
data = g_b_Consensus_get_sequence(gcon);
GB_write_string(masters[node->index]->gb_mas, data);
GB_write_security_write(masters[node->index]->gb_mas, 7);
g_b_delete_Consensus(gcon);
free(data);
++progress;
}
}
}
// -------------------------------------
// distribute master sequences
static void subtract_sons_from_tree(CompressionTree *node, int subtract) {
while (node) {
node->sons -= subtract;
node = node->get_father();
}
}
static int set_masters_with_sons(CompressionTree *node, int wantedSons, int *mcount) {
if (!node->is_leaf) {
if (node->sons == wantedSons) {
// insert new master
gb_assert(node->index == -1);
node->index = *mcount;
(*mcount)++;
subtract_sons_from_tree(node->get_father(), node->sons-1);
node->sons = 1;
}
else if (node->sons>wantedSons) {
int lMax = set_masters_with_sons(node->get_leftson(), wantedSons, mcount);
int rMax = set_masters_with_sons(node->get_rightson(), wantedSons, mcount);
int maxSons = lMax<rMax ? rMax : lMax;
if (node->sons <= MAX_SEQUENCE_PER_MASTER && node->sons>maxSons) {
maxSons = node->sons;
}
return maxSons;
}
}
return node->sons <= MAX_SEQUENCE_PER_MASTER ? node->sons : 0;
}
static int maxCompressionSteps(CompressionTree *node) {
if (node->is_leaf) {
return 0;
}
int left = maxCompressionSteps(node->get_leftson());
int right = maxCompressionSteps(node->get_rightson());
#if defined(SAVE_COMPRESSION_TREE_TO_DB)
freenull(node->name);
if (node->index2 != -1) {
node->name = GBS_global_string_copy("master_%03i", node->index2);
}
#endif // SAVE_COMPRESSION_TREE_TO_DB
return (left>right ? left : right) + (node->index == -1 ? 0 : 1);
}
static int init_indices_and_count_sons(CompressionTree *node, int *scount, const char *ali_name) {
if (node->is_leaf) {
if (node->gb_node == 0 || !GBT_read_sequence(node->gb_node, (char *)ali_name)) {
node->index = -1;
node->sons = 0;
}
else {
node->index = *scount;
node->sons = 1;
(*scount)++;
}
}
else {
node->index = -1;
node->sons =
init_indices_and_count_sons(node->get_leftson(), scount, ali_name) +
init_indices_and_count_sons(node->get_rightson(), scount, ali_name);
}
return node->sons;
}
static void distribute_masters(CompressionTree *tree, int *mcount, int *max_masters) {
int wantedSons = MAX_SEQUENCE_PER_MASTER;
while (wantedSons >= 2) {
int maxSons = set_masters_with_sons(tree, wantedSons, mcount);
wantedSons = maxSons;
}
gb_assert(tree->sons == 1);
gb_assert(tree->index != -1);
*max_masters = maxCompressionSteps(tree);
}
// --------------------------------------------------------------------------------
#define MAX_NUMBER 0x7fffffff
STATIC_ASSERT(MAX_NUMBER <= INT_MAX); // ensure 32-bit-version compatibility!
inline int g_b_read_number2(const unsigned char*& s) {
int result;
unsigned c0 = *s++;
if (c0 & 0x80) {
unsigned c1 = *s++;
if (c0 & 0x40) {
unsigned c2 = *s++;
if (c0 & 0x20) {
unsigned c3 = *s++;
if (c0 & 0x10) {
unsigned c4 = *s++;
result = c4 | (c3<<8) | (c2<<16) | (c1<<24);
}
else {
result = c3 | (c2<<8) | (c1<<16) | ((c0 & 0x0f)<<24);
}
}
else {
result = c2 | (c1<<8) | ((c0 & 0x1f)<<16);
}
}
else {
result = c1 | ((c0 & 0x3f)<<8);
}
}
else {
result = c0;
}
gb_assert(result >= 0 && result <= MAX_NUMBER);
return result;
}
inline void g_b_put_number2(int i, unsigned char*& s) {
gb_assert(i >= 0 && i <= MAX_NUMBER);
if (i< 0x80) {
*s++ = i;
}
else {
int j;
if (i<0x4000) {
j = (i>>8) | 0x80; *s++ = j;
*s++ = i;
}
else if (i<0x200000) {
j = (i>>16) | 0xC0; *s++ = j;
j = (i>>8); *s++ = j;
*s++ = i;
}
else if (i<0x10000000) {
j = (i>>24) | 0xE0; *s++ = j;
j = (i>>16); *s++ = j;
j = (i>>8); *s++ = j;
*s++ = i;
}
else {
*s++ = 0xF0;
j = (i>>24); *s++ = j;
j = (i>>16); *s++ = j;
j = (i>>8); *s++ = j;
*s++ = i;
}
}
}
// --------------------------------------------------------------------------------
#ifdef UNIT_TESTS
#ifndef TEST_UNIT_H
#include <test_unit.h>
#endif
static arb_test::match_expectation put_read_num_using_bytes(int num_written, int bytes_expected, unsigned char *buffer_expected = NULL) {
const int BUFSIZE = 6;
unsigned char buffer[BUFSIZE];
using namespace arb_test;
unsigned char INIT = 0xaa;
memset(buffer, INIT, BUFSIZE);
expectation_group expected;
{
unsigned char *bp = buffer;
g_b_put_number2(num_written, bp);
size_t bytes_written = bp-buffer;
expected.add(that(bytes_written).is_equal_to(bytes_expected));
if (buffer_expected) {
expected.add(that(arb_test::memory_is_equal(buffer, buffer_expected, bytes_expected)).is_equal_to(true));
}
}
{
const unsigned char *bp = buffer;
int num_read = g_b_read_number2(bp);
expected.add(that(num_read).is_equal_to(num_written));
size_t bytes_read = bp-buffer;
expected.add(that(bytes_read).is_equal_to(bytes_expected));
}
expected.add(that(buffer[bytes_expected]).is_equal_to(INIT));
return all().ofgroup(expected);
}
#define TEST_PUT_READ_NUMBER(num,expect_bytes) TEST_EXPECTATION(put_read_num_using_bytes(num, expect_bytes))
#define TEST_PUT_READ_NUMBER__BROKEN(num,expect_bytes) TEST_EXPECTATION__BROKEN(put_read_num_using_bytes(num, expect_bytes))
#define TEST_PUT_NUMBER_BINARY1(num, byte1) do { \
unsigned char buf[1]; \
buf[0] = byte1; \
TEST_EXPECTATION(put_read_num_using_bytes(num, 1, buf)); \
} while(0)
#define TEST_PUT_NUMBER_BINARY2(num, byte1, byte2) do { \
unsigned char buf[2]; \
buf[0] = byte1; \
buf[1] = byte2; \
TEST_EXPECTATION(put_read_num_using_bytes(num, 2, buf)); \
} while(0)
#define TEST_PUT_NUMBER_BINARY3(num, byte1, byte2, byte3) do { \
unsigned char buf[3]; \
buf[0] = byte1; \
buf[1] = byte2; \
buf[2] = byte3; \
TEST_EXPECTATION(put_read_num_using_bytes(num, 3, buf)); \
} while(0)
#define TEST_PUT_NUMBER_BINARY4(num, byte1, byte2, byte3, byte4) do { \
unsigned char buf[4]; \
buf[0] = byte1; \
buf[1] = byte2; \
buf[2] = byte3; \
buf[3] = byte4; \
TEST_EXPECTATION(put_read_num_using_bytes(num, 4, buf)); \
} while(0)
#define TEST_PUT_NUMBER_BINARY5(num, byte1, byte2, byte3, byte4, byte5) do { \
unsigned char buf[5]; \
buf[0] = byte1; \
buf[1] = byte2; \
buf[2] = byte3; \
buf[3] = byte4; \
buf[4] = byte5; \
TEST_EXPECTATION(put_read_num_using_bytes(num, 5, buf)); \
} while(0)
void TEST_put_read_number() {
// test that put and read are compatible:
TEST_PUT_READ_NUMBER(0x0, 1);
TEST_PUT_READ_NUMBER(0x7f, 1);
TEST_PUT_READ_NUMBER(0x80, 2);
TEST_PUT_READ_NUMBER(0x3fff, 2);
TEST_PUT_READ_NUMBER(0x4000, 3);
TEST_PUT_READ_NUMBER(0x1fffff, 3);
TEST_PUT_READ_NUMBER(0x200000, 4);
TEST_PUT_READ_NUMBER(0xfffffff, 4);
TEST_PUT_READ_NUMBER(0x10000000, 5);
TEST_PUT_READ_NUMBER(0x7fffffff, 5);
// test binary compatibility:
// (code affects DB content, cannot be changed)
TEST_PUT_NUMBER_BINARY1(0x0, 0x00);
TEST_PUT_NUMBER_BINARY1(0x7f, 0x7f);
TEST_PUT_NUMBER_BINARY2(0x80, 0x80, 0x80);
TEST_PUT_NUMBER_BINARY2(0x81, 0x80, 0x81);
TEST_PUT_NUMBER_BINARY2(0x3fff, 0xbf, 0xff);
TEST_PUT_NUMBER_BINARY3(0x4000, 0xc0, 0x40, 0x00);
TEST_PUT_NUMBER_BINARY3(0x1fffff, 0xdf, 0xff, 0xff);
TEST_PUT_NUMBER_BINARY4(0x200000, 0xe0, 0x20, 0x00, 0x00);
TEST_PUT_NUMBER_BINARY4(0xfffffff, 0xef, 0xff, 0xff, 0xff);
TEST_PUT_NUMBER_BINARY5(0x10000000, 0xf0, 0x10, 0x00, 0x00, 0x00);
TEST_PUT_NUMBER_BINARY5(0x7fffffff, 0xf0, 0x7f, 0xff, 0xff, 0xff);
}
#endif // UNIT_TESTS
// --------------------------------------------------------------------------------
static char *gb_compress_seq_by_master(const char *master, size_t master_len, int master_index,
GBQUARK q, const char *seq, size_t seq_len,
size_t *memsize, int old_flag) {
unsigned char *buffer;
int rest = 0;
unsigned char *d;
int i, cs, cm;
int last;
long len = seq_len;
d = buffer = (unsigned char *)GB_give_other_buffer(seq, seq_len);
if (seq_len > master_len) {
rest = seq_len - master_len;
len = master_len;
}
last = -1000; // Convert Sequence relative to Master
for (i = len; i>0; i--) {
cm = *(master++);
cs = *(seq++);
if (cm==cs && cs != last) {
*(d++) = 0;
last = 1000;
}
else {
*(d++) = cs;
last = cs;
}
}
for (i = rest; i>0; i--) {
*(d++) = *(seq++);
}
{ // Append run length compression method
unsigned char *buffer2;
unsigned char *dest2;
buffer2 = dest2 = (unsigned char *)GB_give_other_buffer((char *)buffer, seq_len+100);
*(dest2++) = GB_COMPRESSION_SEQUENCE | old_flag;
g_b_put_number2(master_index, dest2); // Tags
g_b_put_number2(q, dest2);
gb_compress_equal_bytes_2((char *)buffer, seq_len, memsize, (char *)dest2); // append runlength compressed sequences to tags
*memsize = *memsize + (dest2-buffer2);
return (char *)buffer2;
}
}
static char *gb_compress_sequence_by_master(GBDATA *gbd, const char *master, size_t master_len, int master_index,
GBQUARK q, const char *seq, size_t seq_len, size_t *memsize)
{
size_t size;
char *is = gb_compress_seq_by_master(master, master_len, master_index, q, seq, seq_len, &size, GB_COMPRESSION_LAST);
char *res = gb_compress_data(gbd, 0, is, size, memsize, ~(GB_COMPRESSION_DICTIONARY|GB_COMPRESSION_SORTBYTES|GB_COMPRESSION_RUNLENGTH), true);
return res;
}
static GB_ERROR compress_sequence_tree(GBCONTAINER *gb_main, CompressionTree *tree, const char *ali_name) {
GB_ERROR error = 0;
long ali_len = GBT_get_alignment_len(gb_main, ali_name);
int main_clock = GB_read_clock(gb_main);
GB_ERROR warning = NULL;
if (ali_len<0) {
warning = GBS_global_string("Skipping alignment '%s' (not a valid alignment; len=%li).", ali_name, ali_len);
GB_clear_error();
}
else {
int leafcount = g_b_count_leafs(tree);
if (!leafcount) {
error = "Tree is empty";
}
else {
arb_progress tree_progress("Compressing sequences", 4);
// Distribute masters in tree
int mastercount = 0;
int max_compSteps = 0; // in one branch
int seqcount = 0;
init_indices_and_count_sons(tree, &seqcount, ali_name);
if (!seqcount) {
warning = GBS_global_string("Tree contains no sequences with data in '%s'\n"
"Skipping compression for this alignment",
ali_name);
}
else {
distribute_masters(tree, &mastercount, &max_compSteps);
#if defined(SAVE_COMPRESSION_TREE_TO_DB)
{
error = GBT_link_tree(tree, gb_main, 0, NULL, NULL);
if (!error) error = GBT_write_tree(gb_main, 0, "tree_compression_new", tree);
GB_information("Only generated compression tree (do NOT save DB anymore)");
return error;
}
#endif // SAVE_COMPRESSION_TREE_TO_DB
// detect degenerated trees
{
int min_masters = ((seqcount-1)/MAX_SEQUENCE_PER_MASTER)+1;
int min_compSteps = 1;
{
int m = min_masters;
while (m>1) {
m = ((m-1)/MAX_SEQUENCE_PER_MASTER)+1;
min_masters += m;
min_compSteps++;
}
}
int acceptable_masters = (3*min_masters)/2; // accept 50% overhead
int acceptable_compSteps = 11*min_compSteps; // accept 1000% overhead
if (mastercount>acceptable_masters || max_compSteps>acceptable_compSteps) {
GB_warningf("Tree is ill-suited for compression (cause of deep branches)\n"
" Used tree Optimal tree Overhead\n"
"Compression steps %5i %5i %4i%% (speed)\n"
"Master sequences %5i %5i %4i%% (size)\n"
"If you like to restart with a better tree,\n"
"press 'Abort' to stop compression",
max_compSteps, min_compSteps, (100*max_compSteps)/min_compSteps-100,
mastercount, min_masters, (100*mastercount)/min_masters-100);
}
}
gb_assert(mastercount>0);
}
if (!warning) {
GBCONTAINER *gb_master_ali = 0;
GBDATA *old_gb_master_ali = 0;
Sequence *seqs = 0;
GB_MAIN_TYPE *Main = GB_MAIN(gb_main);
GBQUARK ali_quark = gb_find_or_create_quark(Main, ali_name);
unsigned long long sumorg = 0;
unsigned long long sumold = 0;
unsigned long long sumnew = 0;
MasterSequence **masters = (MasterSequence **)GB_calloc(sizeof(*masters), leafcount);
int si;
{
char *masterfoldername = GBS_global_string_copy("%s/@master_data/@%s", GB_SYSTEM_FOLDER, ali_name);
old_gb_master_ali = GB_search(gb_main, masterfoldername, GB_FIND)->as_container();
free(masterfoldername);
}
// create masters
if (!error) {
{
char *master_data_name = GBS_global_string_copy("%s/@master_data", GB_SYSTEM_FOLDER);
char *master_name = GBS_global_string_copy("@%s", ali_name);
GBCONTAINER *gb_master_data = gb_search(gb_main, master_data_name, GB_CREATE_CONTAINER, 1)->as_container();
// create a master container, the old is deleted as soon as all sequences are compressed by the new method
gb_master_ali = gb_create_container(gb_master_data, master_name);
GB_write_security_delete(gb_master_ali, 7);
free(master_name);
free(master_data_name);
}
for (si = 0; si<mastercount; si++) {
masters[si] = (MasterSequence *)GB_calloc(sizeof(MasterSequence), 1);
masters[si]->gb_mas = gb_create(gb_master_ali, "@master", GB_STRING);
}
seqs = (Sequence *)GB_calloc(sizeof(*seqs), leafcount);
if (!error) {
arb_progress progress("Building master sequences", mastercount);
g_b_create_master(tree, seqs, masters, -1, ali_name, ali_len, progress);
error = progress.error_if_aborted();
}
}
tree_progress.inc_and_check_user_abort(error);
// Compress sequences in tree
if (!error) {
arb_progress progress("Compressing sequences in tree", seqcount);
for (si=0; si<seqcount && !error; si++) {
int mi = seqs[si].master;
MasterSequence *master = masters[mi];
GBDATA *gbd = seqs[si].gb_seq;
if (GB_read_clock(gbd) >= main_clock) {
GB_warning("A species seems to be more than once in the tree");
}
else {
char *seq = GB_read_string(gbd);
int seq_len = GB_read_string_count(gbd);
long sizen = GB_read_memuse(gbd);
char *seqm = GB_read_string(master->gb_mas);
int master_len = GB_read_string_count(master->gb_mas);
size_t sizes;
char *ss = gb_compress_sequence_by_master(gbd, seqm, master_len, mi, ali_quark, seq, seq_len, &sizes);
gb_write_compressed_pntr(gbd->as_entry(), ss, sizes, seq_len);
sizes = GB_read_memuse(gbd); // check real usage
sumnew += sizes;
sumold += sizen;
sumorg += seq_len;
free(seqm);
free(seq);
}
progress.inc_and_check_user_abort(error);
}
}
tree_progress.inc_and_check_user_abort(error);
// Compress rest of sequences
if (!error) {
int pass; // pass 1 : count species to compress, pass 2 : compress species
int speciesNotInTree = 0;
SmartPtr<arb_progress> progress;
for (pass = 1; pass <= 2; ++pass) {
GBDATA *gb_species_data = GBT_get_species_data(gb_main);
GBDATA *gb_species;
int count = 0;
for (gb_species = GBT_first_species_rel_species_data(gb_species_data);
gb_species;
gb_species = GBT_next_species(gb_species))
{
GBDATA *gbd = GBT_read_sequence(gb_species, ali_name);
if (!gbd) continue;
if (GB_read_clock(gbd) >= main_clock) continue; // Compress only those which are not compressed by masters
count++;
if (pass == 2) {
char *data = GB_read_string(gbd);
long seq_len = GB_read_string_count(gbd);
long size = GB_read_memuse(gbd);
GB_write_string(gbd, "");
GB_write_string(gbd, data);
free(data);
sumold += size;
size = GB_read_memuse(gbd);
sumnew += size;
sumorg += seq_len;
progress->inc_and_check_user_abort(error);
}
}
if (pass == 1) {
speciesNotInTree = count;
if (speciesNotInTree>0) {
progress = new arb_progress("Compressing sequences NOT in tree", speciesNotInTree);
}
}
}
}
tree_progress.inc_and_check_user_abort(error);
if (!error) {
arb_progress progress("Compressing master-sequences", mastercount);
// Compress all masters
for (si=0; si<mastercount; si++) {
int mi = masters[si]->master;
if (mi>0) { // master available
GBDATA *gbd = masters[si]->gb_mas;
gb_assert(mi>si); // we don't want a recursion, because we cannot uncompress sequence compressed masters, Main->gb_master_data is wrong
if (gb_read_nr(gbd) != si) { // Check database
GB_internal_error("Sequence Compression: Master Index Conflict");
error = GB_export_error("Sequence Compression: Master Index Conflict");
break;
}
{
MasterSequence *master = masters[mi];
char *seqm = GB_read_string(master->gb_mas);
int master_len = GB_read_string_count(master->gb_mas);
char *seq = GB_read_string(gbd);
int seq_len = GB_read_string_count(gbd);
size_t sizes;
char *ss = gb_compress_sequence_by_master(gbd, seqm, master_len, mi, ali_quark, seq, seq_len, &sizes);
gb_write_compressed_pntr(gbd->as_entry(), ss, sizes, seq_len);
sumnew += sizes;
free(seq);
free(seqm);
}
progress.inc_and_check_user_abort(error);
}
else { // count size of top master
GBDATA *gbd = masters[si]->gb_mas;
sumnew += GB_read_memuse(gbd);
progress.inc_and_check_user_abort(error);
}
}
// count size of old master data
if (!error) {
GBDATA *gb_omaster;
for (gb_omaster = GB_entry(old_gb_master_ali, "@master");
gb_omaster;
gb_omaster = GB_nextEntry(gb_omaster))
{
long size = GB_read_memuse(gb_omaster);
sumold += size;
}
}
if (!error) {
char *sizeOrg = strdup(GBS_readable_size(sumorg, "b"));
char *sizeOld = strdup(GBS_readable_size(sumold, "b"));
char *sizeNew = strdup(GBS_readable_size(sumnew, "b"));
GB_warningf("Alignment '%s':\n"
" Uncompressed data: %7s\n"
" Old compressed data: %7s = %6.2f%%\n"
" New compressed data: %7s = %6.2f%%",
ali_name, sizeOrg,
sizeOld, (100.0*sumold)/sumorg,
sizeNew, (100.0*sumnew)/sumorg);
free(sizeNew);
free(sizeOld);
free(sizeOrg);
}
}
tree_progress.inc_and_check_user_abort(error);
if (!error) {
if (old_gb_master_ali) error = GB_delete(old_gb_master_ali);
Main->keys[ali_quark].gb_master_ali = gb_master_ali;
}
// free data
free(seqs);
for (si=0; si<mastercount; si++) free(masters[si]);
free(masters);
}
else {
tree_progress.done();
}
}
}
if (warning) GB_information(warning);
return error;
}
class CompressionTree_NodeFactory : public TreeNodeFactory {
virtual GBT_TREE *makeNode() const OVERRIDE { return new CompressionTree; }
};
GB_ERROR GBT_compress_sequence_tree2(GBDATA *gbd, const char *tree_name, const char *ali_name) { // goes to header: __ATTR__USERESULT // @@@ rename function
// Compress sequences, call only outside a transaction
GB_ERROR error = NULL;
GB_MAIN_TYPE *Main = GB_MAIN(gbd);
if (Main->get_transaction_level() > 0) {
error = "Compress Sequences called while transaction running";
GB_internal_error(error);
}
else {
GBCONTAINER *gb_main = Main->root_container;
GB_UNDO_TYPE prev_undo_type = GB_get_requested_undo_type(gb_main);
error = GB_request_undo_type(gb_main, GB_UNDO_KILL);
if (!error) {
error = GB_begin_transaction(gb_main);
if (!error) {
GB_push_my_security(gb_main);
if (!tree_name || !strlen(tree_name)) {
tree_name = GBT_name_of_largest_tree(gb_main);
}
{
CompressionTree *ctree = DOWNCAST(CompressionTree*, GBT_read_tree(gb_main, tree_name, CompressionTree_NodeFactory()));
if (!ctree) error = GB_await_error();
else {
error = GBT_link_tree(ctree, gb_main, false, 0, 0);
if (!error) error = compress_sequence_tree(gb_main, ctree, ali_name);
delete ctree;
}
}
if (!error) GB_disable_quicksave(gb_main, "Database optimized");
GB_pop_my_security(gb_main);
error = GB_end_transaction(gb_main, error);
}
ASSERT_NO_ERROR(GB_request_undo_type(gb_main, prev_undo_type));
}
#if defined(SAVE_COMPRESSION_TREE_TO_DB)
error = "fake error";
#endif // SAVE_COMPRESSION_TREE_TO_DB
}
return error;
}
#ifdef DEBUG
void GBT_compression_test(void */*dummy_AW_root*/, GBDATA *gb_main) {
GB_ERROR error = GB_begin_transaction(gb_main);
char *ali_name = GBT_get_default_alignment(gb_main);
char *tree_name = GBT_read_string(gb_main, "focus/tree_name");
// GBUSE(dummy);
if (!ali_name || !tree_name) error = GB_await_error();
error = GB_end_transaction(gb_main, error);
if (!error) {
printf("Recompression data in alignment '%s' using tree '%s'\n", ali_name, tree_name);
error = GBT_compress_sequence_tree2(gb_main, tree_name, ali_name);
}
if (error) GB_warning(error);
free(tree_name);
free(ali_name);
}
#endif
// ******************** Decompress Sequences ********************
static char *g_b_uncompress_single_sequence_by_master(const char *s, const char *master, size_t size, size_t *new_size) {
const signed char *source = (signed char *)s;
char *dest;
const char *m = master;
unsigned int c;
int j;
int i;
char *buffer;
dest = buffer = GB_give_other_buffer((char *)source, size);
for (i=size; i;) {
j = *(source++);
if (j>0) { // uncompressed data block
if (j>i) j=i;
i -= j;
for (; j; j--) {
c = *(source++);
if (!c) c = *m;
*(dest++) = c;
m++;
}
}
else { // equal bytes compressed
if (!j) break; // end symbol
if (j == -122) {
j = *(source++) & 0xff;
j |= ((*(source++)) << 8) &0xff00;
j = -j;
}
c = *(source++);
i += j;
if (i<0) {
GB_internal_error("Internal Error: Missing end in data");
j += -i;
i = 0;
}
if (c==0) {
memcpy(dest, m, -j);
dest += -j;
m += -j;
}
else {
memset(dest, c, -j);
dest += -j;
m += -j;
}
}
}
*(dest++) = 0; // NULL of NULL terminated string
*new_size = dest-buffer;
gb_assert(size == *new_size); // buffer overflow
return buffer;
}
char *gb_uncompress_by_sequence(GBDATA *gbd, const char *ss, size_t size, GB_ERROR *error, size_t *new_size) {
char *dest = 0;
*error = 0;
GB_MAIN_TYPE *Main = gb_get_main_during_cb();
if (!Main && GB_FATHER(gbd)) Main = GB_MAIN(gbd);
if (!Main) {
*error = "Can not uncompress this sequence (neighter has father nor inside callback)";
}
else {
GBDATA *gb_main = Main->gb_main();
char *to_free = GB_check_out_buffer(ss); // Remove 'ss' from memory management, otherwise load_single_key_data() may destroy it
int index;
GBQUARK quark;
{
const unsigned char *s = (const unsigned char *)ss;
index = g_b_read_number2(s);
quark = g_b_read_number2(s);
ss = (const char *)s;
}
if (!Main->keys[quark].gb_master_ali) {
gb_load_single_key_data(gb_main, quark);
}
if (!Main->keys[quark].gb_master_ali) {
*error = "Cannot uncompress this sequence: Cannot find a master sequence";
}
else {
GBDATA *gb_master = gb_find_by_nr(Main->keys[quark].gb_master_ali, index);
if (gb_master) {
const char *master = GB_read_char_pntr(gb_master); // make sure that this is not a buffer !!!
gb_assert((GB_read_string_count(gb_master)+1) == size); // size mismatch between master and slave
dest = g_b_uncompress_single_sequence_by_master(ss, master, size, new_size);
}
else {
*error = GB_await_error();
}
}
free(to_free);
}
return dest;
}
// --------------------------------------------------------------------------------
#ifdef UNIT_TESTS
#ifndef TEST_UNIT_H
#include <test_unit.h>
#endif
// #define TEST_AUTO_UPDATE // uncomment to auto-update expected result DB
void TEST_SLOW_sequence_compression() {
const char *source = "TEST_nuc.arb";
const char *compressed = "TEST_nuc_seqcompr.arb";
const char *expected = "TEST_nuc_seqcompr_exp.arb";
const char *aliname = "ali_16s";
GB_shell shell;
const int SEQ2COMPARE = 7;
char *seq_exp[SEQ2COMPARE];
{
GBDATA *gb_main;
TEST_EXPECT_RESULT__NOERROREXPORTED(gb_main = GB_open(source, "rw"));
{
GB_transaction ta(gb_main);
int count = 0;
for (GBDATA *gb_species = GBT_first_species(gb_main);
gb_species && count<SEQ2COMPARE;
gb_species = GBT_next_species(gb_species), ++count)
{
GBDATA *gb_seq = GBT_read_sequence(gb_species, aliname);
seq_exp[count] = GB_read_string(gb_seq);
}
}
TEST_EXPECT_NO_ERROR(GBT_compress_sequence_tree2(gb_main, "tree_nuc", aliname));
TEST_EXPECT_NO_ERROR(GB_save_as(gb_main, compressed, "b"));
GB_close(gb_main);
}
#if defined(TEST_AUTO_UPDATE)
TEST_COPY_FILE(compressed, expected);
#endif
TEST_EXPECT_FILES_EQUAL(compressed, expected);
{
GBDATA *gb_main;
TEST_EXPECT_RESULT__NOERROREXPORTED(gb_main = GB_open(compressed, "rw"));
{
GB_transaction ta(gb_main);
int count = 0;
for (GBDATA *gb_species = GBT_first_species(gb_main);
gb_species && count<SEQ2COMPARE;
gb_species = GBT_next_species(gb_species), ++count)
{
GBDATA *gb_seq = GBT_read_sequence(gb_species, aliname);
char *seq = GB_read_string(gb_seq);
TEST_EXPECT_EQUAL(seq, seq_exp[count]);
freenull(seq_exp[count]);
free(seq);
}
}
GB_close(gb_main);
}
TEST_EXPECT_ZERO_OR_SHOW_ERRNO(GB_unlink(compressed));
}
#endif // UNIT_TESTS
// --------------------------------------------------------------------------------
|