Beispiel #1
0
        /// <summary>
        /// Creates a new <see cref="ClosureLoaderWithILGetters"/> instance after inspecting the given <see cref="Delegate"/>
        /// </summary>
        /// <param name="instance">The input <see cref="Delegate"/> instance to inspect</param>
        /// <returns>A <see cref="ClosureLoaderWithILGetters"/> instance that can be used to load data from instances of the same closure class as the input</returns>
        public static ClosureLoaderWithILGetters GetLoaderForDelegate(Delegate instance)
        {
            IEnumerable <ClosureFieldWithGetter> CollectFields(Type type, IReadOnlyList <ClosureFieldWithGetter> parents)
            {
                foreach (FieldInfo field in type.GetFields())
                {
                    if (field.Name.StartsWith("CS$<>"))
                    {
                        // Create a new list of parents including the current field
                        ClosureFieldWithGetter parent = new ClosureFieldWithGetter(field, parents);
                        IReadOnlyList <ClosureFieldWithGetter> updatedParents = parents.Append(parent).ToList();

                        foreach (var nested in CollectFields(field.FieldType, updatedParents))
                        {
                            yield return(nested);
                        }
                    }
                    else
                    {
                        yield return(new ClosureFieldWithGetter(field, parents));
                    }
                }
            }

            // Explore the closure type, initially passing an empty array of parents
            var fields = CollectFields(instance.Target.GetType(), Array.Empty <ClosureFieldWithGetter>()).ToArray();

            // Preload the dynamic getters
            foreach (var field in fields)
            {
                foreach (var parent in field.Parents)
                {
                    parent.BuildDynamicGetter();
                }
                field.BuildDynamicGetter();
            }

            // Calculate how many bytes we need
            int
                referenceCount = 0,
                byteSize       = 0;

            foreach (var field in fields)
            {
                if (field.Info.FieldType.IsValueType)
                {
                    byteSize += Marshal.SizeOf(field.Info.FieldType);
                }
                else
                {
                    referenceCount++;
                }
            }

            return(new ClosureLoaderWithILGetters(fields, referenceCount, byteSize));
        }
Beispiel #2
0
        /// <summary>
        /// Loads all the captured variables from a given closure class and returns them as a <see cref="ClosureData"/> instance
        /// </summary>
        /// <param name="instance">The input <see cref="Delegate"/> instance to load data from</param>
        /// <returns>A <see cref="ClosureData"/> instance with the captured data</returns>
        public unsafe ClosureData GetData(Delegate instance)
        {
            object[] references = ArrayPool <object> .Shared.Rent(ReferenceCount);

            byte[] bytes = ArrayPool <byte> .Shared.Rent(ByteSize);

            int
                referenceOffset = 0, // Offset into the references array
                byteOffset      = 0; // Offset into the bytes array

            for (int i = 0; i < Fields.Count; i++)
            {
                ClosureFieldWithGetter field = Fields[i];

                // Traverse the parents hierarchy
                object target = instance.Target;
                for (int j = 0; j < field.Parents.Count; j++)
                {
                    target = field.Parents[j].Getter(target);
                }
                object value = field.Getter(target);

                // We need to handle value types and objects differently
                if (field.Info.FieldType.IsValueType)
                {
                    // Pin the boxed value and get the source and destination references
                    GCHandle handle      = GCHandle.Alloc(value, GCHandleType.Pinned);
                    void *   p           = handle.AddrOfPinnedObject().ToPointer();
                    ref byte source      = ref Unsafe.AsRef <byte>(p);
                    ref byte destination = ref Unsafe.Add(ref bytes[0], byteOffset);
                    int      size        = Marshal.SizeOf(field.Info.FieldType);

                    // Copy the raw data of the value type into our bytes buffer
                    Unsafe.CopyBlock(ref destination, ref source, (uint)size);
                    byteOffset += size;

                    handle.Free(); // Do NOT forget to do this
                }