summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.MountPoints.cs
blob: a2fe2078b69b6a9ceff88e146d7b5844786ab819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;

internal static partial class Interop
{
    internal static partial class Sys
    {
        [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
        private unsafe delegate void MountPointFound(byte* name);

        [DllImport(Libraries.SystemNative, EntryPoint = "SystemNative_GetAllMountPoints", SetLastError = true)]
        private static extern int GetAllMountPoints(MountPointFound mpf);

        internal static string[] GetAllMountPoints()
        {
            int count = 0;
            var found = new string[4];

            unsafe
            {
                int result = GetAllMountPoints((byte* name) =>
                {
                    if (count == found.Length)
                    {
                        Array.Resize(ref found!, count * 2); // TODO-NULLABLE: Remove ! when nullable attributes are respected
                    }
                    found[count++] = Marshal.PtrToStringAnsi((IntPtr)name)!;
                });
            }

            Array.Resize(ref found!, count); // TODO-NULLABLE: Remove ! when nullable attributes are respected
            return found;
        }
    }
}