File: ConfigCVSSource.h

package info (click to toggle)
config-manager 0.3-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,180 kB
  • ctags: 802
  • sloc: sh: 8,865; cpp: 2,630; python: 2,191; makefile: 127
file content (70 lines) | stat: -rw-r--r-- 2,312 bytes parent folder | download | duplicates (4)
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
/*
 * Copyright (C) 2003  Robert Collins  <robertc@squid-cache.org>
 * 
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program 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
 * 
 * DO NOT ALTER THE NEXT LINE
 * arch-tag: 36338b91-3298-40cf-ad88-dca8c7215280
 * 
 */

#ifndef   _CM_CONFIGCVSSOURCE_H_
#define   _CM_CONFIGCVSSOURCE_H_

#include <stdexcept>
#include <getopt++/StringOption.h>
#include "ConfigSource.h"

class ConfigCVSSource : public ConfigSource
{

public:
  static ConfigCVSSource* Create(Path const &location,ConfigSource const *mayBeParent) throw (std::exception *);
  ConfigCVSSource();
  ConfigCVSSource(std::string const &url);
  virtual std::string url(bool const &) const;

  virtual void get (std::string const &) const throw (std::exception *);
  virtual void update (std::string const &) const throw(std::exception *);
  virtual int changes (std::string const &) const throw(std::exception *);
  virtual int missing (std::string const &) const throw(std::exception *);
  virtual void ignore (ConfigSource const *, std::string const &) const throw (std::exception *);

  virtual std::string treeVersion(std::string const &where) const;

private:
    static std::string schemeFromRepository(std::string &result);
    void processRepository();
    std::string getOneLineFile(std::string const &where) const;
    std::string getRoot(std::string const &where) const;
    std::string getRepository(std::string const &where) const;
    static std::string urlScheme(std::string const &);

    std::string theUrl;

    std::string scheme;

    std::string repository;

    std::string module;

  std::string tag;

  std::string urlPart;
};


#endif /* _CM_CONFIGCVSSOURCE_H_ */