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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
/***************************************************************************************************
Copyright (C) 2023 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/
#include "uri.h"
using namespace QDotNetTypes::System;
template<>
struct QDotNetOutbound<UriHostNameType>
{
using SourceType = UriHostNameType;
using OutboundType = qint32;
static inline const QDotNetParameter Parameter = QDotNetParameter(
QDotNetTypeOf<UriHostNameType>::TypeName,
QDotNetTypeOf<UriHostNameType>::MarshalAs);
static OutboundType convert(SourceType srvValue)
{
return static_cast<qint32>(srvValue);
}
};
template<>
struct QDotNetInbound<UriHostNameType>
{
using InboundType = qint32;
using TargetType = UriHostNameType;
static inline const QDotNetParameter Parameter = QDotNetParameter(
QDotNetTypeOf<UriHostNameType>::TypeName,
QDotNetTypeOf<UriHostNameType>::MarshalAs);
static TargetType convert(InboundType inboundValue)
{
return static_cast<UriHostNameType>(inboundValue);
}
};
template<>
struct QDotNetNull<UriHostNameType>
{
static UriHostNameType value() { return UriHostNameType::Unknown; }
static bool isNull(const UriHostNameType &) { return false; }
};
template<>
struct QDotNetOutbound<UriKind>
{
using SourceType = UriKind;
using OutboundType = qint32;
static inline const QDotNetParameter Parameter =
QDotNetParameter(QDotNetTypeOf<UriKind>::TypeName, QDotNetTypeOf<UriKind>::MarshalAs);
static OutboundType convert(SourceType srvValue)
{
return static_cast<qint32>(srvValue);
}
};
template<>
struct QDotNetInbound<UriKind>
{
using InboundType = qint32;
using TargetType = UriKind;
static inline const QDotNetParameter Parameter =
QDotNetParameter(QDotNetTypeOf<UriKind>::TypeName, QDotNetTypeOf<UriKind>::MarshalAs);
static TargetType convert(InboundType inboundValue)
{
return static_cast<UriKind>(inboundValue);
}
};
template<>
struct QDotNetNull<UriKind>
{
static UriKind value() { return UriKind::RelativeOrAbsolute; }
static bool isNull(const UriKind &) { return false; }
};
struct UriPrivate
{
QDotNetSafeMethod<QString> absolutePath;
QDotNetSafeMethod<QString> absoluteUri;
QDotNetSafeMethod<QString> authority;
QDotNetSafeMethod<QString> dnsSafeHost;
QDotNetSafeMethod<QString> fragment;
QDotNetSafeMethod<QString> host;
QDotNetSafeMethod<UriHostNameType> hostNameType;
QDotNetSafeMethod<QString> idnHost;
QDotNetSafeMethod<bool> isAbsoluteUri;
QDotNetSafeMethod<bool> isDefaultPort;
QDotNetSafeMethod<bool> isFile;
QDotNetSafeMethod<bool> isLoopback;
QDotNetSafeMethod<bool> isUnc;
QDotNetSafeMethod<QString> localPath;
QDotNetSafeMethod<QString> originalString;
QDotNetSafeMethod<QString> pathAndQuery;
QDotNetSafeMethod<qint32> port;
QDotNetSafeMethod<QString> query;
QDotNetSafeMethod<QString> scheme;
QDotNetSafeMethod<QDotNetArray<QString>> segments;
QDotNetSafeMethod<bool> userEscaped;
QDotNetSafeMethod<QString> userInfo;
};
Q_DOTNET_OBJECT_IMPL(Uri,
Q_DOTNET_OBJECT_INIT(d(new UriPrivate)));
Uri::Uri() : d(new UriPrivate)
{}
Uri::Uri(const QString &uriString, UriKind uriKind)
: d(new UriPrivate)
{
const auto ctor = constructor<Uri, QString, UriKind>();
*this = ctor(uriString, uriKind);
}
Uri::Uri(const Uri &baseUri, const QString &relativeUri)
: d(new UriPrivate)
{
const auto ctor = constructor<Uri, Uri, QString>();
*this = ctor(&baseUri, relativeUri);
}
Uri::Uri(const Uri &baseUri, const Uri &relativeUri)
: d(new UriPrivate)
{
const auto ctor = constructor<Uri, Uri, Uri>();
*this = ctor(&baseUri, &relativeUri);
}
Uri::~Uri()
{
delete d;
}
QString Uri::absolutePath() const
{
return method("get_AbsolutePath", d->absolutePath).invoke(*this);
}
QString Uri::absoluteUri() const
{
return method("get_AbsoluteUri", d->absoluteUri).invoke(*this);
}
QString Uri::authority() const
{
return method("get_Authority", d->authority).invoke(*this);
}
QString Uri::dnsSafeHost() const
{
return method("get_DnsSafeHost", d->dnsSafeHost).invoke(*this);
}
QString Uri::fragment() const
{
return method("get_Fragment", d->fragment).invoke(*this);
}
QString Uri::host() const
{
return method("get_Host", d->host).invoke(*this);
}
UriHostNameType Uri::hostNameType() const
{
return method("get_HostNameType", d->hostNameType).invoke(*this);
}
QString Uri::idnHost() const
{
return method("get_IdnHost", d->idnHost).invoke(*this);
}
bool Uri::isAbsoluteUri() const
{
return method("get_IsAbsoluteUri", d->isAbsoluteUri).invoke(*this);
}
bool Uri::isDefaultPort() const
{
return method("get_IsDefaultPort", d->isDefaultPort).invoke(*this);
}
bool Uri::isFile() const
{
return method("get_IsFile", d->isFile).invoke(*this);
}
bool Uri::isLoopback() const
{
return method("get_IsLoopback", d->isLoopback).invoke(*this);
}
bool Uri::isUnc() const
{
return method("get_IsUnc", d->isUnc).invoke(*this);
}
QString Uri::localPath() const
{
return method("get_LocalPath", d->localPath).invoke(*this);
}
QString Uri::originalString() const
{
return method("get_OriginalString", d->originalString).invoke(*this);
}
QString Uri::pathAndQuery() const
{
return method("get_PathAndQuery", d->pathAndQuery).invoke(*this);
}
qint32 Uri::port() const
{
return method("get_Port", d->port).invoke(*this);
}
QString Uri::query() const
{
return method("get_Query", d->query).invoke(*this);
}
QString Uri::scheme() const
{
return method("get_Scheme", d->scheme).invoke(*this);
}
QDotNetArray<QString> Uri::segments() const
{
return method("get_Segments", d->segments).invoke(*this);
}
bool Uri::userEscaped() const
{
return method("get_UserEscaped", d->userEscaped).invoke(*this);
}
QString Uri::userInfo() const
{
return method("get_UserInfo", d->userInfo).invoke(*this);
}
|