예제 #1
0
        //*** Post merge ***//

        public static void MergeProperties(IDictionary <string, object> newProperties, IDictionary <string, object> oldProperties)
        {
            // Iterates on each old properties
            var oldPropertiesEnumerator = oldProperties.GetEnumerator();

            while (oldPropertiesEnumerator.MoveNext())
            {
                // Gets old document key and value
                var oldProperty      = oldPropertiesEnumerator.Current;
                var oldPropertyKey   = oldProperty.Key;
                var oldPropertyValue = oldProperty.Value;

                // Checks if there is a new value to merge with the old one (if the new document contains the same key)
                Object newPropertyValue;
                if (newProperties.TryGetValue(oldPropertyKey, out newPropertyValue))
                {
                    if (newPropertyValue is IDictionary <string, object> )
                    {
                        if (oldPropertyValue is JObject)
                        {
                            oldPropertyValue = (oldPropertyValue as JObject).ToObject <IDictionary <string, object> >();
                        }
                        if (oldPropertyValue is IDictionary <string, object> )
                        {
                            FullSyncUtils.MergeProperties(newPropertyValue as IDictionary <string, object>, oldPropertyValue as IDictionary <string, object>);
                        }
                    }
                    else if (newPropertyValue is JObject && oldPropertyValue is JObject)
                    {
                        FullSyncUtils.MergeProperties(newPropertyValue as JObject, oldPropertyValue as JObject);
                    }
                    else if (newPropertyValue is JArray && oldPropertyValue is JArray)
                    {
                        FullSyncUtils.MergeArrayProperties(newPropertyValue as JArray, oldPropertyValue as JArray);
                    }
                    else
                    {
                        // If the new document has the same key but its value is not the same type than the old one or if their type are "simple"
                        // Does nothing cause the right value is the new one
                    }
                }
                else
                {
                    // If the new document does not contain the key then adds it
                    newProperties.Add(oldPropertyKey, oldPropertyValue);
                }
            }
        }
예제 #2
0
        private static void MergeArrayProperties(JArray newArray, JArray oldArray)
        {
            int newArraySize = newArray.Count;
            int oldArraySize = oldArray.Count;

            // Iterates on old values
            for (int i = 0; i < oldArraySize; i++)
            {
                // Gets new and old values at this index
                JToken newArrayValue = null;
                if (i < newArraySize)
                {
                    newArrayValue = newArray[i];
                }
                JToken oldArrayValue = oldArray[i];

                // If there is a new value to merge with the old one
                if (newArrayValue != null)
                {
                    if (newArrayValue is JObject && oldArrayValue is JObject)
                    {
                        FullSyncUtils.MergeProperties(newArrayValue as JObject, oldArrayValue as JObject);
                    }
                    else if (newArrayValue is JArray && oldArrayValue is JArray)
                    {
                        FullSyncUtils.MergeArrayProperties(newArrayValue as JArray, oldArrayValue as JArray);
                    }
                    else
                    {
                        // If the new document has the same key but its value is not the same type than the old one or if their type are "simple"
                        // Does nothing cause the right value is the new one
                    }
                }
                else
                {
                    newArray.Insert(i, oldArrayValue);
                }
            }
        }
예제 #3
0
        private static void MergeProperties(JObject newProperties, JObject oldProperties)
        {
            // Iterates on each old properties
            var oldPropertiesEnumerable = oldProperties.Properties();

            foreach (var oldProperty in oldPropertiesEnumerable)
            {
                // Gets old document key and value
                string oldPropertyKey   = oldProperty.Name;
                var    oldPropertyValue = oldProperty.Value;

                // Checks if there is a new value to merge with the old one (if the new document contains the same key)
                JToken newPropertyValue;
                if (newProperties.TryGetValue(oldPropertyKey, out newPropertyValue))
                {
                    // Get the new document value
                    //Object newPropertyValue;
                    // newProperties.TryGetValue(oldPropertyKey, out newPropertyValue);
                    if (newPropertyValue is JObject && oldPropertyValue is JObject)
                    {
                        FullSyncUtils.MergeProperties(newPropertyValue as JObject, oldPropertyValue as JObject);
                    }
                    else if (newPropertyValue is JArray && oldPropertyValue is JArray)
                    {
                        FullSyncUtils.MergeArrayProperties(newPropertyValue as JArray, oldPropertyValue as JArray);
                    }
                    else
                    {
                        // If the new document has the same key but its value is not the same type than the old one or if their type are "simple"
                        // Does nothing cause the right value is the new one
                    }
                }
                else
                {
                    // If the new document does not contain the key then adds it
                    newProperties.Add(oldPropertyKey, oldPropertyValue);
                }
            }
        }