📄 connectorpool.cs
字号:
// Copyright 2005, 2006 - Morten Nielsen (www.iter.dk)
//
// This file is part of SharpMap.
// SharpMap is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// SharpMap is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public License
// along with SharpMap; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// Based on ngpsql's ConnPoolDesign demo: http://pgfoundry.org/projects/npgsql
// The following is only proof-of-concept. A final implementation should be based
// on "src\Npgsql\NpgsqlConnectorPool.cs"
using System;
using System.Collections.Generic;
using System.Text;
namespace SharpMap.Data.Providers.Pooling
{
/// <summary>
/// The ConnectorPool class implements the functionality for
/// the administration of the connectors. Controls pooling and
/// sharing of connectors.
/// </summary>
internal class ConnectorPool
{
/// <summary>Unique static instance of the connector pool manager.</summary>
internal static ConnectorPool ConnectorPoolManager = new ConnectorPool();
/// <summary>List of unused, pooled connectors avaliable to the next RequestConnector() call.</summary>
internal List<Connector> PooledConnectors;
/// <summary>List of shared, in use connectors.</summary>
internal List<Connector> SharedConnectors;
/// <summary>
/// Default constructor, creates a new connector pool object.
/// Should only be used once in an application, since more
/// than one connector pool does not make much sense..
/// </summary>
internal ConnectorPool()
{
this.PooledConnectors = new List<Connector>();
this.SharedConnectors = new List<Connector>();
}
/// <summary>
/// Searches the shared and pooled connector lists for a
/// matching connector object or creates a new one.
/// </summary>
/// <param name="provider">Provider requested to connect to the database server</param>
/// <param name="Shared">Allows multiple connections on a single connector. </param>
/// <returns>A pooled connector object.</returns>
internal Connector RequestConnector(SharpMap.Data.Providers.IProvider provider, bool Shared)
{
// if a shared connector is requested then the Shared
// Connector List is searched first:
if (Shared)
{
foreach (Connector Connector in this.SharedConnectors)
{
if (Connector.Provider.ConnectionID == provider.ConnectionID)
{ // Bingo!
// Return the shared connector to caller.
// The connector is already in use.
Connector._ShareCount++;
return Connector;
}
}
}
// if a shared connector could not be found or a
// nonshared connector is requested, then the pooled
// (unused) connectors are beeing searched.
foreach (Connector Connector in this.PooledConnectors)
{
if (Connector.Provider.ConnectionID == provider.ConnectionID)
{ // Bingo!
// Remove the Connector from the pooled connectors list.
this.PooledConnectors.Remove(Connector);
// Make the connector shared if requested
if (Connector.Shared = Shared)
{
this.SharedConnectors.Add(Connector);
Connector._ShareCount = 1;
}
// done...
Connector.InUse = true;
return Connector;
}
}
// No suitable connector found, so create new one
Connector NewConnector = new Connector(provider, Shared);
// Shared connections must be added to the shared
// connectors list
if (Shared)
{
this.SharedConnectors.Add(NewConnector);
NewConnector._ShareCount = 1;
}
// and then returned to the caller
NewConnector.InUse = true;
NewConnector.Open();
return NewConnector;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -