Welcome to mirror list, hosted at ThFree Co, Russian Federation.

integer_to_string.hh « util - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ac25bd782b6540f7e34f2ad8437d6d7e631af0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#ifndef UTIL_INTEGER_TO_STRING_H
#define UTIL_INTEGER_TO_STRING_H
#include <cstddef>
#include <stdint.h>

namespace util {

/* These functions convert integers to strings and return the end pointer.
 */
char *ToString(uint32_t value, char *to);
char *ToString(uint64_t value, char *to);

// Implemented as wrappers to above
char *ToString(int32_t value, char *to);
char *ToString(int64_t value, char *to);

// Calls the 32-bit versions for now.
char *ToString(uint16_t value, char *to);
char *ToString(int16_t value, char *to);

char *ToString(const void *value, char *to);

inline char *ToString(bool value, char *to) {
  *to++ = '0' + value;
  return to;
}

// How many bytes to reserve in the buffer for these strings:
// g++ 4.9.1 doesn't work with this:
// static const std::size_t kBytes = 5;
// So use enum.
template <class T> struct ToStringBuf;
template <> struct ToStringBuf<bool> {
  enum { kBytes = 1 };
};
template <> struct ToStringBuf<uint16_t> {
  enum { kBytes = 5 };
};
template <> struct ToStringBuf<int16_t> {
  enum { kBytes = 6 };
};
template <> struct ToStringBuf<uint32_t> {
  enum { kBytes = 10 };
};
template <> struct ToStringBuf<int32_t> {
  enum { kBytes = 11 };
};
template <> struct ToStringBuf<uint64_t> {
  enum { kBytes = 20 };
};
template <> struct ToStringBuf<int64_t> {
  // Not a typo.  2^63 has 19 digits.
  enum { kBytes = 20 };
};

template <> struct ToStringBuf<const void*> {
  // Either 18 on 64-bit or 10 on 32-bit.
  enum { kBytes = sizeof(const void*) * 2 + 2 };
};

// Maximum over this and float.
enum { kToStringMaxBytes = 20 };

} // namespace util

#endif // UTIL_INTEGER_TO_STRING_H