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

PlaceholderParser.hpp « libslic3r « src « xs - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 882b60a925bd87fccdb52b14b933913c14dab80b (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
#ifndef slic3r_PlaceholderParser_hpp_
#define slic3r_PlaceholderParser_hpp_


#include <myinit.h>
#include <map>
#include <string>
#include <vector>
#include "PrintConfig.hpp"


namespace Slic3r {

typedef std::map<std::string, std::string> t_strstr_map;
typedef std::map<std::string, std::vector<std::string> > t_strstrs_map;

class PlaceholderParser
{
    public:
    t_strstr_map _single;
    t_strstrs_map _multiple;
    
    PlaceholderParser();
    void update_timestamp();
    void apply_config(DynamicPrintConfig &config);
    void apply_env_variables();
    void set(const std::string &key, const std::string &value);
    void set(const std::string &key, int value);
    void set(const std::string &key, std::vector<std::string> values);
    std::string process(std::string str) const;
    
    private:
    bool find_and_replace(std::string &source, std::string const &find, std::string const &replace) const;
};

}

#endif