Libkleo

dn.h
1/*
2 dn.h
3
4 This file is part of libkleopatra, the KDE keymanagement library
5 SPDX-FileCopyrightText: 2004 Klarälvdalens Datakonsult AB
6 SPDX-FileCopyrightText: 2021 g10 Code GmbH
7 SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
8
9 SPDX-License-Identifier: GPL-2.0-or-later
10*/
11
12#pragma once
13
14#include "kleo_export.h"
15
16#include "dnattributes.h"
17
18#include <QList>
19#include <QString>
20#include <QStringList>
21
22namespace Kleo
23{
24
25/**
26 @short DN parser and reorderer
27*/
28class KLEO_DEPRECATED_EXPORT DN
29{
30public:
31 class Attribute;
32 using AttributeList = QList<Attribute>;
33 using const_iterator = AttributeList::const_iterator;
34
35 DN();
36 explicit DN(const QString &dn);
37 explicit DN(const char *utf8DN);
38 DN(const DN &other);
39 ~DN();
40
41 const DN &operator=(const DN &other);
42
43 static QStringList attributeOrder()
44 {
45 return Kleo::DNAttributes::order();
46 }
47 static void setAttributeOrder(const QStringList &order)
48 {
49 return Kleo::DNAttributes::setOrder(order);
50 }
51
52 static QStringList defaultAttributeOrder()
53 {
54 return Kleo::DNAttributes::defaultOrder();
55 }
56
57 static QStringList attributeNames()
58 {
59 return Kleo::DNAttributes::names();
60 }
61 static QString attributeNameToLabel(const QString &name)
62 {
63 return Kleo::DNAttributes::nameToLabel(name);
64 }
65
66 /** @return the value in rfc-2253-escaped form */
67 static QString escape(const QString &value);
68
69 /** @return the DN in a reordered form, according to the settings in
70 the [DN] group of the application's config file */
71 QString prettyDN() const;
72
73 /** Returns the non-empty attributes formatted as \c{NAME=value} and reordered
74 * according to the settings in the [DN] group of the application's config file.
75 */
77
78 /** @return the DN in the original form */
79 QString dn() const;
80 /**
81 \overload
82 Uses \a sep as separator (default: ,)
83 */
84 QString dn(const QString &sep) const;
85
86 QString operator[](const QString &attr) const;
87
88 void append(const Attribute &attr);
89
90 const_iterator begin() const;
91 const_iterator end() const;
92
93private:
94 void detach();
95
96private:
97 class Private;
98 Private *d;
99};
100
101class KLEO_EXPORT DN::Attribute
102{
103public:
104 using List = DN::AttributeList;
105
106 explicit Attribute(const QString &name = QString(), const QString &value = QString())
107 : mName(name.toUpper())
108 , mValue(value)
109 {
110 }
111 Attribute(const Attribute &other)
112 : mName(other.name())
113 , mValue(other.value())
114 {
115 }
116
117 const Attribute &operator=(const Attribute &other)
118 {
119 if (this != &other) {
120 mName = other.name();
121 mValue = other.value();
122 }
123 return *this;
124 }
125
126 const QString &name() const
127 {
128 return mName;
129 }
130 const QString &value() const
131 {
132 return mValue;
133 }
134
135 void setValue(const QString &value)
136 {
137 mValue = value;
138 }
139
140private:
141 QString mName;
142 QString mValue;
143};
144
145}
DN parser and reorderer.
Definition dn.h:29
static QString escape(const QString &value)
Definition dn.cpp:458
QString prettyDN() const
Definition dn.cpp:424
QString dn() const
Definition dn.cpp:447
QStringList prettyAttributes() const
Returns the non-empty attributes formatted as {NAME=value} and reordered according to the settings in...
Definition dn.cpp:435
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:04:00 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.