mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-05-01 14:52:50 +08:00
158 lines
4.4 KiB
C#
158 lines
4.4 KiB
C#
using Npgsql;
|
|
using SafeObjectPool;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql.PostgreSQL {
|
|
|
|
public class PostgreSQLConnectionPool : ObjectPool<DbConnection> {
|
|
|
|
internal Action availableHandler;
|
|
internal Action unavailableHandler;
|
|
|
|
public PostgreSQLConnectionPool(string name, string connectionString, Action availableHandler, Action unavailableHandler) : base(null) {
|
|
var policy = new PostgreSQLConnectionPoolPolicy {
|
|
_pool = this,
|
|
Name = name
|
|
};
|
|
this.Policy = policy;
|
|
policy.ConnectionString = connectionString;
|
|
|
|
this.availableHandler = availableHandler;
|
|
this.unavailableHandler = unavailableHandler;
|
|
}
|
|
|
|
public void Return(Object<DbConnection> obj, Exception exception, bool isRecreate = false) {
|
|
if (exception != null && exception is NpgsqlException) {
|
|
|
|
if (exception is System.IO.IOException) {
|
|
|
|
base.SetUnavailable(exception);
|
|
|
|
} else if (obj.Value.Ping() == false) {
|
|
|
|
base.SetUnavailable(exception);
|
|
}
|
|
}
|
|
base.Return(obj, isRecreate);
|
|
}
|
|
}
|
|
|
|
public class PostgreSQLConnectionPoolPolicy : IPolicy<DbConnection> {
|
|
|
|
internal PostgreSQLConnectionPool _pool;
|
|
public string Name { get; set; } = "PostgreSQL NpgsqlConnection 对象池";
|
|
public int PoolSize { get; set; } = 100;
|
|
public TimeSpan SyncGetTimeout { get; set; } = TimeSpan.FromSeconds(10);
|
|
public int AsyncGetCapacity { get; set; } = 10000;
|
|
public bool IsThrowGetTimeoutException { get; set; } = true;
|
|
public int CheckAvailableInterval { get; set; } = 5;
|
|
|
|
private string _connectionString;
|
|
public string ConnectionString {
|
|
get => _connectionString;
|
|
set {
|
|
var connStr = value ?? "";
|
|
var poolsizePatern = @"Maximum\s*pool\s*size\s*=\s*(\d+)";
|
|
Match m = Regex.Match(connStr, poolsizePatern, RegexOptions.IgnoreCase);
|
|
if (m.Success == false || int.TryParse(m.Groups[1].Value, out var poolsize) == false || poolsize <= 0) poolsize = 100;
|
|
PoolSize = poolsize + 1;
|
|
_connectionString = m.Success ?
|
|
Regex.Replace(connStr, poolsizePatern, $"Maximum pool size={PoolSize}", RegexOptions.IgnoreCase) :
|
|
$"{connStr};Maximum pool size={PoolSize}";
|
|
|
|
var initConns = new Object<DbConnection>[poolsize];
|
|
for (var a = 0; a < poolsize; a++) try { initConns[a] = _pool.Get(); } catch { }
|
|
foreach (var conn in initConns) _pool.Return(conn);
|
|
}
|
|
}
|
|
|
|
|
|
public bool OnCheckAvailable(Object<DbConnection> obj) {
|
|
if (obj.Value.State == ConnectionState.Closed) obj.Value.Open();
|
|
var cmd = obj.Value.CreateCommand();
|
|
cmd.CommandText = "select 1";
|
|
cmd.ExecuteNonQuery();
|
|
return true;
|
|
}
|
|
|
|
public DbConnection OnCreate() {
|
|
var conn = new NpgsqlConnection(_connectionString);
|
|
return conn;
|
|
}
|
|
|
|
public void OnDestroy(DbConnection obj) {
|
|
if (obj.State != ConnectionState.Closed) obj.Close();
|
|
obj.Dispose();
|
|
}
|
|
|
|
public void OnGet(Object<DbConnection> obj) {
|
|
|
|
if (_pool.IsAvailable) {
|
|
|
|
if (obj.Value.State != ConnectionState.Open || DateTime.Now.Subtract(obj.LastReturnTime).TotalSeconds > 60 && obj.Value.Ping() == false) {
|
|
|
|
try {
|
|
obj.Value.Open();
|
|
} catch (Exception ex) {
|
|
if (_pool.SetUnavailable(ex) == true)
|
|
throw new Exception($"【{this.Name}】状态不可用,等待后台检查程序恢复方可使用。{ex.Message}");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
async public Task OnGetAsync(Object<DbConnection> obj) {
|
|
|
|
if (_pool.IsAvailable) {
|
|
|
|
if (obj.Value.State != ConnectionState.Open || DateTime.Now.Subtract(obj.LastReturnTime).TotalSeconds > 60 && obj.Value.Ping() == false) {
|
|
|
|
try {
|
|
await obj.Value.OpenAsync();
|
|
} catch (Exception ex) {
|
|
if (_pool.SetUnavailable(ex) == true)
|
|
throw new Exception($"【{this.Name}】状态不可用,等待后台检查程序恢复方可使用。{ex.Message}");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void OnGetTimeout() {
|
|
|
|
}
|
|
|
|
public void OnReturn(Object<DbConnection> obj) {
|
|
|
|
}
|
|
|
|
public void OnAvailable() {
|
|
_pool.availableHandler?.Invoke();
|
|
}
|
|
|
|
public void OnUnavailable() {
|
|
_pool.unavailableHandler?.Invoke();
|
|
}
|
|
}
|
|
|
|
static class DbConnectionExtensions {
|
|
|
|
public static bool Ping(this DbConnection that) {
|
|
try {
|
|
var cmd = that.CreateCommand();
|
|
cmd.CommandText = "select 1";
|
|
cmd.ExecuteNonQuery();
|
|
return true;
|
|
} catch {
|
|
try { that.Close(); } catch { }
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|