Skip to content

Commit d39233c

Browse files
Merge pull request #200 from nefarius/nefarius/issue/198
Changes GetChangesAsync to indefinitely auto-recover until cancellation is signalled
2 parents 0eeab6d + 84c1e26 commit d39233c

File tree

4 files changed

+50
-34
lines changed

4 files changed

+50
-34
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 3.6.0 (2024-03-11)
2+
3+
## Bugs
4+
5+
* **Change feed**: Fixed automatic resume at last change in continuous feed ([#198](https://github.com/matteobortolazzo/couchdb-net/issues/198))
6+
7+
# 3.5.0 (2024-02-03)
8+
9+
## Features
10+
11+
* **Find**: Added support for fetching attachments with entire content ([#194](https://github.com/matteobortolazzo/couchdb-net/issues/194))
12+
113
# 3.4.0 (2023-06-21)
214

315
## Features
@@ -16,7 +28,7 @@
1628

1729
## Bug Fixes
1830

19-
* **Dependency Injection**: Fix dependency injection packages references ([#180](https://github.com/matteobortolazzo/couchdb-net/pull/180))
31+
* **Dependency Injection**: Fix dependency injection packages references ([#180](https://github.com/matteobortolazzo/couchdb-net/pull/180))
2032

2133
# 3.3.0 (2022-10-20)
2234

LATEST_CHANGE.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
# 3.4.0 (2023-06-21)
2-
3-
## Features
4-
5-
* **Database split**: Configurable field for document discrimination ([#150](https://github.com/matteobortolazzo/couchdb-net/issues/150))
6-
* **Find**: Added all options and responses ([#182](https://github.com/matteobortolazzo/couchdb-net/issues/182))
7-
* **Change feed**: Adds support for database split ([#187](https://github.com/matteobortolazzo/couchdb-net/issues/187))
8-
* **Replicas**: Adds `CreateTarget` option ([#189](https://github.com/matteobortolazzo/couchdb-net/issues/189))
1+
# 3.6.0 (2024-03-11)
92

103
## Bugs
114

12-
* **Queries**: Fix when `In` is called inside `Any` ([#183](https://github.com/matteobortolazzo/couchdb-net/issues/183))
13-
* **Database split**: Fix `FirstOrDefault` without filter queries ([#185](https://github.com/matteobortolazzo/couchdb-net/issues/185))
5+
* **Change feed**: Fixed automatic resume at last change in continuous feed ([#198](https://github.com/matteobortolazzo/couchdb-net/issues/198))

src/CouchDB.Driver/CouchDatabase.cs

+34-22
Original file line numberDiff line numberDiff line change
@@ -459,33 +459,45 @@ public async IAsyncEnumerable<ChangesFeedResponseResult<TSource>> GetContinuousC
459459
request = request.ApplyQueryParametersOptions(options);
460460
}
461461

462-
await using Stream stream = filter == null
463-
? await request.GetStreamAsync(cancellationToken, HttpCompletionOption.ResponseHeadersRead)
464-
.ConfigureAwait(false)
465-
: await request.QueryContinuousWithFilterAsync<TSource>(_queryProvider, filter, cancellationToken)
466-
.ConfigureAwait(false);
467-
468-
await foreach (var line in stream.ReadLinesAsync(cancellationToken))
462+
do
469463
{
470-
if (string.IsNullOrEmpty(line))
471-
{
472-
continue;
473-
}
474-
475-
MatchCollection matches = _feedChangeLineStartPattern.Matches(line);
476-
for (var i = 0; i < matches.Count; i++)
464+
await using Stream stream = filter == null
465+
? await request.GetStreamAsync(cancellationToken, HttpCompletionOption.ResponseHeadersRead)
466+
.ConfigureAwait(false)
467+
: await request.QueryContinuousWithFilterAsync<TSource>(_queryProvider, filter, cancellationToken)
468+
.ConfigureAwait(false);
469+
470+
var lastSequence = options?.Since ?? "0";
471+
472+
await foreach (var line in stream.ReadLinesAsync(cancellationToken))
477473
{
478-
var startIndex = matches[i].Index;
479-
var endIndex = i < matches.Count - 1 ? matches[i + 1].Index : line.Length;
480-
var lineLength = endIndex - startIndex;
481-
var substring = line.Substring(startIndex, lineLength);
482-
ChangesFeedResponseResult<TSource>? result = JsonConvert.DeserializeObject<ChangesFeedResponseResult<TSource>>(substring);
483-
if (string.IsNullOrWhiteSpace(_discriminator) || result.Document.SplitDiscriminator == _discriminator)
474+
if (string.IsNullOrEmpty(line))
475+
{
476+
continue;
477+
}
478+
479+
MatchCollection matches = _feedChangeLineStartPattern.Matches(line);
480+
for (var i = 0; i < matches.Count; i++)
484481
{
485-
yield return result;
482+
var startIndex = matches[i].Index;
483+
var endIndex = i < matches.Count - 1 ? matches[i + 1].Index : line.Length;
484+
var lineLength = endIndex - startIndex;
485+
var substring = line.Substring(startIndex, lineLength);
486+
ChangesFeedResponseResult<TSource>? result =
487+
JsonConvert.DeserializeObject<ChangesFeedResponseResult<TSource>>(substring);
488+
if (string.IsNullOrWhiteSpace(_discriminator) ||
489+
result.Document.SplitDiscriminator == _discriminator)
490+
{
491+
lastSequence = result.Seq;
492+
yield return result;
493+
}
486494
}
487495
}
488-
}
496+
497+
// stream broke, pick up listening after last successful processed sequence
498+
request = request.SetQueryParam("since", lastSequence);
499+
500+
} while (!cancellationToken.IsCancellationRequested);
489501
}
490502

491503
#endregion

src/azure-pipelines.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variables:
22
BuildConfiguration: Release
3-
PackageVersion: '3.5.0'
3+
PackageVersion: '3.6.0'
44

55
trigger:
66
branches:

0 commit comments

Comments
 (0)