Return Stream from WCF service, using SqlFileStream

后端 未结 3 691
猫巷女王i
猫巷女王i 2020-12-31 07:10

I have a WCF service, from which users can request large datafiles (stored in an SQL database with FileStream enabled). These files should be streamed, and not loaded into m

相关标签:
3条回答
  • 2020-12-31 07:30

    Hmm I might be missing something here, but it seems to me a simpler approach would be to provide the stream to the WCF method and writing to it from there, rather than trying to return a stream which the client reads from?

    Here's an example for a WCF method:

    public void WriteFileToStream(FetchFileArgs args, Stream outputStream)
    {
        using (SqlConnection conn = CreateOpenConnection())
        using (SqlTransaction tran = conn.BeginTransaction(IsolationLevel.ReadCommitted))
        using (SqlCommand cmd = conn.CreateCommand())
        {
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.CommandText = "usp_file";
            cmd.Transaction = tran;
            cmd.Parameters.Add("@FileId", SqlDbType.NVarChar).Value = args.Id;
    
            using (SqlDataReader reader = cmd.ExecuteReader())
            {
                if (reader.Read())
                {
                    string path = reader.GetString(3);
                    byte[] streamContext = reader.GetSqlBytes(4).Buffer;
    
                    using (var sqlStream = new SqlFileStream(path, streamContext, FileAccess.Read))
                        sqlStream.CopyTo(outputStream);
                }
            }
    
            tran.Commit();
        }
    }
    

    In my app, the consumer happens to be an ASP.NET application, and the calling code looks like this:

    _fileStorageProvider.WriteFileToStream(fileId, Response.OutputStream);
    
    0 讨论(0)
  • 2020-12-31 07:37

    Normally I might suggest wrapping the stream in a custom stream that closes the transaction when disposed, however IIRC WCF makes no guarantees about which threads do what, but TransactionScope is thread-specific. As such, perhaps the better option is to copy the data into a MemoryStream (if it isn't too big) and return that. The Stream.Copy method in 4.0 should make that a breeze, but remember to rewind the memory-stream before the final return (.Position = 0).

    Obviously this will be a big problem if the stream is big, ... but, if the stream is big enough for that to be a concern, then personally I'd be concerned at the fact that it is running in TransactionScope at all, since that has inbuilt time limits, and causes serializable isolation (by default).

    A final suggestion would be to use a SqlTransaction, which is then not thread-dependent; you could write a Stream wrapper that sits around the SqlFileStream, and close the reader, transaction and connection (and the wrapped stream) in the Dispose(). WCF will call that (via Close()) after processing the results.

    0 讨论(0)
  • 2020-12-31 07:44

    Logically none of the SQL related stuff belongs to Stream wrapper class (WcfStream) especially if you intend to send WcfStream instance to external clients.

    What you could’ve done was to have an event that would be triggered once WcfStream is disposed or closed:

    public class WcfStream : Stream
    {
        public Stream SQLStream { get; set; }
        public event EventHandler StreamClosedEventHandler;
    
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                SQLStream.Dispose();
    
                if (this.StreamClosedEventHandler != null)
                {
                    this.StreamClosedEventHandler(this, new EventArgs());
                }
            }
            base.Dispose(disposing);
        }
    }
    

    Then in you main code you would hook up an event handler to StreamClosedEventHandler and close all sql-related objects there as such:

    ...
        WcfStream test = new WcfStream();
        test.SQLStream = new SqlFileStream(filePath, txContext, FileAccess.Read);
        test.StreamClosedEventHandler +=
                    new EventHandler((sender, args) => DownloadStreamCompleted(sqlDataReader, sqlConnection));
    
        return test;
    }
    
    private void DownloadStreamCompleted(SqlDataReader sqlDataReader, SQLConnection sqlConnection)
    {
        // You might want to commit Transaction here as well
        sqlDataReader.Close();
        sqlConnection.Close();
    }
    

    This looks to be working for me and it keeps Streaming logic separate from SQL-related code.

    0 讨论(0)
提交回复
热议问题