/// <summary> /// Allews descendant implementation to continue traversing memory by indexing values ar accesing their fields. /// </summary> /// <param name="parentIndex">Index of the parent.</param> /// <param name="values">The values.</param> /// <param name="isMust">if set to <c>true</c> is must.</param> public override void ProcessValues(MemoryIndex parentIndex, IEnumerable <Value> values, bool isMust) { HashSet <ValueLocation> targetSet = mayLocationProcess; if (isMust && values.Count() == 1) { targetSet = mustLocationProcess; } LastValueVisitor = new ReadFieldVisitor(parentIndex, fieldSegment, targetSet); LastValueVisitor.VisitValues(values); }
/// <summary> /// Allews descendant implementation to continue traversing memory by indexing values ar accesing their fields. /// </summary> /// <param name="parentIndex">Index of the parent.</param> /// <param name="values">The values.</param> /// <param name="isMust">if set to <c>true</c> is must.</param> public override void ProcessValues(MemoryIndex parentIndex, IEnumerable <Value> values, bool isMust) { ReadFieldVisitor visitor = new ReadFieldVisitor(parentIndex, fieldSegment, collector.mustLocationProcess); visitor.VisitValues(values); }
/// <summary> /// Processes the field - traverse thru all containing objects. When there is possibility undefined /// value in location new object is created. /// </summary> /// <param name="segment">The segment.</param> /// <param name="parentIndex">Index of the parent.</param> /// <param name="visitor">The visitor to process scalar values.</param> /// <param name="isMust">if set to <c>true</c> [is must].</param> private void processField(PathSegment segment, MemoryIndex parentIndex, FieldLocationVisitor visitor, bool isMust) { bool processOtherValues = false; MemoryEntry entry; if (snapshot.Structure.TryGetMemoryEntry(parentIndex, out entry)) { ObjectValueContainer objects = snapshot.Structure.GetObjects(parentIndex); if (objects.Count > 0) { processOtherValues = entry.Count > objects.Count; } else if (entry.Count > 0) { processOtherValues = true; } else { entry = snapshot.Data.EmptyEntry; processOtherValues = true; } } else { entry = snapshot.Data.EmptyEntry; processOtherValues = true; } if (processOtherValues) { if (entry.Count > 1) { isMust = false; } visitor.ProcessValues(parentIndex, entry.PossibleValues, isMust); ReadFieldVisitor valueVisitor = visitor.LastValueVisitor; bool removeUndefined = isMust; if (valueVisitor.ContainsDefinedValue || valueVisitor.ContainsAnyValue) { isMust = false; } if (valueVisitor.ContainsUndefinedValue && snapshot.CurrentMode == SnapshotMode.MemoryLevel) { ObjectValue objectValue = snapshot.CreateObject(parentIndex, isMust, removeUndefined); } } ObjectValueContainer objectValues = snapshot.Structure.GetObjects(parentIndex); if (objectValues.Count == 1 && snapshot.HasMustReference(parentIndex)) { ObjectDescriptor descriptor = snapshot.Structure.GetDescriptor(objectValues.First()); creatorVisitor.ObjectValue = objectValues.First(); processSegment(segment, descriptor, isMust); } else { foreach (ObjectValue value in objectValues) { ObjectDescriptor descriptor = snapshot.Structure.GetDescriptor(value); creatorVisitor.ObjectValue = value; processSegment(segment, descriptor, false); } } }