File: System\Windows\Forms\OLE\DataObject.DataStore.cs
Web Access
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections.Specialized;
using System.Drawing;
using System.Private.Windows;
using System.Reflection.Metadata;
using System.Runtime.Serialization;
 
namespace System.Windows.Forms;
 
public partial class DataObject
{
    private sealed partial class DataStore : ITypedDataObject
    {
        private readonly Dictionary<string, DataStoreEntry> _mappedData = new(BackCompatibleStringComparer.Default);
 
        private bool TryGetDataInternal<T>(
            string format,
            bool autoConvert,
            [NotNullWhen(true), MaybeNullWhen(false)] out T data)
        {
            data = default;
            if (string.IsNullOrWhiteSpace(format))
            {
                return false;
            }
 
            if (_mappedData.TryGetValue(format, out DataStoreEntry? dse))
            {
                if (dse.Data is T t)
                {
                    data = t;
                    return true;
                }
                else if (dse.Data is JsonData<T> jsonData)
                {
                    data = (T)jsonData.Deserialize();
                    return true;
                }
            }
 
            if (!autoConvert
                || (dse is not null && !dse.AutoConvert)
                || GetMappedFormats(format) is not { } mappedFormats)
            {
                return false;
            }
 
            for (int i = 0; i < mappedFormats.Length; i++)
            {
                if (format.Equals(mappedFormats[i]))
                {
                    continue;
                }
 
                if (_mappedData.TryGetValue(mappedFormats[i], out DataStoreEntry? found))
                {
                    if (found.Data is T value)
                    {
                        data = value;
                        return true;
                    }
                    else if (found.Data is JsonData<T> jsonData)
                    {
                        data = (T)jsonData.Deserialize();
                        return true;
                    }
                }
            }
 
            return false;
        }
 
        public object? GetData(string format, bool autoConvert)
        {
            TryGetDataInternal(format, autoConvert, out object? data);
            return data;
        }
 
        public object? GetData(string format) => GetData(format, autoConvert: true);
 
        public object? GetData(Type format) => GetData(format.FullName!);
 
        public void SetData(string format, bool autoConvert, object? data)
        {
            if (string.IsNullOrWhiteSpace(format))
            {
                ArgumentNullException.ThrowIfNull(format);
                throw new ArgumentException(SR.DataObjectWhitespaceEmptyFormatNotAllowed, nameof(format));
            }
 
            // We do not have proper support for Dibs, so if the user explicitly asked
            // for Dib and provided a Bitmap object we can't convert. Instead, publish as an HBITMAP
            // and let the system provide the conversion for us.
            if (data is Bitmap && format.Equals(DataFormats.Dib))
            {
                format = autoConvert ? DataFormats.Bitmap : throw new NotSupportedException(SR.DataObjectDibNotSupported);
            }
 
            _mappedData[format] = new DataStoreEntry(data, autoConvert);
        }
 
        public void SetData(string format, object? data) => SetData(format, autoConvert: true, data);
 
        public void SetData(Type format, object? data)
        {
            ArgumentNullException.ThrowIfNull(format);
            SetData(format.FullName!, data);
        }
 
        public void SetData(object? data)
        {
            ArgumentNullException.ThrowIfNull(data);
 
            if (data is ISerializable
                && !_mappedData.ContainsKey(DataFormats.Serializable))
            {
                SetData(DataFormats.Serializable, data);
            }
 
            SetData(data.GetType(), data);
        }
 
        public bool GetDataPresent(Type format) => GetDataPresent(format.FullName!);
 
        public bool GetDataPresent(string format, bool autoConvert)
        {
            if (string.IsNullOrWhiteSpace(format))
            {
                return false;
            }
 
            if (!autoConvert)
            {
                Debug.Assert(_mappedData is not null, "data must be non-null");
                return _mappedData.ContainsKey(format);
            }
            else
            {
                string[] formats = GetFormats(autoConvert);
                Debug.Assert(formats is not null, "Null returned from GetFormats");
 
                for (int i = 0; i < formats.Length; i++)
                {
                    Debug.Assert(formats[i] is not null, $"Null format inside of formats at index {i}");
                    if (format.Equals(formats[i]))
                    {
                        return true;
                    }
                }
 
                return false;
            }
        }
 
        public bool GetDataPresent(string format) => GetDataPresent(format, autoConvert: true);
 
        public string[] GetFormats(bool autoConvert)
        {
            Debug.Assert(_mappedData is not null, "data collection can't be null");
            Debug.Assert(_mappedData.Keys is not null, "data Keys collection can't be null");
 
            string[] baseVar = new string[_mappedData.Keys.Count];
            _mappedData.Keys.CopyTo(baseVar, 0);
            Debug.Assert(baseVar is not null, "Collections should never return NULL arrays!!!");
 
            if (autoConvert)
            {
                // Since we are only adding elements to the HashSet, the order will be preserved.
                int baseVarLength = baseVar.Length;
                HashSet<string> distinctFormats = new(baseVarLength);
                for (int i = 0; i < baseVarLength; i++)
                {
                    Debug.Assert(_mappedData[baseVar[i]] is not null, $"Null item in data collection with key '{baseVar[i]}'");
                    if (_mappedData[baseVar[i]]!.AutoConvert)
                    {
                        string[] cur = GetMappedFormats(baseVar[i])!;
                        Debug.Assert(cur is not null, $"GetMappedFormats returned null for '{baseVar[i]}'");
                        for (int j = 0; j < cur.Length; j++)
                        {
                            distinctFormats.Add(cur[j]);
                        }
                    }
                    else
                    {
                        distinctFormats.Add(baseVar[i]);
                    }
                }
 
                baseVar = [.. distinctFormats];
            }
 
            return baseVar;
        }
 
        public string[] GetFormats() => GetFormats(autoConvert: true);
 
        public bool TryGetData<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>(
            string format,
            Func<TypeName, Type> resolver,
            bool autoConvert,
            [NotNullWhen(true), MaybeNullWhen(false)] out T data) =>
                TryGetDataInternal(format, autoConvert, out data);
 
        public bool TryGetData<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>(
            string format,
            bool autoConvert,
            [NotNullWhen(true), MaybeNullWhen(false)] out T data) =>
                TryGetDataInternal(format, autoConvert, out data);
 
        public bool TryGetData<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>(
            string format,
            [NotNullWhen(true), MaybeNullWhen(false)] out T data) =>
                TryGetDataInternal(format, autoConvert: false, out data);
 
        public bool TryGetData<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] T>(
            [NotNullWhen(true), MaybeNullWhen(false)] out T data) =>
                TryGetDataInternal(typeof(T).FullName!, autoConvert: false, out data);
    }
}