-
Notifications
You must be signed in to change notification settings - Fork 270
Fix Deep copying of objects implementing the dictionary type using copy constructors #1203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 17 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
345f136
Add unit test to break copy constructors
irvinesunday d5a5f8a
Remove commented code
irvinesunday e518515
Adds a dictionary clone helper to help us deep clone all the values o…
MaggieKimani1 b1f06d7
Add test suite; update public API
MaggieKimani1 8a93c14
Use DictionaryCloneHelper
irvinesunday 608d908
Updates XML summary
irvinesunday be998b0
Use DictionaryCloneHelper cloning method for all dictionary copies
MaggieKimani1 8d83572
Add test case for content media type
MaggieKimani1 6a65cf4
Update public API
MaggieKimani1 264611d
Use DictionaryCloneHelper.Clone() method
irvinesunday 08acaaa
Clean up dictionary cloning logic
MaggieKimani1 9af7621
Clean up code
MaggieKimani1 da9cd6a
Revert "Clean up dictionary cloning logic "
MaggieKimani1 b97ef99
Code cleanup
MaggieKimani1 fb297a1
Address PR feedback
MaggieKimani1 5287382
Update src/Microsoft.OpenApi/Helpers/DictionaryCloneHelper.cs
MaggieKimani1 9046116
Add null propagation
MaggieKimani1 32d0cd4
Push uncommitted code and clean up code
MaggieKimani1 1a9e58c
Clean up public API surface
MaggieKimani1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,38 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT license. | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
|
|
||
| namespace Microsoft.OpenApi.Helpers | ||
| { | ||
| /// <summary> | ||
| /// Helper class for deep cloning dictionaries. | ||
| /// </summary> | ||
| internal class DictionaryCloneHelper | ||
| { | ||
| /// <summary> | ||
| /// Deep clone key value pairs in a dictionary. | ||
| /// </summary> | ||
| /// <typeparam name="T">The type of the key of the dictionary.</typeparam> | ||
| /// <typeparam name="U">The type of the value of the dictionary.</typeparam> | ||
| /// <param name="dictionary">The target dictionary to clone.</param> | ||
| /// <returns>The cloned dictionary.</returns> | ||
| internal static Dictionary<T, U> Clone<T, U>(IDictionary<T, U> dictionary) | ||
| { | ||
| if (dictionary is null) return null; | ||
| var clonedDictionary = new Dictionary<T, U>(); | ||
MaggieKimani1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| if (dictionary != null) | ||
| { | ||
| foreach (var kvp in dictionary) | ||
| { | ||
| // Create instance of the specified type using the constructor matching the specified parameter types. | ||
| clonedDictionary[kvp.Key] = (U)Activator.CreateInstance(kvp.Value.GetType(), kvp.Value); | ||
| } | ||
| } | ||
MaggieKimani1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| return clonedDictionary; | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.