testing
[SXSI/XMLTree.git] / libcds / src / static_sequence / static_sequence_wvtree.cpp
1 /* static_sequence_wvtree.h
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * static_sequence_wvtree definition
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21  
22 #include <static_sequence_wvtree.h>
23
24 static_sequence_wvtree::static_sequence_wvtree(uint * symbols, uint n, wt_coder * c, static_bitsequence_builder * bmb, alphabet_mapper * am) {
25   for(uint i=0;i<n;i++) 
26     symbols[i] = am->map(symbols[i]);
27   this->am = am;
28   this->c=c;
29         root = new wt_node_internal(symbols, n, 0, c, bmb);
30   for(uint i=0;i<n;i++) 
31     symbols[i] = am->unmap(symbols[i]);  
32 }
33
34 static_sequence_wvtree::static_sequence_wvtree() {}
35
36 static_sequence_wvtree::~static_sequence_wvtree() {
37         delete root;
38   delete am;
39   delete c; 
40 }
41
42 uint static_sequence_wvtree::rank(uint symbol, uint pos) {
43         return root->rank(am->map(symbol), pos, 0, c);
44 }
45
46 uint static_sequence_wvtree::count(uint s) {
47   return root->rank(am->map(s), len-1, 0, c);
48 }
49
50 uint static_sequence_wvtree::select(uint symbol, uint pos) {
51         return root->select(am->map(symbol), pos, 0, c)-1;
52 }
53
54 uint static_sequence_wvtree::access(uint pos) {
55         return am->unmap(root->access(pos));
56 }
57
58 uint static_sequence_wvtree::size() {
59         /*cout << "WT: " << root->size() << endl;
60         cout << "Coder: " << c->size() << endl;
61         cout << "AM: " << am->size() << endl;*/
62         return sizeof(static_sequence_wvtree)+sizeof(uint)+root->size()+am->size()+c->size();
63 }
64
65 uint static_sequence_wvtree::save(FILE * fp) { 
66   uint wr = WVTREE_HDR;
67   wr = fwrite(&wr,sizeof(uint),1,fp);
68   if(wr!=1) return 1;
69   wr = fwrite(&n,sizeof(uint),1,fp);
70   if(wr!=1) return 1;
71   if(c->save(fp)) return 1;
72   if(am->save(fp)) return 1;
73   if(root->save(fp)) return 1;
74   return 0;
75 }
76
77 static_sequence_wvtree * static_sequence_wvtree::load(FILE *fp) {
78   uint rd;
79   if(fread(&rd,sizeof(uint),1,fp)!=1) return NULL;
80   if(rd!=WVTREE_HDR) return NULL;
81   static_sequence_wvtree * ret = new static_sequence_wvtree();
82   if(fread(&ret->n,sizeof(uint),1,fp)!=1) return NULL;
83   ret->c = wt_coder::load(fp);
84   ret->am = alphabet_mapper::load(fp);
85   ret->root = wt_node::load(fp);
86   return ret;
87 }