Anton Tarasenko
2 years ago
16 changed files with 901 additions and 673 deletions
@ -0,0 +1,389 @@
|
||||
/** |
||||
* Author: dkanus |
||||
* Home repo: https://www.insultplayers.ru/git/AcediaFramework/AcediaCore |
||||
* License: GPL |
||||
* Copyright 2021-2023 Anton Tarasenko |
||||
*------------------------------------------------------------------------------ |
||||
* This file is part of Acedia. |
||||
* |
||||
* Acedia 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, version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* Acedia 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 Acedia. If not, see <https://www.gnu.org/licenses/>. |
||||
*/ |
||||
class BaseJsonPointer extends AcediaObject |
||||
abstract; |
||||
|
||||
//! A base class for representing a JSON pointer as defined in |
||||
//! [RFC6901](https://tools.ietf.org/html/rfc6901). |
||||
//! |
||||
//! A JSON pointer is a string of tokens separated by the "/" character. |
||||
//! Each token represents a reference to an object's key or an array's index. |
||||
//! For example, the pointer "/foo/1/bar" corresponds to the key "bar" of the array element at |
||||
//! index 1 of the object with key "foo". |
||||
//! |
||||
//! This class provides a simple way to represent and access the components of a JSON pointer. |
||||
//! The Path "/a/b/c" will be stored as a sequence of components "a", "b" and "c", the path "/" |
||||
//! will be stored as a singular empty component "" and an empty path "" would mean that there are |
||||
//! no components at all. |
||||
|
||||
/// A component of a Json pointer, which is a part of the pointer separated by |
||||
/// the slash character '/' |
||||
struct Component { |
||||
// For arrays, a component is specified by a numeric index. |
||||
// To avoid parsing the [`textRepresentation`] property multiple times, we record whether we |
||||
// have already done so. |
||||
var bool testedForBeingNumeric; |
||||
// Numeric index represented by asText. |
||||
// It is set to `-1` if it was already tested and found not to be a number. |
||||
// Valid index values are always >= 0. |
||||
var int numericRepresentation; |
||||
// [`Text`] representation of the component. |
||||
// Can be equal to `none` only if this component was specified via a numeric index. |
||||
// This guarantees that [`testedForBeingNumeric`] is `true`. |
||||
var Text textRepresentation; |
||||
}; |
||||
|
||||
// An array of components that make up the path for this Json pointer. |
||||
// Each component represents a part of the path separated by the slash character '/'. |
||||
// The array contains the sequence of components that this Json pointer was initialized with. |
||||
var protected array<Component> components; |
||||
|
||||
var protected const int TSLASH, TJson_ESCAPE, TJson_ESCAPED_SLASH; |
||||
var protected const int TJSON_ESCAPED_ESCAPE; |
||||
|
||||
protected function Finalizer() { |
||||
local int i; |
||||
|
||||
for (i = 0; i < components.length; i += 1) { |
||||
_.memory.Free(components[i].textRepresentation); |
||||
} |
||||
components.length = 0; |
||||
} |
||||
|
||||
/// Checks whether this [`BaseJsonPointer`] instance is empty, meaning it points at the root value. |
||||
/// |
||||
/// Returns `true` if it is empty; otherwise, returns `false`. |
||||
public final function bool IsEmpty() { |
||||
return components.length == 0; |
||||
} |
||||
|
||||
/// Returns the component of the path specified by the given index, starting from 0. |
||||
/// |
||||
/// Returns the path's component as a [`Text`] unless the specified index is outside of the range of |
||||
/// `[0, GetLength() - 1]`. In that case, it returns `none`. |
||||
public final function Text GetComponent(int index) { |
||||
local MutableText result; |
||||
|
||||
result = GetMutableComponent(index); |
||||
if (result != none) { |
||||
return result.IntoText(); |
||||
} |
||||
return none; |
||||
} |
||||
|
||||
/// Returns the component of the path specified by the given index, starting from 0. |
||||
/// |
||||
/// Returns the path's component as a [`MutableText`] unless the specified index is outside of the |
||||
/// range of `[0, GetLength() - 1]`. In that case, it returns `none`. |
||||
public final function MutableText GetMutableComponent(int index) { |
||||
if (index < 0) return none; |
||||
if (index >= components.length) return none; |
||||
|
||||
// [`asText`] will store `none` only if we have added this component as numeric one |
||||
if (components[index].textRepresentation == none) { |
||||
components[index].textRepresentation = |
||||
_.text.FromInt(components[index].numericRepresentation); |
||||
} |
||||
return components[index].textRepresentation.MutableCopy(); |
||||
} |
||||
|
||||
/// Returns the numeric component of the path specified by the given index, starting from `0`. |
||||
/// |
||||
/// Returns the path's component as a non-negative `int` unless the specified index is outside of |
||||
/// the range of [0, GetLength() - 1]. In that case, it returns `-1`. |
||||
public final function int GetNumericComponent(int index) { |
||||
local Parser parser; |
||||
|
||||
if (index < 0) return -1; |
||||
if (index >= components.length) return -1; |
||||
|
||||
if (!components[index].testedForBeingNumeric) |
||||
{ |
||||
components[index].testedForBeingNumeric = true; |
||||
parser = _.text.Parse(components[index].textRepresentation); |
||||
parser.MUnsignedInteger(components[index].numericRepresentation); |
||||
if (!parser.Ok() || !parser.HasFinished()) { |
||||
components[index].numericRepresentation = -1; |
||||
} |
||||
parser.FreeSelf(); |
||||
} |
||||
return components[index].numericRepresentation; |
||||
} |
||||
|
||||
/// Checks if the component at the given index can be used to index an array. |
||||
/// |
||||
/// This method accepts numeric components and the "-" component, which can be used to point to |
||||
/// the element after the last one in a [`JsonArray`]. |
||||
/// |
||||
/// Returns `true` if a component with the given index exists and is either |
||||
/// a positive number or "-". |
||||
public final function bool IsComponentArrayApplicable(int index) { |
||||
local bool appendElementAlias; |
||||
local Text component; |
||||
|
||||
if (GetNumericComponent(index) >= 0) { |
||||
return true; |
||||
} |
||||
component = GetComponent(index); |
||||
appendElementAlias = P("-").IsEqual(component); |
||||
_.memory.Free(component); |
||||
return appendElementAlias; |
||||
} |
||||
|
||||
/// Converts caller [`JsonPointer`] into it's [`Text`] representation. |
||||
public final function Text ToText() { |
||||
return ToMutableText().IntoText(); |
||||
} |
||||
|
||||
/// Converts caller [`JsonPointer`] into it's [`MutableText`] representation. |
||||
public final function MutableText ToMutableText() { |
||||
local int i; |
||||
local Text nextComponent; |
||||
local MutableText nextMutableComponent; |
||||
local MutableText result; |
||||
|
||||
result = _.text.Empty(); |
||||
if (GetLength() <= 0) { |
||||
return result; |
||||
} |
||||
for (i = 0; i < GetLength(); i += 1) { |
||||
nextComponent = GetComponent(i); |
||||
nextMutableComponent = nextComponent.MutableCopy(); |
||||
// Replace (order is important) |
||||
nextMutableComponent.Replace(T(TJson_ESCAPE), T(TJSON_ESCAPED_ESCAPE)); |
||||
nextMutableComponent.Replace(T(TSLASH), T(TJson_ESCAPED_SLASH)); |
||||
result.Append(T(TSLASH)).Append(nextMutableComponent); |
||||
// Get rid of temporary values |
||||
nextMutableComponent.FreeSelf(); |
||||
nextComponent.FreeSelf(); |
||||
} |
||||
return result; |
||||
} |
||||
|
||||
/// Returns the number of path components in the caller JsonPointer. |
||||
public final function int GetLength() { |
||||
return components.length; |
||||
} |
||||
|
||||
/// Returns the number of intermediate path components in the caller JsonPointer |
||||
/// that do not directly correspond to a pointed value. |
||||
/// |
||||
/// This number is calculated as Max(0, GetLength() - 1). For example, if the |
||||
/// Json pointer is "/user/Ivan/records/5/count", it refers to the value named |
||||
/// "count" that is nested inside 4 objects named "user", "Ivan", "records", |
||||
/// and "5". Therefore, the number of intermediate path components or "folds" |
||||
/// is equal to 4. |
||||
public final function int GetFoldsAmount() { |
||||
return Max(0, components.length - 1); |
||||
} |
||||
|
||||
/// Creates an immutable copy of the caller [`BaseJsonPointer`]. |
||||
/// |
||||
/// Copies components in the range `[startIndex; startIndex + maxLength - 1]`. |
||||
/// If the provided parameters `startIndex` and `maxLength` define a range that goes beyond |
||||
/// `[0; self.GetLength() - 1]`, then the intersection with a valid range will be used. |
||||
/// |
||||
/// If [`maxLength`] is `0` (default value) or a negative value, the method extracts all components |
||||
/// to the right of `startIndex`. |
||||
public final function JsonPointer Copy(optional int startIndex, optional int maxLength) { |
||||
local JsonPointer newPointer; |
||||
|
||||
newPointer = JsonPointer(_.memory.Allocate(class'JsonPointer')); |
||||
_copyInto(newPointer, startIndex, maxLength); |
||||
return newPointer; |
||||
} |
||||
|
||||
/// Creates an mutable copy of the caller [`BaseJsonPointer`]. |
||||
/// |
||||
/// Copies components in the range `[startIndex; startIndex + maxLength - 1]`. |
||||
/// If the provided parameters `startIndex` and `maxLength` define a range that goes beyond |
||||
/// `[0; self.GetLength() - 1]`, then the intersection with a valid range will be used. |
||||
/// |
||||
/// If [`maxLength`] is `0` (default value) or a negative value, the method extracts all components |
||||
/// to the right of `startIndex`. |
||||
public final function MutableJsonPointer MutableCopy( |
||||
optional int startIndex, |
||||
optional int maxLength |
||||
) { |
||||
local MutableJsonPointer newPointer; |
||||
|
||||
newPointer = MutableJsonPointer(_.memory.Allocate(class'MutableJsonPointer')); |
||||
_copyInto(newPointer, startIndex, maxLength); |
||||
return newPointer; |
||||
} |
||||
|
||||
/// Determines whether the given pointer corresponds to the beginning of the caller one. |
||||
/// |
||||
/// A pointer starts with another one if it includes all of its fields from the beginning and in order. |
||||
/// For example, "/A/B/C" starts with "/A/B", but not with "/A/B/C/D", "/D/A/B/C" or "/A/B/CD". |
||||
/// |
||||
/// Returns `true` if [`other`] is a prefix and `false` otherwise. |
||||
/// `none` is considered to be an empty pointer and therefore a prefix to any other pointer. |
||||
public final function bool StartsWith(BaseJsonPointer other) { |
||||
local int i; |
||||
local array<Component> otherComponents; |
||||
|
||||
// `none` is same as empty |
||||
if (other == none) return true; |
||||
otherComponents = other.components; |
||||
// Not enough length |
||||
if (components.length < otherComponents.length) return false; |
||||
|
||||
for (i = 0; i < otherComponents.length; i += 1) { |
||||
// Compare numeric components if at least one is such |
||||
if (components[i].testedForBeingNumeric || otherComponents[i].testedForBeingNumeric) { |
||||
if (GetNumericComponent(i) != other.GetNumericComponent(i)) { |
||||
return false; |
||||
} |
||||
// End this iteration for numeric component, but continue for text ones |
||||
if (GetNumericComponent(i) >= 0) { |
||||
continue; |
||||
} |
||||
} |
||||
// We can reach here if: |
||||
// |
||||
// 1. Neither components have `testedForBeingNumeric` set to `true`, |
||||
// neither `asText` fields are `none` by the invariant; |
||||
// 2. At least one had `testedForBeingNumeric`, but they tested negative for being numeric. |
||||
if (!components[i].textRepresentation.Compare(otherComponents[i].textRepresentation)) { |
||||
return false; |
||||
} |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
/// Returns the last component of the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For example, if the caller [`MutableJsonPointer`] corresponds to "/ab/c/d", this method |
||||
/// would return "d". |
||||
/// |
||||
/// If the caller [`MutableJsonPointer`] is empty, the returned last component is `none`. |
||||
public final function Text Peek() { |
||||
local MutableText mutableResult; |
||||
|
||||
mutableResult = PeekMutable(); |
||||
if (mutableResult != none) { |
||||
return mutableResult.IntoText(); |
||||
} |
||||
return none; |
||||
} |
||||
|
||||
/// Returns the last component of the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For example, if the caller [`MutableJsonPointer`] corresponds to "/ab/c/d", this method |
||||
/// would return "d". |
||||
/// |
||||
/// If the caller [`MutableJsonPointer`] is empty, the returned last component is `none`. |
||||
public final function MutableText PeekMutable() { |
||||
local int lastIndex; |
||||
local MutableText result; |
||||
|
||||
if (components.length <= 0) { |
||||
return none; |
||||
} |
||||
lastIndex = components.length - 1; |
||||
// Do not use `GetComponent()` to avoid unnecessary `Text` copying |
||||
if (components[lastIndex].textRepresentation == none) { |
||||
result = _.text.FromIntM(components[lastIndex].numericRepresentation); |
||||
} else { |
||||
result = components[lastIndex].textRepresentation.MutableCopy(); |
||||
} |
||||
return result; |
||||
} |
||||
|
||||
/// Returns the last numeric component of the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For instance, if the caller [`MutableJsonPointer`] corresponds to "/ab/c/1", this method |
||||
/// would return `1`. |
||||
/// |
||||
/// If the caller [`MutableJsonPointer`] does not end with a numeric component or is empty, |
||||
/// the returned value is `-1`. |
||||
public final function int PeekNumeric() { |
||||
local int lastIndex; |
||||
local int result; |
||||
|
||||
if (components.length <= 0) { |
||||
return -1; |
||||
} |
||||
lastIndex = components.length - 1; |
||||
result = GetNumericComponent(lastIndex); |
||||
return result; |
||||
} |
||||
|
||||
/// This method releases caller json pointer and returns immutable [`JsonPointer`] copy instead. |
||||
public function JsonPointer IntoJsonPointer() { |
||||
local JsonPointer result; |
||||
|
||||
result = Copy(); |
||||
FreeSelf(); |
||||
return result; |
||||
} |
||||
|
||||
/// This method releases caller json pointer and returns mutable [`MutableJsonPointer`] copy |
||||
/// instead. |
||||
public function MutableJsonPointer IntoMutableJsonPointer() { |
||||
local MutableJsonPointer result; |
||||
|
||||
result = MutableCopy(); |
||||
FreeSelf(); |
||||
return result; |
||||
} |
||||
|
||||
// Copies contents of caller into `copy` pointer. |
||||
// Assumes `copy` is freshly made: not `none`, but also no need to deallocate its components |
||||
private final function _copyInto( |
||||
BaseJsonPointer copy, |
||||
optional int startIndex, |
||||
optional int maxLength |
||||
) { |
||||
local int i, endIndex; |
||||
local array<Component> newComponents; |
||||
|
||||
if (maxLength <= 0) { |
||||
maxLength = components.length - startIndex; |
||||
} |
||||
endIndex = startIndex + maxLength; |
||||
if (endIndex <= 0) { |
||||
return; |
||||
} |
||||
startIndex = Max(startIndex, 0); |
||||
endIndex = Min(endIndex, components.length); |
||||
for (i = startIndex; i < endIndex; i += 1) { |
||||
newComponents[newComponents.length] = components[i]; |
||||
if (components[i].textRepresentation != none) { |
||||
newComponents[newComponents.length - 1].textRepresentation = |
||||
components[i].textRepresentation.Copy(); |
||||
} |
||||
} |
||||
copy.components = newComponents; |
||||
} |
||||
|
||||
defaultproperties { |
||||
TSLASH = 0 |
||||
stringConstants(0) = "/" |
||||
TJson_ESCAPE = 1 |
||||
stringConstants(1) = "~" |
||||
TJson_ESCAPED_SLASH = 2 |
||||
stringConstants(2) = "~1" |
||||
TJSON_ESCAPED_ESCAPE = 3 |
||||
stringConstants(3) = "~0" |
||||
} |
@ -0,0 +1,207 @@
|
||||
/** |
||||
* Author: dkanus |
||||
* Home repo: https://www.insultplayers.ru/git/AcediaFramework/AcediaCore |
||||
* License: GPL |
||||
* Copyright 2021-2023 Anton Tarasenko |
||||
*------------------------------------------------------------------------------ |
||||
* This file is part of Acedia. |
||||
* |
||||
* Acedia 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, version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* Acedia 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 Acedia. If not, see <https://www.gnu.org/licenses/>. |
||||
*/ |
||||
class MutableJsonPointer extends BaseJsonPointer; |
||||
|
||||
//! Mutable representation of a Json pointer as defined in |
||||
//! [RFC6901](https://tools.ietf.org/html/rfc6901). |
||||
|
||||
/// Resets the caller [`JsonPointer`] into an empty path, erasing all of its components. |
||||
public final function Empty() { |
||||
local int i; |
||||
|
||||
for (i = 0; i < components.length; i += 1) { |
||||
_.memory.Free(components[i].textRepresentation); |
||||
} |
||||
components.length = 0; |
||||
} |
||||
|
||||
/// Sets the caller [`JsonPointer`] to correspond to a given path in JSON pointer format |
||||
/// [RFC6901](https://tools.ietf.org/html/rfc6901). |
||||
/// |
||||
/// If the provided [`BaseText`] value is not a valid pointer, it will be treated as |
||||
/// an empty pointer. |
||||
/// |
||||
/// If the given pointer can be fixed by prepending "/", it will be done automatically. |
||||
/// For example, "foo/bar" is treated like "/foo/bar", "path" like "/path", but |
||||
/// an empty [`BaseText`] "" is treated as itself. |
||||
public final function Set(BaseText pointerAsText) { |
||||
local int i; |
||||
local bool hasEscapedSequences; |
||||
local Component nextComponent; |
||||
local MutableText nextPart; |
||||
local array<BaseText> parts; |
||||
|
||||
Empty(); |
||||
if (pointerAsText == none) { |
||||
return; |
||||
} |
||||
hasEscapedSequences = (pointerAsText.IndexOf(T(TJson_ESCAPE)) >= 0); |
||||
parts = pointerAsText.SplitByCharacter(T(TSLASH).GetCharacter(0),, true); |
||||
// The first element of the parts array is expected to be empty, |
||||
// because the [`BaseText::SplitByCharacter()`] method always returns an array with an empty |
||||
// first element when the input string starts with the delimiter. |
||||
// |
||||
// Therefore, we need to remove the first element to discard the empty string. |
||||
// If the first element is not empty, it means that the input string does not start with "/", |
||||
// so we pretend that we have already removed the first element, effectively "fixing" |
||||
// the path (e.g. turning "foo/bar" into "/foo/bar"). |
||||
if (parts[0].IsEmpty()) { |
||||
_.memory.Free(parts[0]); |
||||
parts.Remove(0, 1); |
||||
} |
||||
if (hasEscapedSequences) { |
||||
// Replace escaped sequences "~0" and "~1". |
||||
// Order is specific, necessity of which is explained in Json Pointer's documentation: |
||||
// https://tools.ietf.org/html/rfc6901 |
||||
for (i = 0; i < parts.length; i += 1) { |
||||
nextPart = MutableText(parts[i]); |
||||
nextPart.Replace(T(TJson_ESCAPED_SLASH), T(TSLASH)); |
||||
nextPart.Replace(T(TJSON_ESCAPED_ESCAPE), T(TJson_ESCAPE)); |
||||
} |
||||
} |
||||
for (i = 0; i < parts.length; i += 1) { |
||||
nextComponent.textRepresentation = parts[i].IntoText(); |
||||
components[components.length] = nextComponent; |
||||
} |
||||
} |
||||
|
||||
/// This function appends a new component to the end of the caller [`JsonPointer`]. |
||||
/// |
||||
/// For instance, if the caller pointer represents the path "/a/b/c", adding |
||||
/// the component "new" would result in it representing the path "/a/b/c/new". |
||||
/// |
||||
/// While this method can be used to add numeric components, it's recommended to use |
||||
/// PushNumeric() if possible for better clarity and efficiency. |
||||
public final function Push(BaseText newComponent) { |
||||
local Component newComponentRecord; |
||||
|
||||
if (newComponent != none) { |
||||
newComponentRecord.textRepresentation = newComponent.Copy(); |
||||
components[components.length] = newComponentRecord; |
||||
} |
||||
} |
||||
|
||||
/// This function adds a new numeric component to the end of the caller [`JsonPointer`]. |
||||
/// |
||||
/// For example, if the caller pointer represents the path "/a/b/c", adding the numeric |
||||
/// component "1" would result in it representing the path "/a/b/c/1". |
||||
public final function PushNumeric(int newComponent) { |
||||
local Component newComponentRecord; |
||||
|
||||
if (newComponent >= 0) { |
||||
newComponentRecord.numericRepresentation = newComponent; |
||||
// Obviously this component is going to be numeric |
||||
newComponentRecord.testedForBeingNumeric = true; |
||||
components[components.length] = newComponentRecord; |
||||
} |
||||
} |
||||
|
||||
/// Removes and returns the last component of the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For example, if the caller [`MutableJsonPointer`] corresponds to "/ab/c/d", this method |
||||
/// would return "d" and modify the caller [`MutableJsonPointer`] to correspond to "/ab/c". |
||||
/// |
||||
/// If the caller [`MutableJsonPointer`] is empty, the returned last component is `none`. |
||||
public final function Text Pop() { |
||||
local MutableText mutableResult; |
||||
|
||||
mutableResult = PopMutable(); |
||||
if (mutableResult != none) { |
||||
return mutableResult.IntoText(); |
||||
} |
||||
return none; |
||||
} |
||||
|
||||
/// Removes and returns the last component of the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For example, if the caller [`MutableJsonPointer`] corresponds to "/ab/c/d", this method |
||||
/// would return "d" and modify the caller [`MutableJsonPointer`] to correspond to "/ab/c". |
||||
/// |
||||
/// If the caller [`MutableJsonPointer`] is empty, the returned last component is `none`. |
||||
public final function MutableText PopMutable() { |
||||
local int lastIndex; |
||||
local MutableText result; |
||||
|
||||
if (components.length <= 0) { |
||||
return none; |
||||
} |
||||
lastIndex = components.length - 1; |
||||
// Do not use `GetComponent()` to avoid unnecessary `Text` copying |
||||
result = PeekMutable(); |
||||
_.memory.Free(components[lastIndex].textRepresentation); |
||||
components.length = components.length - 1; |
||||
return result; |
||||
} |
||||
|
||||
/// Removes and returns the last numeric component of the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For instance, if the caller [`MutableJsonPointer`] corresponds to "/ab/c/1", this method |
||||
/// would return `1` and modify the caller [`MutableJsonPointer`] to correspond to "/ab/c". |
||||
/// |
||||
/// If the caller [`MutableJsonPointer`] does not end with a numeric component or is empty, |
||||
/// the returned value is `none`. |
||||
/// Value still gets removed. |
||||
public final function int PopNumeric() { |
||||
local int lastIndex; |
||||
local int result; |
||||
|
||||
if (components.length <= 0) { |
||||
return -1; |
||||
} |
||||
lastIndex = components.length - 1; |
||||
result = GetNumericComponent(lastIndex); |
||||
_.memory.Free(components[lastIndex].textRepresentation); |
||||
components.length = components.length - 1; |
||||
return result; |
||||
} |
||||
|
||||
/// Appends path, contained in Json pointer [`other`] to the caller Json pointer. |
||||
/// |
||||
/// Appending "/A/B/7/C" to "/object/hey/1/there/" produces |
||||
/// "/object/hey/1/there//A/B/7/C". |
||||
/// |
||||
/// Method will do nothing if `none` is passed as an argument. |
||||
|
||||
/// Appends the path contained in the argument to the caller [`MutableJsonPointer`]. |
||||
/// |
||||
/// For example, appending "/A/B/7/C" to "/object/hey/1/there/" would result in |
||||
/// "/object/hey/1/there//A/B/7/C". |
||||
/// |
||||
/// If the [`BaseJsonPointer`] argument is `non`, this method will do nothing. |
||||
public final function Append(BaseJsonPointer other) { |
||||
local int i; |
||||
local array<Component> otherComponents; |
||||
|
||||
if (other == none) { |
||||
return; |
||||
} |
||||
otherComponents = other.components; |
||||
for (i = 0; i < otherComponents.length; i += 1) { |
||||
if (otherComponents[i].textRepresentation != none) { |
||||
otherComponents[i].textRepresentation = otherComponents[i].textRepresentation.Copy(); |
||||
} |
||||
components[components.length] = otherComponents[i]; |
||||
} |
||||
} |
||||
|
||||
defaultproperties { |
||||
} |
Loading…
Reference in new issue