-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow root / parent JSON-LD context when parsing nested objects (res…
…olves #152) (#170) * Refactor JsonLDContext to support child -> parent chaining. * Link to parent context when parsing nested objects. * Skip context entries in parent when serializing nested objects. * Simplify ASLink conversion from string form.
- Loading branch information
1 parent
168b85e
commit 2d7e698
Showing
12 changed files
with
1,046 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. | ||
// If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
using ActivityPub.Types.Util; | ||
|
||
namespace ActivityPub.Types.Internal; | ||
|
||
internal class NestedContextStack | ||
{ | ||
private ThreadLocal<Stack<IJsonLDContext>> ContextStack { get; } = new | ||
( | ||
() => new Stack<IJsonLDContext>(), | ||
false | ||
); | ||
|
||
public void Push(IJsonLDContext context) | ||
{ | ||
ContextStack.Value!.Push(context); | ||
} | ||
|
||
public IJsonLDContext? Peek() | ||
{ | ||
ContextStack.Value!.TryPeek(out var value); | ||
return value; | ||
} | ||
|
||
public void Pop() | ||
{ | ||
ContextStack.Value!.TryPop(out _); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.