source: trunk/bin/Parameter.h @ 1015

Last change on this file since 1015 was 1015, checked in by Peter Johansson, 14 years ago

closes #438. adding an option --format

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1#ifndef _theplu_svndigest_parameter_
2#define _theplu_svndigest_parameter_
3
4// $Id: Parameter.h 1015 2010-01-09 14:16:03Z peter $
5
6/*
7  Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
8  Copyright (C) 2009 Peter Johansson
9
10  This file is part of svndigest, http://dev.thep.lu.se/svndigest
11
12  svndigest is free software; you can redistribute it and/or modify it
13  under the terms of the GNU General Public License as published by
14  the Free Software Foundation; either version 3 of the License, or
15  (at your option) any later version.
16
17  svndigest is distributed in the hope that it will be useful, but
18  WITHOUT ANY WARRANTY; without even the implied warranty of
19  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  General Public License for more details.
21
22  You should have received a copy of the GNU General Public License
23  along with svndigest. If not, see <http://www.gnu.org/licenses/>.
24*/
25
26#include "OptionVersion.h"
27
28#include "yat/CommandLine.h"
29#include "yat/OptionArg.h"
30#include "yat/OptionHelp.h"
31#include "yat/OptionSwitch.h"
32
33
34#include <string>
35
36namespace theplu {
37namespace yat { 
38namespace utility {
39  class OptionHelp;
40  class OptionSwitch;
41}}
42namespace svndigest {
43
44  class OptionVersion;
45
46  // class for command line options.
47  class Parameter {
48  public:
49    Parameter( int argc, char *argv[]);
50    virtual ~Parameter(void);
51    std::string config_file(void) const;
52   
53    bool copyright(void) const;
54    bool force(void) const;
55    bool generate_config(void) const ;
56    bool ignore_cache(void) const;
57    const yat::utility::OptionArg<std::string>& format(void) const;
58    bool report(void) const;
59    bool revisions(void) const;
60    /// @return absolute path to root directory
61    std::string root(void) const;
62    /// @return absolute path to target directory
63    std::string targetdir(void) const;
64    bool verbose(void) const;
65
66  private:
67    void analyse(void);
68    // throw cmd_error if path doesn't exist
69    void check_existence(std::string path) const;
70    // throw cmd_error if path is not dir
71    void check_is_dir(std::string path) const;
72    // throw cmd_error if path is not readable
73    void check_readable(std::string path) const;
74
75    void init(void);
76
77    yat::utility::CommandLine cmd_;
78    yat::utility::OptionArg<std::string> config_file_;
79    yat::utility::OptionSwitch copyright_;
80    yat::utility::OptionSwitch force_;
81    yat::utility::OptionSwitch generate_config_;
82    yat::utility::OptionHelp help_;
83    yat::utility::OptionSwitch ignore_cache_;
84    yat::utility::OptionArg<std::string> format_;
85    yat::utility::OptionSwitch report_;
86    yat::utility::OptionSwitch revisions_;
87    yat::utility::OptionArg<std::string> root_;
88    yat::utility::OptionArg<std::string> target_;
89    yat::utility::OptionSwitch verbose_;
90    OptionVersion version_;
91
92  };
93
94}} // of namespace svndigest and namespace theplu
95
96#endif
Note: See TracBrowser for help on using the repository browser.