/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test-logs
src/Npgsql/Replication/TestDecoding/TestDecodingConnectionExtensions.cs
92 строки
6 KB
Nino Floris
Remove obsolete UTF-8 BOMs (#6542)
13 апр 2026, 17:13
Не верифицирован
13 апр 2026, 17:13
5225216
Код
Авторство
О чём код?
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using NpgsqlTypes; using Npgsql.Replication.Internal; using Npgsql.Replication.TestDecoding; // ReSharper disable once CheckNamespace namespace Npgsql.Replication; /// <summary> /// Extension methods to use <see cref="LogicalReplicationConnection"/> with the /// test_decoding logical decoding plugin. /// See <a href="https://www.postgresql.org/docs/current/test-decoding.html">https://www.postgresql.org/docs/current/test-decoding.html</a>. /// </summary> public static class TestDecodingConnectionExtensions { /// <summary> /// Creates a <see cref="TestDecodingReplicationSlot"/> class that wraps a replication slot using the /// test_decoding logical decoding plugin. /// </summary> /// <remarks> /// See <a href="https://www.postgresql.org/docs/current/test-decoding.html">https://www.postgresql.org/docs/current/test-decoding.html</a> /// for more information. /// </remarks> /// <param name="connection">The <see cref="LogicalReplicationConnection"/> to use for creating the /// replication slot</param> /// <param name="slotName">The name of the slot to create. Must be a valid replication slot name (see /// <a href="https://www.postgresql.org/docs/current/warm-standby.html#STREAMING-REPLICATION-SLOTS-MANIPULATION">https://www.postgresql.org/docs/current/warm-standby.html#STREAMING-REPLICATION-SLOTS-MANIPULATION</a>). /// </param> /// <param name="temporarySlot"> /// <see langword="true"/> if this replication slot shall be temporary one; otherwise <see langword="false"/>. /// Temporary slots are not saved to disk and are automatically dropped on error or when the session has finished. /// </param> /// <param name="slotSnapshotInitMode"> /// A <see cref="LogicalSlotSnapshotInitMode"/> to specify what to do with the snapshot created during logical slot /// initialization. <see cref="LogicalSlotSnapshotInitMode.Export"/>, which is also the default, will export the /// snapshot for use in other sessions. This option can't be used inside a transaction. /// <see cref="LogicalSlotSnapshotInitMode.Use"/> will use the snapshot for the current transaction executing the /// command. This option must be used in a transaction, and <see cref="LogicalSlotSnapshotInitMode.Use"/> must be the /// first command run in that transaction. Finally, <see cref="LogicalSlotSnapshotInitMode.NoExport"/> will just use /// the snapshot for logical decoding as normal but won't do anything else with it. /// </param> /// <param name="twoPhase"> /// If <see langword="true"/>, this logical replication slot supports decoding of two-phase transactions. With this option, /// two-phase commands like PREPARE TRANSACTION, COMMIT PREPARED and ROLLBACK PREPARED are decoded and transmitted. /// The transaction will be decoded and transmitted at PREPARE TRANSACTION time. The default is <see langword="false"/>. /// </param> /// <param name="cancellationToken"> /// An optional token to cancel the asynchronous operation. The default value is <see cref="CancellationToken.None"/>. /// </param> /// <returns> /// A <see cref="TestDecodingReplicationSlot"/> that wraps the newly-created replication slot. /// </returns> public static async Task<TestDecodingReplicationSlot> CreateTestDecodingReplicationSlot( this LogicalReplicationConnection connection, string slotName, bool temporarySlot = false, LogicalSlotSnapshotInitMode? slotSnapshotInitMode = null, bool twoPhase = false, CancellationToken cancellationToken = default) { // We don't enter NoSynchronizationContextScope here since we (have to) do it in CreateReplicationSlotForPlugin, because // otherwise it wouldn't be set for external plugins. var options = await connection.CreateLogicalReplicationSlot( slotName, "test_decoding", temporarySlot, slotSnapshotInitMode, twoPhase, cancellationToken).ConfigureAwait(false); return new TestDecodingReplicationSlot(options); } /// <summary> /// Instructs the server to start streaming the WAL for logical replication using the test_decoding logical decoding plugin, /// starting at WAL location <paramref name="walLocation"/> or at the slot's consistent point if <paramref name="walLocation"/> /// isn't specified. /// The server can reply with an error, for example if the requested section of the WAL has already been recycled. /// </summary> /// <param name="connection">The <see cref="LogicalReplicationConnection"/> to use for starting replication</param> /// <param name="slot">The replication slot that will be updated as replication progresses so that the server /// knows which WAL segments are still needed by the standby. /// </param> /// <param name="cancellationToken">The token to monitor for stopping the replication.</param> /// <param name="options">The collection of options passed to the slot's logical decoding plugin.</param> /// <param name="walLocation">The WAL location to begin streaming at.</param> /// <returns>A <see cref="Task{T}"/> representing an <see cref="IAsyncEnumerable{T}"/> that /// can be used to stream WAL entries in form of <see cref="TestDecodingData"/> instances.</returns> public static IAsyncEnumerable<TestDecodingData> StartReplication( this LogicalReplicationConnection connection, TestDecodingReplicationSlot slot, CancellationToken cancellationToken, TestDecodingOptions? options = default, NpgsqlLogSequenceNumber? walLocation = null) => new TestDecodingAsyncEnumerable(connection, slot, options ?? new TestDecodingOptions(), cancellationToken, walLocation); }