Tapeti/Tapeti.Flow.SQL/SqlConnectionFlowRepository.cs

136 lines
4.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Tapeti.Flow.SQL
{
/// <inheritdoc />
/// <summary>
/// IFlowRepository implementation for SQL server.
/// </summary>
/// <remarks>
/// Assumes the following table layout (table name configurable and may include schema):
/// create table Flow
/// (
/// FlowID uniqueidentifier not null,
/// CreationTime datetime2(3) not null,
/// StateJson nvarchar(max) null,
/// constraint PK_Flow primary key clustered(FlowID)
/// );
/// </remarks>
2017-08-14 11:58:01 +00:00
public class SqlConnectionFlowRepository : IFlowRepository
{
private readonly string connectionString;
2018-12-19 20:41:19 +00:00
private readonly string tableName;
/// <summary>
/// </summary>
2018-12-19 20:41:19 +00:00
public SqlConnectionFlowRepository(string connectionString, string tableName = "Flow")
{
this.connectionString = connectionString;
2018-12-19 20:41:19 +00:00
this.tableName = tableName;
}
/// <inheritdoc />
2017-08-14 11:58:01 +00:00
public async Task<List<KeyValuePair<Guid, T>>> GetStates<T>()
{
2019-10-10 14:26:13 +00:00
return await SqlRetryHelper.Execute(async () =>
{
2019-10-10 14:26:13 +00:00
using (var connection = await GetConnection())
{
2019-10-10 14:26:13 +00:00
var flowQuery = new SqlCommand($"select FlowID, StateJson from {tableName}", connection);
var flowReader = await flowQuery.ExecuteReaderAsync();
2019-10-10 14:26:13 +00:00
var result = new List<KeyValuePair<Guid, T>>();
2019-10-10 14:26:13 +00:00
while (await flowReader.ReadAsync())
{
var flowID = flowReader.GetGuid(0);
var stateJson = flowReader.GetString(1);
2019-10-10 14:26:13 +00:00
var state = JsonConvert.DeserializeObject<T>(stateJson);
result.Add(new KeyValuePair<Guid, T>(flowID, state));
}
return result;
}
});
}
/// <inheritdoc />
2018-12-19 20:41:19 +00:00
public async Task CreateState<T>(Guid flowID, T state, DateTime timestamp)
{
2019-10-10 14:26:13 +00:00
await SqlRetryHelper.Execute(async () =>
2018-12-19 20:41:19 +00:00
{
2019-10-10 14:26:13 +00:00
using (var connection = await GetConnection())
{
var query = new SqlCommand($"insert into {tableName} (FlowID, StateJson, CreationTime)" +
"values (@FlowID, @StateJson, @CreationTime)",
connection);
2019-10-10 14:26:13 +00:00
var flowIDParam = query.Parameters.Add("@FlowID", SqlDbType.UniqueIdentifier);
var stateJsonParam = query.Parameters.Add("@StateJson", SqlDbType.NVarChar);
var creationTimeParam = query.Parameters.Add("@CreationTime", SqlDbType.DateTime2);
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
flowIDParam.Value = flowID;
stateJsonParam.Value = JsonConvert.SerializeObject(state);
creationTimeParam.Value = timestamp;
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
await query.ExecuteNonQueryAsync();
}
});
}
/// <inheritdoc />
2018-12-19 20:41:19 +00:00
public async Task UpdateState<T>(Guid flowID, T state)
{
2019-10-10 14:26:13 +00:00
await SqlRetryHelper.Execute(async () =>
2018-12-19 20:41:19 +00:00
{
2019-10-10 14:26:13 +00:00
using (var connection = await GetConnection())
{
var query = new SqlCommand($"update {tableName} set StateJson = @StateJson where FlowID = @FlowID", connection);
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
var flowIDParam = query.Parameters.Add("@FlowID", SqlDbType.UniqueIdentifier);
var stateJsonParam = query.Parameters.Add("@StateJson", SqlDbType.NVarChar);
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
flowIDParam.Value = flowID;
stateJsonParam.Value = JsonConvert.SerializeObject(state);
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
await query.ExecuteNonQueryAsync();
}
});
}
/// <inheritdoc />
2018-12-19 20:41:19 +00:00
public async Task DeleteState(Guid flowID)
{
2019-10-10 14:26:13 +00:00
await SqlRetryHelper.Execute(async () =>
2018-12-19 20:41:19 +00:00
{
2019-10-10 14:26:13 +00:00
using (var connection = await GetConnection())
{
var query = new SqlCommand($"delete from {tableName} where FlowID = @FlowID", connection);
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
var flowIDParam = query.Parameters.Add("@FlowID", SqlDbType.UniqueIdentifier);
flowIDParam.Value = flowID;
2018-12-19 20:41:19 +00:00
2019-10-10 14:26:13 +00:00
await query.ExecuteNonQueryAsync();
}
});
}
private async Task<SqlConnection> GetConnection()
{
var connection = new SqlConnection(connectionString);
await connection.OpenAsync();
return connection;
}
}
}