web-dev-qa-db-ja.com

Files.ReadAllLinesを非同期にして結果を待つ方法は?

私は次のコードを持っています、

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        button1.IsEnabled = false;

        var s = File.ReadAllLines("Words.txt").ToList(); // my WPF app hangs here
        // do something with s

        button1.IsEnabled = true;
    }

Words.txtにはs変数に読み込む単語がたくさんあります。C#5でasyncおよびawaitキーワードを使用するには、Async CTP Libraryそのため、WPFアプリはハングしません。これまでのところ、次のコードがあります。

    private async void button1_Click(object sender, RoutedEventArgs e)
    {
        button1.IsEnabled = false;

        Task<string[]> ws = Task.Factory.FromAsync<string[]>(
            // What do i have here? there are so many overloads
            ); // is this the right way to do?

        var s = await File.ReadAllLines("Words.txt").ToList();  // what more do i do here apart from having the await keyword?
        // do something with s

        button1.IsEnabled = true;
    }

目標は、WPFアプリのフリーズを回避するために、同期ではなく非同期でファイルを読み取ることです。

どんな助けでも感謝します、ありがとう!

59
user677607

[〜#〜] update [〜#〜]File.ReadAll[Lines|Bytes|Text]File.AppendAll[Lines|Text]およびFile.WriteAll[Lines|Bytes|Text]の非同期バージョンは- 。NET Coreに統合 。NET Core 2.0に同梱されています。これらのメソッドは、出荷時に.NET Standard 2.1の一部にもなります。

本質的にTask.RunのラッパーであるTask.Factory.StartNewを非同期ラッパーに使用 コードの匂い

ブロッキング関数を使用してCPUスレッドを無駄にしたくない場合は、次のように、本当に非同期のIOメソッド、 StreamReader.ReadToEndAsync )を待つ必要があります。

using (var reader = File.OpenText("Words.txt"))
{
    var fileText = await reader.ReadToEndAsync();
    // Do something with fileText...
}

これにより、ファイル全体がList<string>ではなくstringとして取得されます。代わりに行が必要な場合は、次のように後で文字列を簡単に分割できます。

using (var reader = File.OpenText("Words.txt"))
{
    var fileText = await reader.ReadToEndAsync();
    return fileText.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
}

[〜#〜] edit [〜#〜]:以下に、File.ReadAllLinesと同じコードを実現する方法をいくつか示しますが、真に非同期的な方法です。コードは File.ReadAllLines 自体の実装に基づいています:

using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;

public static class FileEx
{
    /// <summary>
    /// This is the same default buffer size as
    /// <see cref="StreamReader"/> and <see cref="FileStream"/>.
    /// </summary>
    private const int DefaultBufferSize = 4096;

    /// <summary>
    /// Indicates that
    /// 1. The file is to be used for asynchronous reading.
    /// 2. The file is to be accessed sequentially from beginning to end.
    /// </summary>
    private const FileOptions DefaultOptions = FileOptions.Asynchronous | FileOptions.SequentialScan;

    public static Task<string[]> ReadAllLinesAsync(string path)
    {
        return ReadAllLinesAsync(path, Encoding.UTF8);
    }

    public static async Task<string[]> ReadAllLinesAsync(string path, Encoding encoding)
    {
        var lines = new List<string>();

        // Open the FileStream with the same FileMode, FileAccess
        // and FileShare as a call to File.OpenText would've done.
        using (var stream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, DefaultBufferSize, DefaultOptions))
        using (var reader = new StreamReader(stream, encoding))
        {
            string line;
            while ((line = await reader.ReadLineAsync()) != null)
            {
                lines.Add(line);
            }
        }

        return lines.ToArray();
    }
}
116
khellang

ファイルの非同期読み取りにはStream.ReadAsyncを使用し、

private async void Button_Click(object sender, RoutedEventArgs e)
{
    string filename = @"c:\Temp\userinputlog.txt";
    byte[] result;

    using (FileStream SourceStream = File.Open(filename, FileMode.Open))
    {
        result = new byte[SourceStream.Length];
        await SourceStream.ReadAsync(result, 0, (int)SourceStream.Length);
    }

    UserInput.Text = System.Text.Encoding.ASCII.GetString(result);
}

MSDN Stream.ReadAsyncを読む

0
Mak Ahmed