aboutsummaryrefslogtreecommitdiff
blob: bd1c981ad3a37ca00b42ebb0c2df0b3956176ca8 (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
/* This file was partly copied from Paludis src/clients/instruo/instruo.cc.
 * The metadata generation logic is reimplemented with libbash. This file is
 * licensed as follows: */

/*
 * Copyright (c) 2007, 2008, 2009, 2010 Ciaran McCreesh
 *
 * This file is part of the Paludis package manager. Paludis is free software;
 * you can redistribute it and/or modify it under the terms of the GNU General
 * Public License version 2, as published by the Free Software Foundation.
 *
 * Paludis 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 General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 * Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <algorithm>
#include <fstream>
#include <functional>
#include <iostream>
#include <map>

#include <paludis/args/do_help.hh>
#include <paludis/about.hh>
#include <paludis/action.hh>
#include <paludis/package_id.hh>
#include <paludis/generator.hh>
#include <paludis/filter.hh>
#include <paludis/filtered_generator.hh>
#include <paludis/selection.hh>
#include <paludis/util/system.hh>
#include <paludis/util/join.hh>
#include <paludis/util/log.hh>
#include <paludis/util/sequence.hh>
#include <paludis/util/map.hh>
#include <paludis/util/visitor_cast.hh>
#include <paludis/util/set.hh>
#include <paludis/util/make_named_values.hh>
#include <paludis/util/mutex.hh>
#include <paludis/util/thread_pool.hh>
#include <paludis/util/destringify.hh>
#include <paludis/util/safe_ofstream.hh>
#include <paludis/util/pretty_print.hh>
#include <paludis/util/indirect_iterator-impl.hh>
#include <paludis/util/timestamp.hh>
#include <paludis/util/accept_visitor.hh>
#include <paludis/environments/no_config/no_config_environment.hh>
#include <paludis/package_database.hh>
#include <paludis/metadata_key.hh>

#include "command_line.h"
#include "libbash.h"
#include "utils/metadata.h"

using namespace paludis;
using std::cout;
using std::cerr;
using std::endl;

void worker(const std::shared_ptr<PackageIDSequence> &ids)
{
  std::unordered_map<std::string, std::vector<std::string>> variables;

  std::shared_ptr<const PackageID> id;
  unsigned total(0);
  CategoryNamePart old_cat("OLDCAT");
  while(!ids->empty())
  {
    id = *ids->begin();
    ids->pop_front();
    if (id->name().category() != old_cat)
    {
      std::cout << "Processing " << stringify(id->name().category()) << "..." << std::endl;
      old_cat = id->name().category();
      FSPath(CommandLine::get_instance()->a_output_directory.argument() + "/" +
          stringify(id->name().category())).mkdir(0755,  {fspmkdo_ok_if_exists});
      ++total;
    }

    Context i_context("When generating metadata for ID '" + stringify(*id) + "':");

    variables.clear();
    variables["PN"].push_back(stringify(id->name().package()));
    variables["PV"].push_back(stringify(id->version().remove_revision()));
    variables["P"].push_back(stringify(id->name().package()) + "-" +
                             stringify(id->version().remove_revision()));
    variables["PR"].push_back(id->version().revision_only());
    variables["PVR"].push_back(stringify(id->version()));
    variables["PF"].push_back(stringify(id->name().package()) + "-" + stringify(id->version()));
    variables["CATEGORY"].push_back(stringify(id->name().category()));
    std::vector<std::string> functions;

    std::string ebuild_path(CommandLine::get_instance()->a_repository_directory.argument() +
                            variables["CATEGORY"][0] + "/" +
                            variables["PN"][0] + "/" +
                            variables["PN"][0] + "-" +
                            variables["PVR"][0] + ".ebuild");
    try
    {
      libbash::interpret(ebuild_path, variables, functions);
    }
    catch(const interpreter_exception& e)
    {
      cerr << "Exception occurred while interpreting " << ebuild_path << ". The error message is:\n"
        << e.what() << endl;
      continue;
    }

    std::string output_path(CommandLine::get_instance()->a_output_directory.argument() + "/" +
                            variables["CATEGORY"][0] + "/" +
                            variables["PN"][0] + "-" +
                            variables["PVR"][0]);
    FSPath(output_path).dirname().mkdir(0755, {fspmkdo_ok_if_exists});
    std::ofstream output(output_path, std::ofstream::out | std::ofstream::trunc);
    write_metadata(output, variables, functions);
  }
}

int main(int argc, char** argv)
{
  try
  {
    std::string options(paludis::getenv_with_default("INSTRUO_OPTIONS", ""));
    if (! options.empty())
        options = "(" + options + ") ";
    options += join(argv + 1, argv + argc, " ");

    Context context(std::string("In program ") + argv[0] + " " + options + ":");

    CommandLine::get_instance()->run(argc, argv, "instruo", "INSTRUO_OPTIONS", "INSTRUO_CMDLINE");

    if (CommandLine::get_instance()->a_help.specified())
        throw args::DoHelp();

    if (CommandLine::get_instance()->a_log_level.specified())
        Log::get_instance()->set_log_level(CommandLine::get_instance()->a_log_level.option());
    else
        Log::get_instance()->set_log_level(ll_qa);

    if (1 < (
                CommandLine::get_instance()->a_generate_cache.specified() +
                CommandLine::get_instance()->a_version.specified()
            ))
        throw args::DoHelp("you should specify exactly one action");

    if (! CommandLine::get_instance()->a_repository_directory.specified())
        CommandLine::get_instance()->a_repository_directory.set_argument(stringify(FSPath::cwd()));

    if (CommandLine::get_instance()->a_version.specified())
    {
        cout << "instruo, part of " << PALUDIS_PACKAGE << " " << PALUDIS_VERSION_MAJOR << "."
            << PALUDIS_VERSION_MINOR << "." << PALUDIS_VERSION_MICRO << PALUDIS_VERSION_SUFFIX;
        if (! std::string(PALUDIS_GIT_HEAD).empty())
            cout << " git " << PALUDIS_GIT_HEAD;
        cout << endl << endl;
        cout << "Paludis comes with ABSOLUTELY NO WARRANTY. Paludis is free software, and you" << endl;
        cout << "are welcome to redistribute it under the terms of the GNU General Public" << endl;
        cout << "License, version 2." << endl;

        return EXIT_SUCCESS;
    }

    if ((
                CommandLine::get_instance()->a_repository_directory.specified() +
                CommandLine::get_instance()->a_output_directory.specified()
        ) < 1)
        throw args::DoHelp("at least one of '--" + CommandLine::get_instance()->a_repository_directory.long_name() + "' or '--"
                + CommandLine::get_instance()->a_output_directory.long_name() + "' must be specified");

    if (! CommandLine::get_instance()->a_output_directory.specified())
        CommandLine::get_instance()->a_output_directory.set_argument(stringify(FSPath::cwd()));

    std::shared_ptr<FSPathSequence> extra_repository_dirs(std::make_shared<FSPathSequence>());
    for (args::StringSequenceArg::ConstIterator d(CommandLine::get_instance()->a_extra_repository_dir.begin_args()),
            d_end(CommandLine::get_instance()->a_extra_repository_dir.end_args()) ;
            d != d_end ; ++d)
        extra_repository_dirs->push_back(FSPath(*d));

    std::shared_ptr<Map<std::string, std::string> > keys(std::make_shared<Map<std::string, std::string>>());
    keys->insert("append_repository_name_to_write_cache", "false");
    NoConfigEnvironment env(make_named_values<no_config_environment::Params>(
                n::accept_unstable() = true,
                n::disable_metadata_cache() = true,
                n::extra_accept_keywords() = "",
                n::extra_params() = keys,
                n::extra_repository_dirs() = extra_repository_dirs,
                n::master_repository_name() = CommandLine::get_instance()->a_master_repository_name.argument(),
                n::profiles_if_not_auto() = "",
                n::repository_dir() = CommandLine::get_instance()->a_repository_directory.argument(),
                n::repository_type() = no_config_environment::ncer_ebuild,
                n::write_cache() = CommandLine::get_instance()->a_output_directory.argument()
            ));

    FSPath(CommandLine::get_instance()->a_output_directory.argument()).mkdir(0755,  {fspmkdo_ok_if_exists});

    std::shared_ptr<PackageIDSequence> ids(env[selection::AllVersionsSorted(
                generator::InRepository(env.main_repository()->name()))]);
    worker(ids);
  }
  catch (const paludis::args::ArgsError & e)
  {
      cerr << "Usage error: " << e.message() << endl;
      cerr << "Try " << argv[0] << " --help" << endl;
      return EXIT_FAILURE;
  }
  catch (const args::DoHelp & h)
  {
      if (h.message.empty())
      {
          cout << "Usage: " << argv[0] << " [options]" << endl;
          cout << endl;
          cout << *CommandLine::get_instance();
          return EXIT_SUCCESS;
      }
      else
      {
          cerr << "Usage error: " << h.message << endl;
          cerr << "Try " << argv[0] << " --help" << endl;
          return EXIT_FAILURE;
      }
  }
  catch (const Exception & e)
  {
      cout << endl;
      cerr << "Unhandled exception:" << endl
          << "  * " << e.backtrace("\n  * ")
          << e.message() << " (" << e.what() << ")" << endl;
      return EXIT_FAILURE;
  }
  catch (const std::exception & e)
  {
      cout << endl;
      cerr << "Unhandled exception:" << endl
          << "  * " << e.what() << endl;
      return EXIT_FAILURE;
  }
  catch (...)
  {
      cout << endl;
      cerr << "Unhandled exception:" << endl
          << "  * Unknown exception type. Ouch..." << endl;
      return EXIT_FAILURE;
  }

  return EXIT_SUCCESS;
}