X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=libcds%2Fsrc%2Fstatic_sequence%2Fwt_coder_binary.cpp;h=e9f37dc4b54361ad7d1f2c336f103e7a8b1266f5;hb=eea9c5c03f004e3facd74f004ded0e3801e72ab2;hp=11ba4f52f2dd95bfaefdc17a6803aa6e99d19ba0;hpb=0bf9688e2615a9fc07860c5762240e4ce26ee5d3;p=SXSI%2FXMLTree.git diff --git a/libcds/src/static_sequence/wt_coder_binary.cpp b/libcds/src/static_sequence/wt_coder_binary.cpp index 11ba4f5..e9f37dc 100644 --- a/libcds/src/static_sequence/wt_coder_binary.cpp +++ b/libcds/src/static_sequence/wt_coder_binary.cpp @@ -1,4 +1,24 @@ - +/* wt_coder_binary.cpp + * Copyright (C) 2008, Francisco Claude, all rights reserved. + * + * wt_coder_binary definition + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + #include wt_coder_binary::wt_coder_binary(uint * seq, uint n, alphabet_mapper * am) { @@ -8,6 +28,15 @@ wt_coder_binary::wt_coder_binary(uint * seq, uint n, alphabet_mapper * am) { h=bits(max_v); } +wt_coder_binary::wt_coder_binary(uchar * seq, uint n, alphabet_mapper * am) { + uint max_v = 0; + for(uint i=0;imap((uint)seq[i]),max_v); + h=bits(max_v); +} + +wt_coder_binary::wt_coder_binary() {} + wt_coder_binary::~wt_coder_binary() {} bool wt_coder_binary::is_set(uint symbol, uint l) { @@ -16,7 +45,7 @@ bool wt_coder_binary::is_set(uint symbol, uint l) { } bool wt_coder_binary::done(uint symbol, uint l) { - if(l==h-1) return true; + if(l==h) return true; return false; } @@ -24,3 +53,21 @@ uint wt_coder_binary::size() { return sizeof(wt_coder_binary); } +uint wt_coder_binary::save(FILE *fp) { + uint wr = WT_CODER_BINARY_HDR; + wr = fwrite(&wr,sizeof(uint),1,fp); + wr += fwrite(&h,sizeof(uint),1,fp); + return wr-2; +} + +wt_coder_binary * wt_coder_binary::load(FILE *fp) { + uint rd; + if(fread(&rd,sizeof(uint),1,fp)!=1) return NULL; + if(rd!=WT_CODER_BINARY_HDR) return NULL; + wt_coder_binary * ret = new wt_coder_binary(); + if(fread(&ret->h,sizeof(uint),1,fp)!=1) { + delete ret; + return NULL; + } + return ret; +}