summaryrefslogtreecommitdiffstats
path: root/bin/core/imag/build.rs
blob: 7d91385c81c8254d96aa4d01bb05d374221e6190 (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
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2019 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
//

extern crate clap;
#[macro_use]
extern crate log;
#[macro_use]
extern crate libimagrt;
extern crate libimagerror;
extern crate libimagstore;
extern crate libimagentrytag;
extern crate libimagutil;

use clap::Shell;
use libimagrt::runtime::Runtime;

mod toplevelbuildscript {
    include!("../../../build.rs");
    pub fn build() {
        self::main();
    }
}

/// This macro generates mods with the given '$modulename',
/// whose content is the file given with `$path`.
/// In this case, It is used specifically to include the
/// `ui.rs` files of the imag binaries.
/// The imag project (accidentally?) followed the convention
/// to write a `ui.rs` containing the function
/// `fn build_ui(app : App) -> App`.
/// This macro allows us to use the same named functions by
/// putting them each into their own module.
macro_rules! gen_mods_buildui {
    ($(($path:expr, $modulename:ident)$(,)*)*) => (
        $(
            #[allow(unused)]
            mod $modulename {
                include!($path);
            }
         )*
    )
}

/// This macro reduces boilerplate code.
///
/// For example: `build_subcommand!("counter", imagcounter)`
/// will result in the following code:
/// ```ignore
/// imagcounter::build_ui(Runtime::get_default_cli_builder(
///     "counter",
///     &version!()[..],
///     "counter"))
/// ```
/// As for the `&version!()[..]` part, it does not matter
/// which version the subcommand is getting here, as the
/// output of this script is a completion script, which
/// does not contain information about the version at all.
macro_rules! build_subcommand {
    ($name:expr, $module:ident, $version:ident) => (
        $module::build_ui(Runtime::get_default_cli_builder($name, &$version, $name))
    )
}

// Actually generates the module.
gen_mods_buildui!(
    ("../../../bin/core/imag-annotate/src/ui.rs"    , imagannotate)    ,
    ("../../../bin/core/imag-category/src/ui.rs"    , imagcategory)    ,
    ("../../../bin/core/imag-diagnostics/src/ui.rs" , imagdiagnostics) ,
    ("../../../bin/core/imag-edit/src/ui.rs"        , imagedit)        ,
    ("../../../bin/core/imag-git/src/ui.rs"         , imaggit)         ,
    ("../../../bin/core/imag-gps/src/ui.rs"         , imaggps)         ,
    ("../../../bin/core/imag-grep/src/ui.rs"        , imaggrep)        ,
    ("../../../bin/core/imag-ids/src/ui.rs"         , imagids)         ,
    ("../../../bin/core/imag-init/src/ui.rs"        , imaginit)        ,
    ("../../../bin/core/imag-link/src/ui.rs"        , imaglink)        ,
    ("../../../bin/core/imag-mv/src/ui.rs"          , imagmv)          ,
    ("../../../bin/core/imag-ref/src/ui.rs"         , imagref)         ,
    ("../../../bin/core/imag-store/src/ui.rs"       , imagstore)       ,
    ("../../../bin/core/imag-tag/src/ui.rs"         , imagtag)         ,
    ("../../../bin/core/imag-view/src/ui.rs"        , imagview)        ,
    ("../../../bin/domain/imag-bookmark/src/ui.rs"  , imagbookmark)    ,
    ("../../../bin/domain/imag-contact/src/ui.rs"   , imagcontact)     ,
    ("../../../bin/domain/imag-diary/src/ui.rs"     , imagdiary)       ,
    ("../../../bin/domain/imag-habit/src/ui.rs"     , imaghabit)       ,
    ("../../../bin/domain/imag-log/src/ui.rs"       , imaglog)         ,
    ("../../../bin/domain/imag-mail/src/ui.rs"      , imagmail)        ,
    ("../../../bin/domain/imag-notes/src/ui.rs"     , imagnotes)       ,
    ("../../../bin/domain/imag-timetrack/src/ui.rs" , imagtimetrack)   ,
    ("../../../bin/domain/imag-todo/src/ui.rs"      , imagtodo)        ,
    ("../../../bin/domain/imag-wiki/src/ui.rs"      , imagwiki)        ,
);

fn main() {
    // Make the `imag`-App...
    let version = make_imag_version!();
    let mut app = Runtime::get_default_cli_builder(
        "imag",
        &version[..],
        "imag")
        // and add all the subapps as subcommands.
        .subcommand(build_subcommand!("annotate"    , imagannotate    , version))
        .subcommand(build_subcommand!("bookmark"    , imagbookmark    , version))
        .subcommand(build_subcommand!("category"    , imagcategory    , version))
        .subcommand(build_subcommand!("contact"     , imagcontact     , version))
        .subcommand(build_subcommand!("diagnostics" , imagdiagnostics , version))
        .subcommand(build_subcommand!("diary"       , imagdiary       , version))
        .subcommand(build_subcommand!("edit"        , imagedit        , version))
        .subcommand(build_subcommand!("git"         , imaggit         , version))
        .subcommand(build_subcommand!("gps"         , imaggps         , version))
        .subcommand(build_subcommand!("grep"        , imaggrep        , version))
        .subcommand(build_subcommand!("habit"       , imaghabit       , version))
        .subcommand(build_subcommand!("ids"         , imagids         , version))
        .subcommand(build_subcommand!("init"        , imaginit        , version))
        .subcommand(build_subcommand!("link"        , imaglink        , version))
        .subcommand(build_subcommand!("log"         , imaglog         , version))
        .subcommand(build_subcommand!("mail"        , imagmail        , version))
        .subcommand(build_subcommand!("mv"          , imagmv          , version))
        .subcommand(build_subcommand!("notes"       , imagnotes       , version))
        .subcommand(build_subcommand!("ref"         , imagref         , version))
        .subcommand(build_subcommand!("store"       , imagstore       , version))
        .subcommand(build_subcommand!("tag"         , imagtag         , version))
        .subcommand(build_subcommand!("timetrack"   , imagtimetrack   , version))
        .subcommand(build_subcommand!("todo"        , imagtodo        , version))
        .subcommand(build_subcommand!("view"        , imagview        , version))
        .subcommand(build_subcommand!("wiki"        , imagwiki        , version));

    // Actually generates the completion files
    app.gen_completions("imag", Shell::Bash, "../../../target/");
    app.gen_completions("imag", Shell::Fish, "../../../target/");
    app.gen_completions("imag", Shell::Zsh,  "../../../target/");

    toplevelbuildscript::build();
}