b33cf3410f653171ad9f2e7602ec9ca754523509
[oota-llvm.git] / lib / Object / YAML.cpp
1 //===- YAML.cpp - YAMLIO utilities for object files -----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines utility classes for handling the YAML representation of
11 // object files.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Object/YAML.h"
16 #include "llvm/Support/raw_ostream.h"
17
18 using namespace llvm;
19 using namespace object::yaml;
20
21 void yaml::ScalarTraits<object::yaml::BinaryRef>::output(
22     const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
23   ArrayRef<uint8_t> Data = Val.getBinary();
24   for (ArrayRef<uint8_t>::iterator I = Data.begin(), E = Data.end(); I != E;
25        ++I) {
26     uint8_t Byte = *I;
27     Out << hexdigit(Byte >> 4);
28     Out << hexdigit(Byte & 0xf);
29   }
30 }
31
32 // Can't find this anywhere else in the codebase (clang has one, but it has
33 // some baggage). Deduplicate as required.
34 static bool isHexDigit(uint8_t C) {
35   return ('0' <= C && C <= '9') ||
36          ('A' <= C && C <= 'F') ||
37          ('a' <= C && C <= 'f');
38 }
39
40 StringRef yaml::ScalarTraits<object::yaml::BinaryRef>::input(
41     StringRef Scalar, void *, object::yaml::BinaryRef &Val) {
42   if (Scalar.size() % 2 != 0)
43     return "BinaryRef hex string must contain an even number of nybbles.";
44   // TODO: Can we improve YAMLIO to permit a more accurate diagnostic here?
45   // (e.g. a caret pointing to the offending character).
46   for (unsigned I = 0, N = Scalar.size(); I != N; ++I)
47     if (!isHexDigit(Scalar[I]))
48       return "BinaryRef hex string must contain only hex digits.";
49   Val = object::yaml::BinaryRef(Scalar);
50   return StringRef();
51 }
52
53 void BinaryRef::writeAsBinary(raw_ostream &OS) const {
54   if (isBinary) {
55     OS.write((const char *)Data.data(), Data.size());
56     return;
57   }
58   for (unsigned I = 0, N = Data.size(); I != N; I += 2) {
59     uint8_t Byte;
60     StringRef((const char *)&Data[I],  2).getAsInteger(16, Byte);
61     OS.write(Byte);
62   }
63 }