Skip to content

Commit 2f4730f

Browse files
Generate async files
1 parent dcc7c1c commit 2f4730f

14 files changed

+208
-7
lines changed

src/NHibernate.Test/Async/NHSpecificTest/GH1547/Fixture.cs

+5
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,11 @@ public partial class DriverForSubstitutedCommand : IDriver
151151
#endregion
152152
#region Pure forwarding
153153

154+
Task<DbDataReader> IDriver.ExecuteReaderAsync(DbCommand cmd, CancellationToken cancellationToken)
155+
{
156+
return _driverImplementation.ExecuteReaderAsync(cmd, cancellationToken);
157+
}
158+
154159
#endregion
155160

156161
private partial class SubstituteDbCommand : DbCommand

src/NHibernate.Test/Async/NHSpecificTest/GH3530/Fixture.cs

+9
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ protected override void CreateSchema()
5353
CreateTable("DateTime");
5454
CreateTable("Double");
5555
CreateTable("Decimal");
56+
CreateTable("Float");
5657

5758
base.CreateSchema();
5859
}
@@ -194,6 +195,14 @@ public async Task TestIntegerAsync(CultureInfo from, CultureInfo to)
194195
await (PerformTestAsync<int, IntegerEntity>(from, to, integerValue, (expected, actual) => Assert.AreEqual(expected, actual)));
195196
}
196197

198+
[Test, TestCaseSource(nameof(GetTestCases))]
199+
public async Task TestFloatAsync(CultureInfo from, CultureInfo to)
200+
{
201+
float floatValue = 12.3f;
202+
203+
await (PerformTestAsync<float, FloatEntity>(from, to, floatValue, (expected, actual) => Assert.AreEqual(expected, actual)));
204+
}
205+
197206
private CultureInfo CurrentCulture
198207
{
199208
get => CultureInfo.CurrentCulture;

src/NHibernate.Test/Async/TypesTest/AbstractDateTimeTypeFixture.cs

+16
Original file line numberDiff line numberDiff line change
@@ -489,4 +489,20 @@ protected DateTimeKind GetTypeKind()
489489
return (DateTimeKind) _kindProperty.GetValue(Type);
490490
}
491491
}
492+
493+
public partial class ClientDriverWithParamsStats : IDriver
494+
{
495+
496+
Task<DbDataReader> IDriver.ExecuteReaderAsync(DbCommand cmd, CancellationToken cancellationToken)
497+
{
498+
return _driverImplementation.ExecuteReaderAsync(cmd, cancellationToken);
499+
}
500+
501+
#region Firebird mess
502+
503+
#endregion
504+
#region Pure forwarding
505+
506+
#endregion
507+
}
492508
}

src/NHibernate.Test/TypesTest/AbstractDateTimeTypeFixture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ protected DateTimeKind GetTypeKind()
544544
}
545545
}
546546

547-
public class ClientDriverWithParamsStats : IDriver
547+
public partial class ClientDriverWithParamsStats : IDriver
548548
{
549549
private readonly Dictionary<SqlType, int> _usedSqlTypes = new Dictionary<SqlType, int>();
550550
private readonly Dictionary<DbType, int> _usedDbTypes = new Dictionary<DbType, int>();

src/NHibernate/Async/AdoNet/AbstractBatcher.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,16 @@ private async Task<DbDataReader> DoExecuteReaderAsync(DbCommand cmd, Cancellatio
167167
cancellationToken.ThrowIfCancellationRequested();
168168
try
169169
{
170-
var reader = await (cmd.ExecuteReaderAsync(cancellationToken)).ConfigureAwait(false);
170+
var driver = _factory.ConnectionProvider.Driver;
171+
var reader = await (driver.ExecuteReaderAsync(cmd, cancellationToken)).ConfigureAwait(false);
172+
171173
if (reader == null)
172174
{
173175
// MySql may return null instead of an exception, by example when the query is canceled by another thread.
174176
throw new InvalidOperationException("The query execution has yielded a null reader. (Has it been canceled?)");
175177
}
176-
return _factory.ConnectionProvider.Driver.SupportsMultipleOpenReaders
178+
179+
return driver.SupportsMultipleOpenReaders
177180
? reader
178181
: await (NHybridDataReader.CreateAsync(reader, cancellationToken)).ConfigureAwait(false);
179182
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by AsyncGenerator.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
11+
using System;
12+
using System.Collections;
13+
using System.Data.Common;
14+
using System.Diagnostics.CodeAnalysis;
15+
16+
namespace NHibernate.Driver
17+
{
18+
using System.Threading.Tasks;
19+
using System.Threading;
20+
public partial class DirectCastDbDataReader : DbDataReader
21+
{
22+
23+
public override Task<bool> NextResultAsync(CancellationToken cancellationToken)
24+
{
25+
if (cancellationToken.IsCancellationRequested)
26+
{
27+
return Task.FromCanceled<bool>(cancellationToken);
28+
}
29+
return _reader.NextResultAsync(cancellationToken);
30+
}
31+
32+
public override Task<bool> ReadAsync(CancellationToken cancellationToken)
33+
{
34+
if (cancellationToken.IsCancellationRequested)
35+
{
36+
return Task.FromCanceled<bool>(cancellationToken);
37+
}
38+
return _reader.ReadAsync(cancellationToken);
39+
}
40+
}
41+
}
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by AsyncGenerator.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
11+
using System;
12+
using System.Collections.Generic;
13+
using System.Data;
14+
using System.Data.Common;
15+
using System.Linq;
16+
using NHibernate.Engine;
17+
using NHibernate.SqlCommand;
18+
using NHibernate.SqlTypes;
19+
using NHibernate.Util;
20+
using Environment = NHibernate.Cfg.Environment;
21+
22+
namespace NHibernate.Driver
23+
{
24+
using System.Threading.Tasks;
25+
using System.Threading;
26+
public abstract partial class DriverBase : IDriver, ISqlParameterFormatter
27+
{
28+
29+
#if NETFX
30+
#else
31+
32+
#endif
33+
34+
/// <summary>
35+
/// Provides a mechanism to override the default DbDataReader used
36+
/// by a data provider. Some providers don't provide a DataReader
37+
/// that implement all of the methods.
38+
/// </summary>
39+
/// <param name="cmd">The command to execute.</param>
40+
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
41+
/// <returns>A <see cref="DbDataReader">DbDataReader</see> object.</returns>
42+
public virtual Task<DbDataReader> ExecuteReaderAsync(DbCommand cmd, CancellationToken cancellationToken)
43+
{
44+
if (cancellationToken.IsCancellationRequested)
45+
{
46+
return Task.FromCanceled<DbDataReader>(cancellationToken);
47+
}
48+
return cmd.ExecuteReaderAsync(cancellationToken);
49+
}
50+
}
51+
}
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by AsyncGenerator.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
11+
using System;
12+
using System.Collections.Generic;
13+
using System.Data;
14+
using System.Data.Common;
15+
using NHibernate.Engine;
16+
using NHibernate.SqlCommand;
17+
using NHibernate.SqlTypes;
18+
19+
namespace NHibernate.Driver
20+
{
21+
using System.Threading.Tasks;
22+
using System.Threading;
23+
public partial interface IDriver
24+
{
25+
26+
/// <summary>
27+
/// Provides a mechanism to override the default DbDataReader used
28+
/// by a data provider. Some providers don't provide a DataReader
29+
/// that implement all of the methods.
30+
/// </summary>
31+
/// <param name="cmd">The command to execute.</param>
32+
/// <param name="cancellationToken">A cancellation token that can be used to cancel the work</param>
33+
/// <returns>A <see cref="DbDataReader">DbDataReader</see> object.</returns>
34+
Task<DbDataReader> ExecuteReaderAsync(DbCommand cmd, CancellationToken cancellationToken);
35+
}
36+
}

src/NHibernate/Async/Driver/OracleDataClientDriverBase.cs

+6
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,11 @@ protected override async Task<DbDataReader> ExecuteDbDataReaderAsync(CommandBeha
3535
return reader;
3636
}
3737
}
38+
39+
public override async Task<DbDataReader> ExecuteReaderAsync(DbCommand cmd, CancellationToken cancellationToken)
40+
{
41+
cancellationToken.ThrowIfCancellationRequested();
42+
return new DirectCastDbDataReader(await (cmd.ExecuteReaderAsync(cancellationToken)).ConfigureAwait(false));
43+
}
3844
}
3945
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by AsyncGenerator.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
11+
using System;
12+
using System.Data;
13+
using System.Data.Common;
14+
using NHibernate.Util;
15+
16+
namespace NHibernate.Driver
17+
{
18+
using System.Threading.Tasks;
19+
using System.Threading;
20+
public partial class Sql2008ClientDriver : SqlClientDriver
21+
{
22+
23+
#if NETFX
24+
#else
25+
26+
#endif
27+
28+
public override async Task<DbDataReader> ExecuteReaderAsync(DbCommand cmd, CancellationToken cancellationToken)
29+
{
30+
cancellationToken.ThrowIfCancellationRequested();
31+
return new DirectCastDbDataReader(await (cmd.ExecuteReaderAsync(cancellationToken)).ConfigureAwait(false));
32+
}
33+
}
34+
}

src/NHibernate/Driver/DirectCastDbDataReader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace NHibernate.Driver
77
{
8-
public class DirectCastDbDataReader : DbDataReader
8+
public partial class DirectCastDbDataReader : DbDataReader
99
{
1010
private readonly DbDataReader _reader;
1111

src/NHibernate/Driver/DriverBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace NHibernate.Driver
1414
/// <summary>
1515
/// Base class for the implementation of IDriver
1616
/// </summary>
17-
public abstract class DriverBase : IDriver, ISqlParameterFormatter
17+
public abstract partial class DriverBase : IDriver, ISqlParameterFormatter
1818
{
1919
private static readonly INHibernateLogger log = NHibernateLogger.For(typeof(DriverBase));
2020

src/NHibernate/Driver/IDriver.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace NHibernate.Driver
3030
/// value="FullyQualifiedClassName, AssemblyName"
3131
/// </code>
3232
/// </remarks>
33-
public interface IDriver
33+
public partial interface IDriver
3434
{
3535
/// <summary>
3636
/// Configure the driver using <paramref name="settings"/>.

src/NHibernate/Driver/Sql2008ClientDriver.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace NHibernate.Driver
77
{
8-
public class Sql2008ClientDriver : SqlClientDriver
8+
public partial class Sql2008ClientDriver : SqlClientDriver
99
{
1010
const byte MaxTime = 5;
1111

0 commit comments

Comments
 (0)