~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/convert.cc

Updated an include guard thanks to a nice catch during code review from Jay. Thanks Jay!

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
22
 
 
23
21
#include <drizzled/util/convert.h>
24
22
#include <string>
25
23
#include <iomanip>
27
25
 
28
26
using namespace std;
29
27
 
30
 
namespace drizzled
31
 
{
32
 
 
33
28
uint64_t drizzled_string_to_hex(char *to, const char *from, uint64_t from_size)
34
29
{
35
30
  static const char hex_map[]= "0123456789ABCDEF";
46
41
  return from_size * 2;
47
42
}
48
43
 
49
 
static inline char hex_char_value(char c)
50
 
{
51
 
  if (c >= '0' && c <= '9')
52
 
    return c - '0';
53
 
  else if (c >= 'A' && c <= 'F')
54
 
    return c - 'A' + 10;
55
 
  else if (c >= 'a' && c <= 'f')
56
 
    return c - 'a' + 10;
57
 
  return 0;
58
 
}
59
 
 
60
 
void drizzled_hex_to_string(char *to, const char *from, uint64_t from_size)
61
 
{
62
 
  const char *from_end = from + from_size;
63
 
 
64
 
  while (from != from_end)
65
 
  {
66
 
    *to= hex_char_value(*from++) << 4;
67
 
    if (from != from_end)
68
 
      *to++|= hex_char_value(*from++);
69
 
  }
70
 
}
71
 
 
72
44
void bytesToHexdumpFormat(string &to, const unsigned char *from, size_t from_length)
73
45
{
74
46
  static const char hex_map[]= "0123456789abcdef";
103
75
    line_number.str("");
104
76
  }
105
77
}
106
 
 
107
 
} /* namespace drizzled */