/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.0.8
src/Npgsql/NpgsqlLargeObjectManager.cs
256 строк
12 KB
Shay Rojansky
Change CommandType.StoredProcedure to execute procedures (#4706)
14 окт 2022, 11:13
Не верифицирован
14 окт 2022, 11:13
8bbbe81
Код
Авторство
О чём код?
using Npgsql.Util; using System; using System.Data; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Npgsql; /// <summary> /// Large object manager. This class can be used to store very large files in a PostgreSQL database. /// </summary> public class NpgsqlLargeObjectManager { const int InvWrite = 0x00020000; const int InvRead = 0x00040000; internal NpgsqlConnection Connection { get; } /// <summary> /// The largest chunk size (in bytes) read and write operations will read/write each roundtrip to the network. Default 4 MB. /// </summary> public int MaxTransferBlockSize { get; set; } /// <summary> /// Creates an NpgsqlLargeObjectManager for this connection. The connection must be opened to perform remote operations. /// </summary> /// <param name="connection"></param> public NpgsqlLargeObjectManager(NpgsqlConnection connection) { Connection = connection; MaxTransferBlockSize = 4 * 1024 * 1024; // 4MB } /// <summary> /// Execute a function /// </summary> internal async Task<T> ExecuteFunction<T>(string function, bool async, CancellationToken cancellationToken, params object[] arguments) { using var command = Connection.CreateCommand(); var stringBuilder = new StringBuilder("SELECT * FROM ").Append(function).Append('('); for (var i = 0; i < arguments.Length; i++) { if (i > 0) stringBuilder.Append(", "); stringBuilder.Append('$').Append(i + 1); command.Parameters.Add(new NpgsqlParameter { Value = arguments[i] }); } stringBuilder.Append(')'); command.CommandText = stringBuilder.ToString(); return (T)(async ? await command.ExecuteScalarAsync(cancellationToken) : command.ExecuteScalar())!; } /// <summary> /// Execute a function that returns a byte array /// </summary> /// <returns></returns> internal async Task<int> ExecuteFunctionGetBytes( string function, byte[] buffer, int offset, int len, bool async, CancellationToken cancellationToken, params object[] arguments) { using var command = Connection.CreateCommand(); var stringBuilder = new StringBuilder("SELECT * FROM ").Append(function).Append('('); for (var i = 0; i < arguments.Length; i++) { if (i > 0) stringBuilder.Append(", "); stringBuilder.Append('$').Append(i + 1); command.Parameters.Add(new NpgsqlParameter { Value = arguments[i] }); } stringBuilder.Append(')'); command.CommandText = stringBuilder.ToString(); var reader = async ? await command.ExecuteReaderAsync(CommandBehavior.SequentialAccess, cancellationToken) : command.ExecuteReader(CommandBehavior.SequentialAccess); try { if (async) await reader.ReadAsync(cancellationToken); else reader.Read(); return (int)reader.GetBytes(0, 0, buffer, offset, len); } finally { if (async) await reader.DisposeAsync(); else reader.Dispose(); } } /// <summary> /// Create an empty large object in the database. If an oid is specified but is already in use, an PostgresException will be thrown. /// </summary> /// <param name="preferredOid">A preferred oid, or specify 0 if one should be automatically assigned</param> /// <returns>The oid for the large object created</returns> /// <exception cref="PostgresException">If an oid is already in use</exception> public uint Create(uint preferredOid = 0) => Create(preferredOid, false).GetAwaiter().GetResult(); // Review unused parameters /// <summary> /// Create an empty large object in the database. If an oid is specified but is already in use, an PostgresException will be thrown. /// </summary> /// <param name="preferredOid">A preferred oid, or specify 0 if one should be automatically assigned</param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> /// <returns>The oid for the large object created</returns> /// <exception cref="PostgresException">If an oid is already in use</exception> public Task<uint> CreateAsync(uint preferredOid, CancellationToken cancellationToken = default) => Create(preferredOid, true, cancellationToken); Task<uint> Create(uint preferredOid, bool async, CancellationToken cancellationToken = default) => ExecuteFunction<uint>("lo_create", async, cancellationToken, (int)preferredOid); /// <summary> /// Opens a large object on the backend, returning a stream controlling this remote object. /// A transaction snapshot is taken by the backend when the object is opened with only read permissions. /// When reading from this object, the contents reflects the time when the snapshot was taken. /// Note that this method, as well as operations on the stream must be wrapped inside a transaction. /// </summary> /// <param name="oid">Oid of the object</param> /// <returns>An NpgsqlLargeObjectStream</returns> public NpgsqlLargeObjectStream OpenRead(uint oid) => OpenRead(oid, false).GetAwaiter().GetResult(); /// <summary> /// Opens a large object on the backend, returning a stream controlling this remote object. /// A transaction snapshot is taken by the backend when the object is opened with only read permissions. /// When reading from this object, the contents reflects the time when the snapshot was taken. /// Note that this method, as well as operations on the stream must be wrapped inside a transaction. /// </summary> /// <param name="oid">Oid of the object</param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> /// <returns>An NpgsqlLargeObjectStream</returns> public Task<NpgsqlLargeObjectStream> OpenReadAsync(uint oid, CancellationToken cancellationToken = default) { using (NoSynchronizationContextScope.Enter()) return OpenRead(oid, true, cancellationToken); } async Task<NpgsqlLargeObjectStream> OpenRead(uint oid, bool async, CancellationToken cancellationToken = default) { var fd = await ExecuteFunction<int>("lo_open", async, cancellationToken, (int)oid, InvRead); return new NpgsqlLargeObjectStream(this, fd, false); } /// <summary> /// Opens a large object on the backend, returning a stream controlling this remote object. /// Note that this method, as well as operations on the stream must be wrapped inside a transaction. /// </summary> /// <param name="oid">Oid of the object</param> /// <returns>An NpgsqlLargeObjectStream</returns> public NpgsqlLargeObjectStream OpenReadWrite(uint oid) => OpenReadWrite(oid, false).GetAwaiter().GetResult(); /// <summary> /// Opens a large object on the backend, returning a stream controlling this remote object. /// Note that this method, as well as operations on the stream must be wrapped inside a transaction. /// </summary> /// <param name="oid">Oid of the object</param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> /// <returns>An NpgsqlLargeObjectStream</returns> public Task<NpgsqlLargeObjectStream> OpenReadWriteAsync(uint oid, CancellationToken cancellationToken = default) { using (NoSynchronizationContextScope.Enter()) return OpenReadWrite(oid, true, cancellationToken); } async Task<NpgsqlLargeObjectStream> OpenReadWrite(uint oid, bool async, CancellationToken cancellationToken = default) { var fd = await ExecuteFunction<int>("lo_open", async, cancellationToken, (int)oid, InvRead | InvWrite); return new NpgsqlLargeObjectStream(this, fd, true); } /// <summary> /// Deletes a large object on the backend. /// </summary> /// <param name="oid">Oid of the object to delete</param> public void Unlink(uint oid) => ExecuteFunction<object>("lo_unlink", false, CancellationToken.None, (int)oid).GetAwaiter().GetResult(); /// <summary> /// Deletes a large object on the backend. /// </summary> /// <param name="oid">Oid of the object to delete</param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> public Task UnlinkAsync(uint oid, CancellationToken cancellationToken = default) { using (NoSynchronizationContextScope.Enter()) return ExecuteFunction<object>("lo_unlink", true, cancellationToken, (int)oid); } /// <summary> /// Exports a large object stored in the database to a file on the backend. This requires superuser permissions. /// </summary> /// <param name="oid">Oid of the object to export</param> /// <param name="path">Path to write the file on the backend</param> public void ExportRemote(uint oid, string path) => ExecuteFunction<object>("lo_export", false, CancellationToken.None, (int)oid, path).GetAwaiter().GetResult(); /// <summary> /// Exports a large object stored in the database to a file on the backend. This requires superuser permissions. /// </summary> /// <param name="oid">Oid of the object to export</param> /// <param name="path">Path to write the file on the backend</param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> public Task ExportRemoteAsync(uint oid, string path, CancellationToken cancellationToken = default) { using (NoSynchronizationContextScope.Enter()) return ExecuteFunction<object>("lo_export", true, cancellationToken, (int)oid, path); } /// <summary> /// Imports a large object to be stored as a large object in the database from a file stored on the backend. This requires superuser permissions. /// </summary> /// <param name="path">Path to read the file on the backend</param> /// <param name="oid">A preferred oid, or specify 0 if one should be automatically assigned</param> public void ImportRemote(string path, uint oid = 0) => ExecuteFunction<object>("lo_import", false, CancellationToken.None, path, (int)oid).GetAwaiter().GetResult(); /// <summary> /// Imports a large object to be stored as a large object in the database from a file stored on the backend. This requires superuser permissions. /// </summary> /// <param name="path">Path to read the file on the backend</param> /// <param name="oid">A preferred oid, or specify 0 if one should be automatically assigned</param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> public Task ImportRemoteAsync(string path, uint oid, CancellationToken cancellationToken = default) { using (NoSynchronizationContextScope.Enter()) return ExecuteFunction<object>("lo_import", true, cancellationToken, path, (int)oid); } /// <summary> /// Since PostgreSQL 9.3, large objects larger than 2GB can be handled, up to 4TB. /// This property returns true whether the PostgreSQL version is >= 9.3. /// </summary> public bool Has64BitSupport => Connection.PostgreSqlVersion.IsGreaterOrEqual(9, 3); }