source: trunk/bin/Parameter.cc @ 1082

Last change on this file since 1082 was 1082, checked in by Peter Johansson, 13 years ago

remove force option in svncopyright

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.1 KB
Line 
1// $Id: Parameter.cc 1082 2010-06-08 04:15:53Z peter $
2
3/*
4  Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
5  Copyright (C) 2009, 2010 Peter Johansson
6
7  This file is part of svndigest, http://dev.thep.lu.se/svndigest
8
9  svndigest is free software; you can redistribute it and/or modify it
10  under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 3 of the License, or
12  (at your option) any later version.
13
14  svndigest is distributed in the hope that it will be useful, but
15  WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  General Public License for more details.
18
19  You should have received a copy of the GNU General Public License
20  along with svndigest. If not, see <http://www.gnu.org/licenses/>.
21*/
22
23#include <config.h> // this header file is created by configure
24
25#include "Parameter.h"
26
27#include "OptionVersion.h"
28#include "../lib/utility.h" // to avoid inclusion of yat file
29
30#include "yat/ColumnStream.h"
31#include "yat/Exception.h"
32#include "yat/OptionArg.h"
33#include "yat/OptionHelp.h"
34#include "yat/OptionSwitch.h"
35
36#include <cassert>
37#include <cerrno>
38#include <cstddef>
39#include <cstring>
40#include <fstream>
41#include <iostream>
42#include <sstream>
43#include <stdexcept>
44#include <string>
45#include <sys/stat.h>
46
47namespace theplu {
48namespace svndigest {
49
50  Parameter::Parameter(void)
51    : cmd_( std::string("Mandatory arguments to long options ") + 
52            std::string("are mandatory for short options too.")), 
53      config_file_(cmd_, "config-file", 
54                   "configuration file [<ROOT>/.svndigest/config]"),
55      generate_config_(cmd_, "g,generate-config", 
56                       "write configuration to standard output"),
57      help_(cmd_),
58      ignore_cache_(cmd_, "ignore-cache", 
59                    std::string("ignore cache files and analyze ") +
60                    std::string("everything from repository")),
61      root_(cmd_, "r,root", 
62            "svn controlled directory to perform statistics on [.]"),
63      verbose_(cmd_, "v,verbose", "explain what is being done"),
64      version_(cmd_, "version", "print version information and exit", &verbose_)
65  {
66  }
67
68  void Parameter::parse(int argc, char* argv[])
69  {
70    init();
71    try {
72      cmd_.parse(argc, argv);
73    }
74    catch (yat::utility::cmd_error& e) {
75      std::cerr << e.what() << std::endl;
76      exit (-1);
77    }
78
79    set_default();
80
81    // analyse arguments
82    analyse();
83  }
84
85
86  Parameter::~Parameter(void)
87  {
88  }
89
90
91  void Parameter::analyse(void)
92  {
93    std::string save_wd = pwd();
94
95    // check root but not if -g option given
96    if (!generate_config()) {
97      check_existence(root_.value());
98      check_readable(root_.value());
99      if (chdir(root_.value().c_str())) {
100        std::stringstream ss;
101        ss << cmd_.program_name() << ": cannot read `" << root_.value() << "': " 
102           << strerror(errno);
103        throw yat::utility::cmd_error(ss.str());
104      }
105      root_.value(pwd());
106      chdir(save_wd.c_str());
107
108    }
109
110    // check config file
111    struct stat nodestat;
112    // true also if there is a broken symlink named...
113    bool config_exists = !lstat(config_file_.value().c_str(), &nodestat);
114    // the latter case in order to catch broken symlink
115    if (config_file_.present() || config_exists)
116      // throws if file does not exists
117      check_existence(config_file_.value());
118    if (config_exists) {
119      // throws if file is not readable
120      check_readable(config_file_.value());
121      stat(config_file_.value().c_str(), &nodestat);
122      if (!S_ISREG(nodestat.st_mode)) {
123        std::stringstream ss;
124        ss << cmd_.program_name() << ": `" << config_file_.value() 
125           << "' is not a regular file";
126        throw yat::utility::cmd_error(ss.str());
127      }
128    }
129    analyse2();
130  }
131
132
133  void Parameter::check_existence(std::string path) const
134  {
135    if (node_exist(path))
136      return;
137    std::stringstream ss;
138    ss << cmd_.program_name() << ": cannot stat `" << path << "': " 
139       << strerror(errno);
140    throw yat::utility::cmd_error(ss.str());
141  }
142
143 
144  void Parameter::check_readable(std::string path) const
145  {
146    if (!access_rights(path, "r"))
147      return;
148    std::stringstream ss;
149    ss << cmd_.program_name() << ": cannot open `" << path << "': " 
150       << strerror(errno);
151    throw yat::utility::cmd_error(ss.str());
152  }
153 
154
155  std::string Parameter::config_file(void) const
156  {
157    return config_file_.value();
158  }
159
160
161  bool Parameter::generate_config(void) const
162  {
163    return generate_config_.present();
164  }
165
166
167  bool Parameter::ignore_cache(void) const
168  {
169    return ignore_cache_.present();
170  }
171
172
173  void Parameter::init(void)
174  {
175    // we like the options sorted alphabetically
176    cmd_.sort();
177    config_file_.print_arg("=FILE");
178    root_.print_arg("=ROOT");
179    std::stringstream ss;
180    ss << "Report bugs to " << PACKAGE_BUGREPORT << ".\n"
181       << PACKAGE << " home page: <" << PACKAGE_URL << ">.\n";
182    help_.post_arguments() = ss.str();
183    init2();
184  }
185
186
187  std::string Parameter::root(void) const
188  {
189    return root_.value();
190  }
191
192  void Parameter::set_default(void)
193  {
194    if (!root_.present())
195      root_.value(".");
196
197    if (!config_file_.present())
198      config_file_.value(concatenate_path(root_.value(),".svndigest/config"));
199
200    set_default2();
201  }
202
203
204  bool Parameter::verbose(void) const
205  {
206    return verbose_.present();
207  }
208
209
210}} // of namespace svndigest and namespace theplu
Note: See TracBrowser for help on using the repository browser.