aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/pdb_descr.hpp
blob: 58261a0c456a8448691a930376652a59d8ac0df2 (plain) (blame)
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
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "PDB repository" project.
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.

#pragma once

#include "pdb/all.hpp"

#pragma warning(push, 0)
#include <boost/program_options.hpp>
#pragma warning(pop)

#include <sstream>
#include <string>
#include <vector>

namespace
{
    struct PDB
    {
        pdb::Address online_base;
        std::string path;

        static PDB parse(std::string src)
        {
            static constexpr auto sep = ',';

            const auto sep_pos = src.find(sep);
            if (sep_pos == std::string::npos)
                boost::throw_exception(boost::program_options::invalid_option_value{src});

            pdb::Address online_base;
            if (!pdb::parse_address(online_base, src.substr(0, sep_pos)))
                boost::throw_exception(boost::program_options::invalid_option_value{src});

            return {online_base, src.substr(sep_pos + 1)};
        }

        static pdb::Address parse_address(const std::string& src)
        {
            pdb::Address dest;
            if (!pdb::parse_address(dest, src))
                boost::throw_exception(boost::program_options::invalid_option_value{src});
            return dest;
        }
    };
}

namespace boost
{
    namespace program_options
    {
        template <typename charT>
        void validate(
            boost::any& dest,
            const std::vector<std::basic_string<charT>>& src_tokens,
            PDB*,
            int)
        {
            validators::check_first_occurrence(dest);
            const auto& src_token = validators::get_single_string(src_tokens);
            dest = any{PDB::parse(src_token)};
        }

        template <typename charT>
        void validate(
            boost::any& dest,
            const std::vector<std::basic_string<charT>>& src_tokens,
            pdb::Address*,
            int)
        {
            validators::check_first_occurrence(dest);
            const auto& src_token = validators::get_single_string(src_tokens);
            dest = any{PDB::parse_address(src_token)};
        }
    }
}