omemory.hpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*====================================================================*
  2. *
  3. * omemory.hpp - omemory class declaration;
  4. *
  5. * static memory manipulation methods;
  6. *
  7. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  8. * Copyright 2001-2006 by Charles Maier Associates;
  9. * Licensed under the Internet Software Consortium License;
  10. *
  11. *--------------------------------------------------------------------*/
  12. #ifndef oMEMORY_HEADER
  13. #define oMEMORY_HEADER
  14. /*====================================================================*
  15. * system header files;
  16. *--------------------------------------------------------------------*/
  17. #include <stdint.h>
  18. #include <iostream>
  19. /*====================================================================*
  20. * custom header files;
  21. *--------------------------------------------------------------------*/
  22. #include "../classes/stdafx.hpp"
  23. /*====================================================================*
  24. * class datatypes;
  25. *--------------------------------------------------------------------*/
  26. typedef unsigned char byte;
  27. /*====================================================================*
  28. * class declaration;
  29. *--------------------------------------------------------------------*/
  30. class __declspec (dllexport) omemory
  31. {
  32. public:
  33. omemory ();
  34. virtual ~ omemory ();
  35. static void endian (void *, size_t extent);
  36. static void swap (void *, void *, size_t extent);
  37. static void * encode (void * memory, void const * source, size_t extent);
  38. static void const * decode (void const * memory, void * target, size_t extent);
  39. static void memtext (char const * string, char buffer [], size_t length);
  40. static signed memincr (void * memory, size_t extent);
  41. static signed memdecr (void * memory, size_t extent);
  42. static signed strincr (void * memory, size_t extent, uint8_t minimum, uint8_t maximum);
  43. static signed strdecr (void * memory, size_t extent, uint8_t minimum, uint8_t maximum);
  44. static uint16_t checksum16 (void const * memory, size_t extent, uint16_t checksum);
  45. static uint32_t checksum32 (void const * memory, size_t extent, uint32_t checksum);
  46. static char * binstring (char buffer [], size_t length, void const * memory, size_t extent);
  47. static char * decstring (char buffer [], size_t length, void const * memory, size_t extent);
  48. static char * hexstring (char buffer [], size_t length, void const * memory, size_t extent);
  49. static char * serial (char buffer [], size_t length, unsigned value, unsigned radix);
  50. static char * serial (char buffer [], size_t length, unsigned value, unsigned radix, unsigned c);
  51. static size_t hexencode (void * memory, size_t extent, char const * string);
  52. static size_t decencode (void * memory, size_t extent, char const * string);
  53. static size_t binencode (void * memory, size_t extent, char const * string);
  54. static size_t hexdecode (void const * memory, size_t extent, char buffer [], size_t length);
  55. static size_t decdecode (void const * memory, size_t extent, char buffer [], size_t length);
  56. static size_t bindecode (void const * memory, size_t extent, char buffer [], size_t length);
  57. static size_t hexin (void * memory, size_t extent, std::istream * stream);
  58. static void hexdump (void const * memory, size_t offset, size_t extent, std::ostream * stream);
  59. static void hexview (void const * memory, size_t offset, size_t extent, std::ostream * stream);
  60. static void binout (void const * memory, size_t extent, signed c, std::ostream * steam);
  61. static void hexout (void const * memory, size_t extent, signed c, std::ostream * stream);
  62. static void decout (void const * memory, size_t extent, signed c, std::ostream * stream);
  63. static signed todigit (signed c);
  64. static char const digits [];
  65. static char bin_extender;
  66. static char dec_extender;
  67. static char hex_extender;
  68. private:
  69. static char chr_nonprint;
  70. };
  71. /*====================================================================*
  72. * end declaration;
  73. *--------------------------------------------------------------------*/
  74. #endif