📄 checksum.h
字号:
// file: $isip/class/system/Checksum/Checksum.h// version: $Id: Checksum.h,v 1.23 2001/04/23 22:57:40 peng Exp $//// make sure definitions are only made once//#ifndef ISIP_CHECKSUM#define ISIP_CHECKSUM// isip include files:// note that we include SysString.h mainly for convenience//#ifndef ISIP_SYS_STRING#include <SysString.h>#endif#ifndef ISIP_MEMORY_MANAGER#include <MemoryManager.h>#endif// Checksum: a class that implements some standard checksum algorithms.// this class is introduced at this level because it is used by Sof,// NameMap, and other higher-level classes.//class Checksum { //--------------------------------------------------------------------------- // // public constants // //---------------------------------------------------------------------------public: // define the class name // static const SysString CLASS_NAME; // define algorithm choices // enum ALGORITHM { CRC_16_CCITT = 0, CRC_16, CRC_12, MD5, DEF_ALGORITHM = CRC_16_CCITT }; // define implementations // enum IMPLEMENTATION { FAST = 0, SLOW, DEF_IMPLEMENTATION = FAST }; //---------------------------------------- // // other important constants // //---------------------------------------- // define an initial value for CRC // static const ulong CRC_INITIAL_VALUE = 0; // define CRC polynomials // static const ulong CRC_12_POLYNOMIAL = 05401; static const ulong CRC_16_POLYNOMIAL = 0120001; static const ulong CRC_16_CCITT_POLYNOMIAL = 0102010; // CRC checksums use a 256 length table // static const long CRC_TABLE_LENGTH = 256; //---------------------------------------- // // default values and arguments // //---------------------------------------- // define the default value(s) of the class data // // default arguments to methods // //---------------------------------------- // // error codes // //---------------------------------------- static const long ERR = 1600; static const long ERR_POLY = 1601; //--------------------------------------------------------------------------- // // protected data // //---------------------------------------------------------------------------protected: // this section contains data common to all algorithms // // algorithm name // ALGORITHM algorithm_d; // implementation name // IMPLEMENTATION implementation_d; // declare a register to hold the current checksum // ulong cksum_d; // declare a static debug level for all class instantiations // static Integral::DEBUG debug_level_d; // static memory manager // static MemoryManager mgr_d; // initialization flag // boolean is_valid_d; // this section contains data for a specific algorithm // // algorithm: CRC* // implementation: fast // // these implementations use a table lookup // ulong crc_table_d[CRC_TABLE_LENGTH]; //--------------------------------------------------------------------------- // // required public methods // //---------------------------------------------------------------------------public: // method: name // static const SysString& name() { return CLASS_NAME; } // other static methods // static boolean diagnose(Integral::DEBUG debug_level); // method: setDebug // static boolean setDebug(Integral::DEBUG level) { debug_level_d = level; return true; } // other debug methods // boolean debug(const unichar* message) const; // method: destructor // ~Checksum() {} // method: copy constructor // Checksum(const Checksum& arg) { assign(arg); } // other constructor(s) // Checksum(); // assign methods: // boolean assign(const Checksum& arg); // method: operator= // Checksum& operator=(const Checksum& arg) { assign(arg); return *this; } // i/o methods: // these methods are omitted // // equality methods: // boolean eq(const Checksum& arg) const; // method: new // static void* operator new(size_t size) { return mgr_d.get(); } // method: new[] // static void* operator new[](size_t size) { return mgr_d.getBlock(size); } // method: delete // static void operator delete(void* ptr) { mgr_d.release(ptr); } // method: delete[] // static void operator delete[](void* ptr) { mgr_d.releaseBlock(ptr); } // method: setGrowSize // static boolean setGrowSize(long grow_size) { return mgr_d.setGrow(grow_size); } // other memory management methods // boolean clear(Integral::CMODE ctype = Integral::DEF_CMODE); //--------------------------------------------------------------------------- // // class-specific public methods: // set and get methods // //--------------------------------------------------------------------------- // method: setAlgorithm // boolean Checksum::setAlgorithm(ALGORITHM algorithm) { algorithm_d = algorithm; return (!(is_valid_d = false)); } // method: setImplementation // boolean setImplementation(IMPLEMENTATION implementation) { implementation_d = implementation; return (!(is_valid_d = false)); } // method: getAlgorithm // ALGORITHM getAlgorithm() const { return algorithm_d; } // method: getImplementation // IMPLEMENTATION getImplementation() const { return implementation_d; } // method: get CRC value // ulong get() const { return cksum_d; } // method: cast (ulong) conversion operator // a simple way to get the checksum // operator ulong() const { return cksum_d; } //--------------------------------------------------------------------------- // // class-specific public methods: // initialization and computation methods // //--------------------------------------------------------------------------- // initialization methods: // these methods initialize the various class constants and reset the // internal checksum registers // boolean init(); // computational methods: // these methods compute a new checksum // boolean compute(const SysString& input); boolean compute(const byte* input, long nbytes); //--------------------------------------------------------------------------- // // private methods // //---------------------------------------------------------------------------private: // zero-out data in an algorithm dependent manner // boolean reset(); // algorithm-specific computation methods: // these methods are shared by all CRC methods // boolean initCrc(ulong poly); boolean computeCrcFast(const SysString& arg); boolean computeCrcFast(const byte* input, long nbytes);};// end of include file//#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -