summaryrefslogtreecommitdiffstats
path: root/bin/core/imag/src/main.rs
blob: ea62eb7b81d8510586f82286e0dec8a2bf29ede3 (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2020 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

#![forbid(unsafe_code)]

#![deny(
    non_camel_case_types,
    non_snake_case,
    path_statements,
    trivial_numeric_casts,
    unstable_features,
    unused_allocation,
    unused_import_braces,
    unused_imports,
    unused_must_use,
    unused_mut,
    unused_qualifications,
    while_true,
)]

extern crate clap;
#[macro_use] extern crate log;
#[macro_use] extern crate failure;
extern crate walkdir;
extern crate toml;
extern crate toml_query;

#[macro_use] extern crate libimagrt;
extern crate libimagerror;

use std::env;
use std::process::Command;
use std::process::Stdio;
use std::io::ErrorKind;
use std::io::{stdout, Write};
use std::collections::BTreeMap;
use std::path::PathBuf;

use walkdir::WalkDir;
use clap::{Arg, ArgMatches, AppSettings, SubCommand};
use toml::Value;
use toml_query::read::TomlValueReadExt;
use failure::Error;
use failure::ResultExt;
use failure::err_msg;
use failure::Fallible as Result;

use libimagrt::runtime::Runtime;
use libimagrt::spec::CliSpec;
use libimagrt::configuration::InternalConfiguration;

/// Returns the helptext, putting the Strings in cmds as possible
/// subcommands into it
fn help_text(cmds: Vec<String>) -> String {
    format!(r#"

     _
    (_)_ __ ___   __ _  __ _
    | | '_ \` _ \/ _\`|/ _\`|
    | | | | | | | (_| | (_| |
    |_|_| |_| |_|\__,_|\__, |
                       |___/
    -------------------------

    Usage: imag [--version | --versions | -h | --help] <command> <args...>

    imag - the personal information management suite for the commandline

    imag is a PIM suite for the commandline. It consists of several commands,
    called "modules". Each module implements one PIM aspect and all of these
    modules can be used independently.

    Available commands:

    {imagbins}

    Call a command with 'imag <command> <args>'
    Each command can be called with "--help" to get the respective helptext.

    Please visit https://github.com/matthiasbeyer/imag to view the source code,
    follow the development of imag or maybe even contribute to imag.

    imag is free software. It is released under the terms of LGPLv2.1

    (c) 2015-2018 Matthias Beyer and contributors"#,
        imagbins = cmds
            .into_iter()
            .map(|cmd| format!("\t{}\n", cmd))
            .fold(String::new(), |s, c| {
                s + c.as_str()
            }))
}

/// Returns the list of imag-* executables found in $PATH
fn get_commands() -> Result<Vec<String>> {
    let mut v = env::var("PATH")?
        .split(':')
        .flat_map(|elem| {
            WalkDir::new(elem)
                .max_depth(1)
                .into_iter()
                .filter(|path| match *path {
                    Ok(ref p) => p.file_name().to_str().map_or(false, |f| f.starts_with("imag-")),
                    Err(_)    => false,
                })
                .filter_map(|r| r.ok())
                .filter_map(|path| path
                    .file_name()
                   .to_str()
                   .and_then(|s| s.splitn(2, '-').nth(1).map(String::from))
                )
        })
        .filter(|path| if cfg!(debug_assertions) {
            // if we compile in debug mode during development, ignore everything that ends with
            // ".d", as developers might use the ./target/debug/ directory directly in `$PATH`.
            !path.ends_with(".d")
        } else {
            true
        })
        .collect::<Vec<String>>();

    v.sort();
    Ok(v)
}


fn main() -> Result<()> {
    // Initialize the Runtime and build the CLI
    let appname  = "imag";
    let version  = make_imag_version!();
    let about    = "imag - the PIM suite for the commandline";
    let commands = get_commands()?;
    let helptext = help_text(commands.clone());
    let mut app  = Runtime::get_default_cli_builder(appname, &version, about)
        .settings(&[AppSettings::AllowExternalSubcommands, AppSettings::ArgRequiredElseHelp])
        .arg(Arg::with_name("version")
             .long("version")
             .takes_value(false)
             .required(false)
             .multiple(false)
             .help("Get the version of imag"))
        .arg(Arg::with_name("versions")
             .long("versions")
             .takes_value(false)
             .required(false)
             .multiple(false)
             .help("Get the versions of the imag commands"))
        .subcommand(SubCommand::with_name("help").help("Show help"))
        .after_help(helptext.as_str());

    let long_help = {
        let mut v = vec![];
        app.write_long_help(&mut v)?;
        String::from_utf8(v).map_err(|_| err_msg("UTF8 Error"))?
    };
    let print_help = app.clone().get_matches().subcommand_name().map(|h| h == "help").unwrap_or(false);

    let mut out  = stdout();
    if print_help {
        writeln!(out, "{}", long_help).map_err(Error::from)
    } else {
        let enable_logging = app.enable_logging();
        let matches = app.matches();

        let rtp = ::libimagrt::runtime::get_rtp_match(&matches)?;
        let configpath = matches
            .value_of("config")
            .map_or_else(|| rtp.clone(), PathBuf::from);
        debug!("Config path = {:?}", configpath);
        let config = ::libimagrt::configuration::fetch_config(&configpath)?;

        if enable_logging {
            Runtime::init_logger(&matches, config.as_ref())
        }

        debug!("matches: {:?}", matches);

        // Begin checking for arguments

        if matches.is_present("version") {
            debug!("Showing version");
            writeln!(out, "imag {}", env!("CARGO_PKG_VERSION")).map_err(Error::from)
        } else if matches.is_present("versions") {
            debug!("Showing versions");
            commands
                .iter()
                .map(|command| {
                    match Command::new(format!("{}-{}", appname, command))
                        .stdin(::std::process::Stdio::inherit())
                        .stdout(::std::process::Stdio::piped())
                        .stderr(::std::process::Stdio::inherit())
                        .arg("--version")
                        .output()
                        .map(|v| v.stdout)
                    {
                        Ok(s) => match String::from_utf8(s) {
                            Ok(s) => format!("{:15} -> {}", command, s),
                            Err(e) => format!("UTF8 Error while working with output of imag{}: {:?}", command, e),
                        },
                        Err(e) => format!("Failed calling imag-{} -> {:?}", command, e),
                    }
                })
                .fold(Ok(()), |_, line| {
                    // The amount of newlines may differ depending on the subprocess
                    writeln!(out, "{}", line.trim()).map_err(Error::from)
                })
        } else {
            let aliases = fetch_aliases(config.as_ref())
                .map_err(Error::from)
                .context("Error while fetching aliases from configuration file")?;

            // Matches any subcommand given, except calling for example 'imag --versions', as this option
            // does not exit. There's nothing to do in such a case
            if let (subcommand, Some(scmd)) = matches.subcommand() {
                // Get all given arguments and further subcommands to pass to
                // the imag-<> binary
                // Providing no arguments is OK, and is therefore ignored here
                let mut subcommand_args : Vec<String> = match scmd.values_of("") {
                    Some(values) => values.map(String::from).collect(),
                    None => Vec::new()
                };

                debug!("Processing forwarding of commandline arguments");
                forward_commandline_arguments(&matches, &mut subcommand_args);

                let subcommand = String::from(subcommand);
                let subcommand = aliases.get(&subcommand).cloned().unwrap_or(subcommand);

                debug!("Calling '{}-{}' with args: {:?}", appname, subcommand, subcommand_args);

                // Create a Command, and pass it the gathered arguments
                match Command::new(format!("{}-{}", appname, subcommand))
                    .stdin(Stdio::inherit())
                    .stdout(Stdio::inherit())
                    .stderr(Stdio::inherit())
                    .args(&subcommand_args[..])
                    .spawn()
                    .and_then(|mut c