summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/expand_types.cpp
blob: 9e8cd1ee69ed472327549104aa732da47266b2cb (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
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
#include <stdint.h>
#include <stdlib.h>
#include <cxxabi.h>
#include <iostream>
#include <string>
#include <typeinfo>

#include "qpid/types/Variant.h"

void print_type(const char* type, const char* mangled_type)
{
  int status;
  char* demangled_type =
    abi::__cxa_demangle(mangled_type, 0, 0, &status);
  if (demangled_type) {
    std::cout << "s/" << type << "/" << demangled_type << "/g\n";
  } 
  ::free(demangled_type);
}

#define mangle_name(x) typeid(x).name()

#define print_subst(x) print_type(#x, mangle_name(x))

int main() {
  print_subst(uint64_t);
  print_subst(uint32_t);
  print_subst(uint16_t);
  print_subst(uint8_t);
  print_subst(size_t);
  print_subst(int64_t);
  print_subst(int32_t);
  print_subst(int16_t);
  print_subst(int8_t);
  print_subst(std::string);
  print_subst(qpid::types::Variant::Map);
  print_subst(qpid::types::Variant::List);
}