blob: 1c890a6084e554e021f27954bc78fd318487669a (
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
|
/**
* \file
* \brief Classes for representing and manipulating URIs as per RFC 2396.
*
* Authors:
* MenTaLguY <mental@rydia.net>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2003 MenTaLguY
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef INKSCAPE_URI_H
#define INKSCAPE_URI_H
#include <glib/gtypes.h>
#include <exception>
#include <libxml/uri.h>
#include "bad-uri-exception.h"
namespace Inkscape {
/** \brief Represents an URI as per RFC 2396. */
class URI {
public:
URI(URI const &uri);
explicit URI(gchar const *preformed) throw(BadURIException);
~URI();
bool isOpaque() const { return _impl->isOpaque(); }
bool isRelative() const { return _impl->isRelative(); }
bool isNetPath() const { return _impl->isNetPath(); }
bool isRelativePath() const { return _impl->isRelativePath(); }
bool isAbsolutePath() const { return _impl->isAbsolutePath(); }
const gchar *getScheme() const { return _impl->getScheme(); }
const gchar *getPath() const { return _impl->getPath(); }
const gchar *getQuery() const { return _impl->getQuery(); }
const gchar *getFragment() const { return _impl->getFragment(); }
const gchar *getOpaque() const { return _impl->getOpaque(); }
static URI fromUtf8( gchar const* path ) throw (BadURIException);
static URI from_native_filename(gchar const *path) throw(BadURIException);
static gchar *to_native_filename(gchar const* uri) throw(BadURIException);
gchar *toNativeFilename() const throw(BadURIException);
gchar *toString() const { return _impl->toString(); }
URI &operator=(URI const &uri);
private:
class Impl {
public:
static Impl *create(xmlURIPtr uri);
void reference();
void unreference();
bool isOpaque() const;
bool isRelative() const;
bool isNetPath() const;
bool isRelativePath() const;
bool isAbsolutePath() const;
const gchar *getScheme() const;
const gchar *getPath() const;
const gchar *getQuery() const;
const gchar *getFragment() const;
const gchar *getOpaque() const;
gchar *toString() const;
private:
Impl(xmlURIPtr uri);
~Impl();
int _refcount;
xmlURIPtr _uri;
};
Impl *_impl;
};
} /* namespace Inkscape */
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|