aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/algol/parc_URISegment.h
blob: e7234d3f98640948afd902d2444b341389079dec (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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file parc_URISegment.h
 * @ingroup networking
 * @brief A Universal Resource Identifier (URI) Segment
 *
 */
#ifndef libparc_parc_URISegment_h
#define libparc_parc_URISegment_h

#include <parc/algol/parc_BufferComposer.h>

struct parc_uri_segment;
typedef struct parc_uri_segment PARCURISegment;

/**
 * Create a `PARCURISegment` instance copying data from the given pointer and length.
 *
 * A `PARCURISegment` is a tuple consisting of a pointer to arbitrary memory containing the first byte
 * of `length` bytes as the value of the segment.
 *
 * Since the input parameter `pointer` points to arbitrary memory,
 * this function makes a private copy of the data.
 *
 * @param [in] length The length of the given array pointed to by @p segment.
 * @param [in] segment A pointer to an array consisting of at least @p length bytes.
 *
 * @return A `PARCURISegment` instance referring to the given pointer and length.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *segment = parcURISegment_Create(5, "Hello");
 *     ...
 *     parcURISegment_Release(&segment);
 * }
 * @endcode
 */
PARCURISegment *parcURISegment_Create(size_t length, const unsigned char *segment);

/**
 * Create a `PARCURISegment` instance referencing the given {@link PARCBuffer}.
 *
 * A new reference to the given `PARCBuffer` is acquired.
 *
 * @param [in] buffer A pointer to a `PARCBuffer` instance.
 *
 * @return A `PARCURISegment` instance referring to the given `PARCBuffer`
 *
 * Example:
 * @code
 * {
 *     PARCBuffer *buffer = parcBuffer_Wrap("lci:/foo/bar", 12, 0, 12);
 *     PARCURISegment *segment = parcURISegment_CreateFromBuffer(buffer);
 *     ...
 *     parcURISegment_Release(&segment);
 * }
 * @endcode
 */
PARCURISegment *parcURISegment_CreateFromBuffer(PARCBuffer *buffer);

/**
 * Increase the number of references to a `PARCURISegment`.
 *
 * Note that new `PARCURISegment` is not created,
 * only that the given `PARCURISegment` reference count is incremented.
 * Discard the reference by invoking {@link parcURISegment_Release}.
 *
 * @param [in] segment A pointer to the original instance.
 *
 * @return The value of the input parameter @p instance.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *x = parcURISegment_Create(5, "Hello");
 *
 *     PARCURISegment *x2 = parcURISegment_Acquire(x);
 *
 *     parcURISegment_Release(&x);
 *     parcURISegment_Release(&x2);
 * }
 * @endcode
 *
 * @see {@link parcURISegment_Release}
 */
PARCURISegment *parcURISegment_Acquire(const PARCURISegment *segment);

/**
 * Release a previously acquired reference to the specified instance,
 * decrementing the reference count for the instance.
 *
 * The pointer to the instance is set to NULL as a side-effect of this function.
 *
 * If the invocation causes the last reference to the instance to be released,
 * the instance is deallocated and the instance's implementation will perform
 * additional cleanup and release other privately held references.
 *
 * @param [in,out] segmentPtr A pointer to a pointer to the instance to release.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *x = parcURISegment_Create(5, "Hello");
 *
 *     parcURISegment_Release(&x);
 * }
 * @endcode
 */
void parcURISegment_Release(PARCURISegment **segmentPtr);

/**
 * Compares two `PARCURISegment` instances for order.
 *
 * As strings, URI segments are compared in normal lexographical order. This
 * is analogous to strcmp(...).
 *
 * @param [in] a A `PARCURISegment` pointer, or NULL.
 * @param [in] b A `PARCURISegment` pointer, or NULL.
 *
 * @return A negative integer, zero, or a positive integer as a is less than, equal to, or greater than b, accordingly.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *segmentA = parcURISegment_Create(6, "HelloA");
 *     PARCURISegment *segmentB = parcURISegment_Create(6, "HelloB");
 *     int cmp = parcURISegment_Compare(segmentA, segmentB);
 *     // cmp will be a negative integer since "HelloA" < "HelloB"
 * }
 * @endcode
 */
int parcURISegment_Compare(const PARCURISegment *a, const PARCURISegment *b);

/**
 * Create an independant copy the given `PARCURISegment`
 *
 * A new URI segment is created as a complete copy of the original.
 *
 * @param [in] segment A pointer to a `PARCURISegment` instance.
 *
 * @return NULL Memory could not be allocated.
 * @return non-NULL A pointer to a new `PARCURISegment` instance.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *segment = parcURISegment_Create(5, "Hello");
 *     PARCURISegment *copy = parcURISegment_Clone(segment);
 *
 *     // use either segment or copy as needed
 *
 *     parcBuffer_Release(&copy);
 *     parcBuffer_Release(&segment);
 * }
 * @endcode
 *
 */
PARCURISegment *parcURISegment_Clone(const PARCURISegment *segment);

/**
 * Determine if two `PARCURISegment` instances are equal.
 *
 * The following equivalence relations on non-null `PARCURISegment` instances are maintained
 *
 *   * It is reflexive: for any non-null reference value x, `parcURISegment_Equals(x, x)` must return true.
 *
 *   * It is symmetric: for any non-null reference values x and y, `parcURISegment_Equals(x, y)` must return true if and only if
 *        `parcURISegment_Equals(y x)` returns true.
 *
 *   * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcURISegment_Equals(x, y)` returns true and
 *        `parcURISegment_Equals(y, z)` returns true,
 *        then `parcURISegment_Equals(x, z)` must return true.
 *
 *   * It is consistent: for any non-null reference values x and y, multiple invocations of `parcURISegment_Equals(x, y)`
 *         consistently return true or consistently return false.
 *
 *   * For any non-null reference value x, `parcURISegment_Equals(x, NULL)` must return false.
 *
 *
 * @param [in] x A pointer to a `PARCURISegment` instance.
 * @param [in] y A pointer to a `PARCURISegment` instance.
 *
 * @return true `PARCURISegment` x and y are equal.
 * @return false `PARCURISegment` x and y are not equal.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *segmentA = parcURISegment_Create(5, "Hello");
 *     PARCURISegment *segmentB = parcURISegment_Create(5, "Hello");
 *
 *     if (parcURISegment_Equals(segmentA, segmentB)) {
 *          printf("The URI segments are equal\n");
 *     } else {
 *          printf("The URI segments are NOT equal\n");
 *     }
 *
 *     parcURISegment_Equals(&segmentA);
 *     parcURISegment_Equals(&segmentB);
 * }
 * @endcode
 */
bool parcURISegment_Equals(const PARCURISegment *x, const PARCURISegment *y);

/**
 * Parse a single URI segment.
 *
 * The input parameter string must point to a '/' which indicates the beginning of a segment.
 * The segment is terminated by a null byte or a '?' or '#' character and may may be zero length.
 * The output parameter pointer will be assigned the address of the first character that is not part of the parsed segment.
 *
 * The returned value must be deallocated via {@link parcMemory_Deallocate}.
 *
 * @param [in] string Pointer to the beginning of the segment
 * @param [in,out] pointer Will be assigned the address of the first character that is not part of the parsed segment.
 *
 * @return An allocated `PARCURISegment` the must be deallocated via `parcMemory_Deallocate`.
 *
 * Example:
 * @code
 * {
 *     char *pointer;
 *     PARCURISegment *segment = parcURISegment_Parse("lci:/a/b/", &pointer);
 *     ...
 *     parcBuffer_Release(&segment);
 * }
 * @endcode
 */
PARCURISegment *parcURISegment_Parse(const char *string, const char **pointer);

/**
 * Get the {@link PARCBuffer} containing the content of the given URI segment.
 *
 * The PARCBuffer is always rewound (see {@link parcBuffer_Rewind}).
 *
 * @param [in] segment A `PARCURISegment` instance from which the buffer will be extracted.
 *
 * @return A `PARCBuffer` instance containing the URI segment bytes that must be freed via {@link parcBuffer_Release()}
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *segment = parcURISegment_Create(5, "Hello");
 *     PARCBuffer *segBuffer = parcURISegment_GetBuffer(segment);
 *     // use or display the segment buffer as needed...
 *
 *     parcURISegment(&segment);
 * }
 * @endcode
 */
PARCBuffer *parcURISegment_GetBuffer(const PARCURISegment *segment);

/**
 * Append a representation of the specified instance to the given {@link PARCBufferComposer}.
 *
 * The URI representation is escape-encoded for all characters specified
 *
 * @param [in] component A pointer to the instance to be appended to @p composer.
 * @param [in,out] composer A `PARCBufferComposer` to which this URI segment is appended.
 *
 * @return NULL Cannot allocate memory.
 * @return non-NULL The given `PARCBufferComposer`.
 *
 * Example:
 * @code
 * {
 *     PARCBufferComposer *result = parcBufferComposer_Create();
 *
 *     parcURISegment_BuildString(instance, result);
 *
 *     PARCBuffer *string = parcBufferComposer_FinalizeBuffer(result);
 *     printf("URI: %s\n", parcBuffer_ToString(string));
 *     parcBuffer_Release(&string);
 *
 *     parcBufferComposer_Release(&result);
 * }
 * @endcode
 */
PARCBufferComposer *parcURISegment_BuildString(const PARCURISegment *component, PARCBufferComposer *composer);

/**
 * Produce a null-terminated string representation of the specified `PARCURISegment` instance.
 *
 * The result must be freed by the caller via {@link parcMemory_Deallocate}.
 *
 * The result is percent-encoding if necessary.
 * A `PARCURISegment` may contain characters that are not permitted in the path in their native form.
 * These characters must be 'percent encoded' using the '%' followed by the hexadecimal value of the character.
 * For consistency, percent-encoded octets in the ranges of
 * ALPHA (%41-%5A and %61-%7A),
 * DIGIT (%30-%39),
 * hyphen (%2D),
 * period (%2E),
 * underscore (%5F),
 * or tilde (%7E)
 * should not be created by URI producers and,
 * when found in a URI,
 * should be decoded to their corresponding unreserved characters by URI normalizers.
 *
 * @param [in] segment A pointer to the instance.
 *
 * @return An allocated, null-terminated C string that must be deallocated via {@link parcMemory_Deallocate}.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *instance = parcURISegment_Create(5, "Hello");
 *
 *     char *string = parcURISegment_ToString(instance);
 *
 *     printf("Hello: %s\n", string);
 *     parcMemory_Deallocate((void **)&string);
 *
 *     parcURISegment_Release(&instance);
 * }
 * @endcode
 *
 * @see parcURISegment_Parse
 */
char *parcURISegment_ToString(const PARCURISegment *segment);

/**
 * Get the length, in bytes, of the given `PARCURISegment`.
 *
 * @param [in] segment A pointer to the segment to inspect.
 *
 * @return The length, in bytes, of the given `PARCURISegment`.
 *
 * Example:
 * @code
 * {
 *     PARCURISegment *instance = parcURISegment_Create(5, "Hello");
 *     size_t length = parcURISegment_Length(instance);
 *     // length will be 5
 * }
 * @endcode
 */
size_t parcURISegment_Length(const PARCURISegment *segment);
#endif // libparc_parc_URISegment_h