aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/meta/read_config_files.d
blob: 57aba7ff6fcc1bafb9a8e0c0027c7bb3b6c1fd74 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/++
  read configuration files<BR>
  - read config files<BR>
  meta_config_files.d
+/
module sdp.meta.read_config_files;
static template configInSite() {
  import
    sdp.meta,
    sdp.output.paths_source,
    std.file,
    std.path;
  final string configInSite(M,E)(M manifest, E env) {
    auto conf_file_details = ConfigFilePaths!()(manifest, env);
    string conf_sdl = conf_file_details.config_filename_site;
    auto possible_config_path_locations = conf_file_details.possible_config_path_locations_local_site;
    string config_file_str;
    foreach(pth; possible_config_path_locations) {
      auto conf_file = asNormalizedPath(chainPath(to!string(pth), conf_sdl)).array;
      if (config_file_str.length > 0) {
        break;
      }
      try {
        if (exists(conf_file)) {
          debug(configfile) {
            writeln(conf_file);
          }
          config_file_str = conf_file.readText;
          break;
        }
      }
      catch (ErrnoException ex) {
      }
      catch (FileException ex) {
      }
    }
    return config_file_str;
  }
}
static template configInDoc() {
  import
    sdp.meta,
    sdp.output.paths_source,
    std.file,
    std.path;
  final string configInDoc(M,E)(M manifest, E env) {
    auto conf_file_details = ConfigFilePaths!()(manifest, env);
    string conf_sdl = conf_file_details.config_filename_document;
    auto possible_config_path_locations = conf_file_details.possible_config_path_locations_document;
    string config_file_str;
    foreach(pth; possible_config_path_locations) {
      auto conf_file = asNormalizedPath(chainPath(to!string(pth), conf_sdl)).array;
      if (config_file_str.length > 0) {
        break;
      }
      try {
        if (exists(conf_file)) {
          debug(configfile) {
            writeln(conf_file);
          }
          config_file_str = conf_file.readText;
          break;
        }
      }
      catch (ErrnoException ex) {
      }
      catch (FileException ex) {
      }
    }
    return config_file_str;
  }
}
/+

+/
static template ConfigSDLang() {
  import sdlang;
  import
    sdp.meta,
    sdp.output.paths_source,
    std.file,
    std.path;
  auto ConfigSDLang(string configuration, string conf_sdl_filename) {
    Tag sdl_root_conf;
    try {
      sdl_root_conf = parseSource(configuration);
    }
    catch(ParseException e) {
      stderr.writeln("SDLang problem with content for ", conf_sdl_filename);
      stderr.writeln(e.msg);
    }
    return sdl_root_conf;
  }
}
/+
+/
static template configReadSite() {
  import
    sdp.meta,
    sdp.output.paths_source,
    std.file,
    std.path;
  
  final auto configReadSite(M,E)(M manifest, E env) {
    auto configuration = configInSite!()(manifest, env);
    auto conf_file_details = ConfigFilePaths!()(manifest, env);
    string conf_sdl = conf_file_details.config_filename_site;
    auto sdl_root = ConfigSDLang!()(configuration, conf_sdl);
    return sdl_root;
  }
}
static template configReadDoc() {
  import
    sdp.meta,
    sdp.output.paths_source,
    std.file,
    std.path;
  
  final auto configReadDoc(M,E)(M manifest, E env) {
    auto configuration = configInDoc!()(manifest, env);
    auto conf_file_details = ConfigFilePaths!()(manifest, env);
    string conf_sdl = conf_file_details.config_filename_document;
    auto sdl_root = ConfigSDLang!()(configuration, conf_sdl);
    return sdl_root;
  }
}