aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/utils/pdb_descr.hpp
blob: 6d8aeb268928f0d87cec59d4ed258c7a9fa68601 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                            
            

                             
 
                                       
                                        
 


                                                                                      
 


                                                                                      
 

                                                      
 
                                                               





                                                                                      
 




                                                                      



                                                                          






                                                                      



                                                                          
 
// 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"

#include <boost/program_options.hpp>

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

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;
    }
};

template <typename charT>
void validate(boost::any& dest,
              const std::vector<std::basic_string<charT>>& src_tokens,
              PDB*,
              int) {
    namespace po = boost::program_options;
    po::validators::check_first_occurrence(dest);
    const auto& src_token = po::validators::get_single_string(src_tokens);
    dest = boost::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) {
    namespace po = boost::program_options;
    po::validators::check_first_occurrence(dest);
    const auto& src_token = po::validators::get_single_string(src_tokens);
    dest = boost::any{PDB::parse_address(src_token)};
}