pg_eventstore 1.10.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/docs/reading_events.md +98 -0
- data/lib/pg_eventstore/client.rb +22 -4
- data/lib/pg_eventstore/commands/all_stream_read_grouped.rb +69 -0
- data/lib/pg_eventstore/commands/regular_stream_read_grouped.rb +31 -0
- data/lib/pg_eventstore/commands.rb +2 -0
- data/lib/pg_eventstore/errors.rb +10 -0
- data/lib/pg_eventstore/partition.rb +23 -0
- data/lib/pg_eventstore/queries/event_queries.rb +18 -0
- data/lib/pg_eventstore/queries/partition_queries.rb +21 -0
- data/lib/pg_eventstore/queries.rb +2 -0
- data/lib/pg_eventstore/query_builders/basic_filtering.rb +27 -0
- data/lib/pg_eventstore/query_builders/events_filtering.rb +47 -31
- data/lib/pg_eventstore/query_builders/partitions_filtering.rb +83 -0
- data/lib/pg_eventstore/sql_builder.rb +10 -0
- data/lib/pg_eventstore/subscriptions/callback_handlers/events_processor_handlers.rb +2 -2
- data/lib/pg_eventstore/subscriptions/callback_handlers/subscription_runner_handlers.rb +3 -3
- data/lib/pg_eventstore/subscriptions/queries/subscription_queries.rb +1 -9
- data/lib/pg_eventstore/utils.rb +27 -8
- data/lib/pg_eventstore/version.rb +1 -1
- data/lib/pg_eventstore/web/application.rb +39 -10
- data/lib/pg_eventstore/web/paginator/helpers.rb +11 -3
- data/lib/pg_eventstore/web/public/javascripts/pg_eventstore.js +41 -4
- data/lib/pg_eventstore/web/public/stylesheets/pg_eventstore.css +12 -0
- data/lib/pg_eventstore/web/views/home/partials/event_filter.erb +5 -1
- data/lib/pg_eventstore/web/views/home/partials/events.erb +5 -5
- data/lib/pg_eventstore/web/views/home/partials/stream_filter.erb +15 -3
- data/lib/pg_eventstore/web/views/subscriptions/index.erb +2 -2
- data/lib/pg_eventstore.rb +1 -0
- data/sig/pg_eventstore/client.rbs +2 -0
- data/sig/pg_eventstore/commands/all_stream_read_grouped.rbs +16 -0
- data/sig/pg_eventstore/commands/regular_stream_read_grouped.rbs +8 -0
- data/sig/pg_eventstore/errors.rbs +8 -0
- data/sig/pg_eventstore/partition.rbs +15 -0
- data/sig/pg_eventstore/queries/event_queries.rbs +2 -0
- data/sig/pg_eventstore/queries/partition_queries.rbs +6 -0
- data/sig/pg_eventstore/query_builders/basic_filtering.rbs +15 -0
- data/sig/pg_eventstore/query_builders/events_filtering_query.rbs +17 -17
- data/sig/pg_eventstore/query_builders/partitions_filtering.rbs +21 -0
- data/sig/pg_eventstore/sql_builder.rbs +1 -1
- data/sig/pg_eventstore/subscriptions/callback_handlers/subscription_runner_handlers.rbs +2 -2
- data/sig/pg_eventstore/utils.rbs +4 -0
- data/sig/pg_eventstore/web/application.rbs +6 -0
- data/sig/pg_eventstore/web/paginator/helpers.rbs +2 -0
- metadata +13 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0de14f58d080bcab32005e045530ca7888761e5415d013dbb262746a02806ba
|
4
|
+
data.tar.gz: fee7b7335212796361b5ded87497c7d744ed5ddfd011a47d54cc2b545991b227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dbdd04e5778b292177062e5a44ed9ee4c2fc03e98da945a73523036f62ed09cc27ac00d1a5853e99975b82fc798f2f83639bbb2cd4f1745150ff121ca5d7056
|
7
|
+
data.tar.gz: 060f8b1b51cda7be2c472f914dc611fee2db052a2cd773676013b2175e58cf12c3895e8b631a0d79443804f3a733ca25d7012fac6519551308c890df065457d5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.12.0]
|
4
|
+
|
5
|
+
- Introduce `#read_grouped` API method that allows to group events by type
|
6
|
+
|
7
|
+
## [1.11.0]
|
8
|
+
|
9
|
+
- Add a global position that caused an error to the subscription's error JSON info. This will help you understand what event caused your subscription to fail.
|
10
|
+
- Improve long payloads in JSON preview in admin web UI in the way it does not moves content out of the visible area.
|
11
|
+
- Admin UI: adjust events filtering and displaying of stream context, stream name, stream id and event type when values of them contain empty strings or non-displayable characters
|
12
|
+
|
3
13
|
## [1.10.0]
|
4
14
|
- Admin UI: Adjust `SubscriptionSet` "Stop"/"Delete" buttons appearance. Now if `SubscriptionsSet` is not alive anymore(the related process is dead or does not exist anymore) - "Delete" button is shown. If `SubscriptionSet` is alive - "Stop" button is shown
|
5
15
|
- Admin IU: fixed several potential XSS vulnerabilities
|
data/docs/reading_events.md
CHANGED
@@ -230,3 +230,101 @@ PgEventstore.client.read_paginated(projection_stream, options: { resolve_link_to
|
|
230
230
|
end
|
231
231
|
end
|
232
232
|
```
|
233
|
+
|
234
|
+
## Grouping events by type
|
235
|
+
|
236
|
+
`pg_eventstore` implements an ability to group events by type when reading from a stream. Example:
|
237
|
+
|
238
|
+
```ruby
|
239
|
+
stream = PgEventstore::Stream.new(context: 'FooCtx', stream_name: 'Foo', stream_id: '1')
|
240
|
+
event1 = PgEventstore::Event.new(type: 'Foo', data: { foo: 1 })
|
241
|
+
event2 = PgEventstore::Event.new(type: 'Foo', data: { foo: 2 })
|
242
|
+
event3 = PgEventstore::Event.new(type: 'Bar', data: { bar: 2 })
|
243
|
+
|
244
|
+
PgEventstore.client.append_to_stream(stream, [event1, event2, event3])
|
245
|
+
|
246
|
+
PgEventstore.client.read_grouped(stream) # => returns event1 and event3
|
247
|
+
```
|
248
|
+
|
249
|
+
API is very similar to the API of `#read`, but it ignores `:max_count` options as the result is always returns a set of event types in your stream.
|
250
|
+
|
251
|
+
Reading most recent events:
|
252
|
+
|
253
|
+
```ruby
|
254
|
+
PgEventstore.client.read_grouped(stream, options: { direction: :desc })
|
255
|
+
```
|
256
|
+
|
257
|
+
Filtering the result by stream attributes:
|
258
|
+
|
259
|
+
```ruby
|
260
|
+
PgEventstore.client.read_grouped(
|
261
|
+
PgEventstore::Stream.all_stream,
|
262
|
+
options: { filter: { streams: [{ context: 'FooCtx' }] } }
|
263
|
+
)
|
264
|
+
```
|
265
|
+
|
266
|
+
Filtering the result by event types:
|
267
|
+
|
268
|
+
```ruby
|
269
|
+
PgEventstore.client.read_grouped(
|
270
|
+
PgEventstore::Stream.all_stream,
|
271
|
+
options: { filter: { event_types: ['Foo', 'Bar'] } }
|
272
|
+
)
|
273
|
+
```
|
274
|
+
|
275
|
+
Filtering by stream attributes and event types:
|
276
|
+
|
277
|
+
```ruby
|
278
|
+
PgEventstore.client.read_grouped(
|
279
|
+
PgEventstore::Stream.all_stream,
|
280
|
+
options: { filter: { streams: [{ context: 'FooCtx' }], event_types: ['Foo', 'Bar'] } }
|
281
|
+
)
|
282
|
+
```
|
283
|
+
|
284
|
+
Reading most recent events until the certain stream revision:
|
285
|
+
|
286
|
+
```ruby
|
287
|
+
PgEventstore.client.read_grouped(stream, options: { direction: :desc, from_revision: 1 })
|
288
|
+
```
|
289
|
+
|
290
|
+
Reading the oldest events from the certain stream revision:
|
291
|
+
|
292
|
+
```ruby
|
293
|
+
PgEventstore.client.read_grouped(stream, options: { direction: :asc, from_revision: 1 })
|
294
|
+
```
|
295
|
+
|
296
|
+
Reading most recent events until the certain global position:
|
297
|
+
|
298
|
+
```ruby
|
299
|
+
PgEventstore.client.read_grouped(PgEventstore::Stream.all_stream, options: { direction: :desc, from_position: 5 })
|
300
|
+
```
|
301
|
+
|
302
|
+
Reading the oldest events from the certain global position:
|
303
|
+
|
304
|
+
```ruby
|
305
|
+
PgEventstore.client.read_grouped(PgEventstore::Stream.all_stream, options: { direction: :asc, from_position: 5 })
|
306
|
+
```
|
307
|
+
|
308
|
+
### Event types list lookup
|
309
|
+
|
310
|
+
If you do not provide event types filter - event types list will be determined based on the rest of arguments(a stream argument or a stream filters option).
|
311
|
+
|
312
|
+
### Multiple events of same type in the result
|
313
|
+
|
314
|
+
If same event type appear in different streams(different by `#context` and `#stream_name`) - those events will appear in the result. This is because even though `Event#type` value may be the same - its meaning may have different meaning in different `context`/`stream_name` couple. Example:
|
315
|
+
|
316
|
+
```ruby
|
317
|
+
stream1 = PgEventstore::Stream.new(context: 'FooCtx', stream_name: 'Foo', stream_id: '1')
|
318
|
+
stream2 = PgEventstore::Stream.new(context: 'FooCtx', stream_name: 'Bar', stream_id: '1')
|
319
|
+
|
320
|
+
event1 = PgEventstore::Event.new(type: 'Foo', data: { foo: 1 })
|
321
|
+
event2 = PgEventstore::Event.new(type: 'Foo', data: { foo: 2 })
|
322
|
+
|
323
|
+
PgEventstore.client.append_to_stream(stream1, event1)
|
324
|
+
PgEventstore.client.append_to_stream(stream2, event2)
|
325
|
+
|
326
|
+
PgEventstore.client.read_grouped(
|
327
|
+
PgEventstore::Stream.all_stream,
|
328
|
+
options: { filter: { streams: [{ context: 'FooCtx' }] } }
|
329
|
+
) # => returns both events even though they are of "Foo" type
|
330
|
+
```
|
data/lib/pg_eventstore/client.rb
CHANGED
@@ -55,10 +55,11 @@ module PgEventstore
|
|
55
55
|
# Read events from the specific stream or from "all" stream.
|
56
56
|
# @param stream [PgEventstore::Stream]
|
57
57
|
# @param options [Hash] request options
|
58
|
-
# @option options [String] :direction read direction
|
58
|
+
# @option options [String] :direction read direction. Allowed values are "Forwards", "Backwards", "asc", "desc",
|
59
|
+
# :asc, :desc
|
59
60
|
# @option options [Integer] :from_revision a starting revision number. **Use this option when stream name is a
|
60
61
|
# normal stream name**
|
61
|
-
# @option options [Integer
|
62
|
+
# @option options [Integer] :from_position a starting global position number. **Use this option when reading
|
62
63
|
# from "all" stream**
|
63
64
|
# @option options [Integer] :max_count max number of events to return in one response. Defaults to config.max_count
|
64
65
|
# @option options [Boolean] :resolve_link_tos When using projections to create new events you
|
@@ -94,7 +95,7 @@ module PgEventstore
|
|
94
95
|
# }
|
95
96
|
# )
|
96
97
|
#
|
97
|
-
# # Filtering
|
98
|
+
# # Filtering a mix of context and event type
|
98
99
|
# PgEventstore.client.read(
|
99
100
|
# PgEventstore::Stream.all_stream,
|
100
101
|
# options: { filter: { streams: [{ context: 'User' }], event_types: ['MyAwesomeEvent'] } }
|
@@ -123,6 +124,23 @@ module PgEventstore
|
|
123
124
|
call(stream, options: { max_count: config.max_count }.merge(options))
|
124
125
|
end
|
125
126
|
|
127
|
+
# Takes a stream, determines a list of even types in it and returns most recent(or very first - depending on
|
128
|
+
# :direction option) events, one of each type. If :event_types filter is provided - uses it instead of automatic
|
129
|
+
# event types lookup logic. The result size is almost always less than or equal to event types list size, so passing
|
130
|
+
# :max_count option does not make any effect. In case if event of same type appears in different context/stream
|
131
|
+
# name - it will be counted as a different event, thus, may appear several times in the result.
|
132
|
+
# @see {#read} for the detailed docs
|
133
|
+
# @param stream [PgEventstore::Stream]
|
134
|
+
# @param options [Hash] request options
|
135
|
+
# @param middlewares [Array, nil]
|
136
|
+
# @return [Array<PgEventstore::Event>]
|
137
|
+
def read_grouped(stream, options: {}, middlewares: nil)
|
138
|
+
cmd_class = stream.all_stream? ? Commands::AllStreamReadGrouped : Commands::RegularStreamReadGrouped
|
139
|
+
cmd_class.
|
140
|
+
new(Queries.new(partitions: partition_queries, events: event_queries(middlewares(middlewares)))).
|
141
|
+
call(stream, options: options)
|
142
|
+
end
|
143
|
+
|
126
144
|
# Links event from one stream into another stream. You can later access it by providing :resolve_link_tos option
|
127
145
|
# when reading from a stream. Only existing events can be linked.
|
128
146
|
# @param stream [PgEventstore::Stream]
|
@@ -149,7 +167,7 @@ module PgEventstore
|
|
149
167
|
private
|
150
168
|
|
151
169
|
# @param middlewares [Array, nil]
|
152
|
-
# @return [Array<
|
170
|
+
# @return [Array<PgEventstore::Middleware>]
|
153
171
|
def middlewares(middlewares = nil)
|
154
172
|
return config.middlewares.values unless middlewares
|
155
173
|
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PgEventstore
|
4
|
+
module Commands
|
5
|
+
# @!visibility private
|
6
|
+
class AllStreamReadGrouped < AbstractCommand
|
7
|
+
# @param stream [PgEventstore::Stream]
|
8
|
+
# @param options [Hash] request options
|
9
|
+
# @option options [String] :direction read direction
|
10
|
+
# @option options [Integer, Symbol] :from_position. **Use this option when reading from "all" stream**
|
11
|
+
# @option options [Boolean] :resolve_link_tos
|
12
|
+
# @option options [Hash] :filter provide it to filter events
|
13
|
+
# @return [Array<PgEventstore::Event>]
|
14
|
+
# @raise [PgEventstore::StreamNotFoundError]
|
15
|
+
def call(stream, options: {})
|
16
|
+
event_types = QueryBuilders::PartitionsFiltering.extract_event_types_filter(options)
|
17
|
+
stream_filters = QueryBuilders::PartitionsFiltering.extract_streams_filter(options)
|
18
|
+
stream_ids_grouped = group_stream_ids(options)
|
19
|
+
options_by_event_type =
|
20
|
+
queries.partitions.partitions(stream_filters, event_types).flat_map do |partition|
|
21
|
+
stream_ids = stream_ids_grouped[[partition.context, partition.stream_name]]
|
22
|
+
next build_filter_options_for_streams(partition, stream_ids, options) if stream_ids
|
23
|
+
|
24
|
+
build_filter_options_for_partitions(partition, options)
|
25
|
+
end
|
26
|
+
queries.events.grouped_events(stream, options_by_event_type, **options.slice(:resolve_link_tos))
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
# @param options [Hash]
|
32
|
+
# @return [Hash]
|
33
|
+
def group_stream_ids(options)
|
34
|
+
event_stream_filters = QueryBuilders::EventsFiltering.extract_streams_filter(options)
|
35
|
+
event_stream_filters.each_with_object({}) do |attrs, res|
|
36
|
+
next unless attrs[:stream_id]
|
37
|
+
|
38
|
+
res[[attrs[:context], attrs[:stream_name]]] ||= []
|
39
|
+
res[[attrs[:context], attrs[:stream_name]]].push(attrs[:stream_id])
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# @param partition [PgEventstore::Partition]
|
44
|
+
# @param stream_ids [Array<String>]
|
45
|
+
# @param options [Hash]
|
46
|
+
# @return [Array<Hash>]
|
47
|
+
def build_filter_options_for_streams(partition, stream_ids, options)
|
48
|
+
stream_ids.map do |stream_id|
|
49
|
+
filter = {
|
50
|
+
streams: [{ context: partition.context, stream_name: partition.stream_name, stream_id: stream_id }],
|
51
|
+
event_types: [partition.event_type]
|
52
|
+
}
|
53
|
+
options.merge(filter: filter, max_count: 1)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
# @param partition [PgEventstore::Partition]
|
58
|
+
# @param options [Hash]
|
59
|
+
# @return [Hash]
|
60
|
+
def build_filter_options_for_partitions(partition, options)
|
61
|
+
filter = {
|
62
|
+
streams: [{ context: partition.context, stream_name: partition.stream_name }],
|
63
|
+
event_types: [partition.event_type]
|
64
|
+
}
|
65
|
+
options.merge(filter: filter, max_count: 1)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PgEventstore
|
4
|
+
module Commands
|
5
|
+
# @!visibility private
|
6
|
+
class RegularStreamReadGrouped < AbstractCommand
|
7
|
+
# @param stream [PgEventstore::Stream]
|
8
|
+
# @param options [Hash] request options
|
9
|
+
# @option options [String] :direction read direction
|
10
|
+
# @option options [Integer, Symbol] :from_revision. **Use this option when stream name is a normal stream name**
|
11
|
+
# @option options [Integer, Symbol] :from_position. **Use this option when reading from "all" stream**
|
12
|
+
# @option options [Boolean] :resolve_link_tos
|
13
|
+
# @option options [Hash] :filter provide it to filter events
|
14
|
+
# @return [Array<PgEventstore::Event>]
|
15
|
+
# @raise [PgEventstore::StreamNotFoundError]
|
16
|
+
def call(stream, options: {})
|
17
|
+
queries.events.stream_revision(stream) || raise(StreamNotFoundError, stream)
|
18
|
+
|
19
|
+
event_types = QueryBuilders::PartitionsFiltering.extract_event_types_filter(options)
|
20
|
+
stream_filters = QueryBuilders::PartitionsFiltering.extract_streams_filter(
|
21
|
+
filter: { streams: [{ context: stream.context, stream_name: stream.stream_name }] }
|
22
|
+
)
|
23
|
+
options_by_event_type = queries.partitions.partitions(stream_filters, event_types).map do |partition|
|
24
|
+
filter = { event_types: [partition.event_type] }
|
25
|
+
options.merge(filter: filter, max_count: 1)
|
26
|
+
end
|
27
|
+
queries.events.grouped_events(stream, options_by_event_type, **options.slice(:resolve_link_tos))
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -5,6 +5,8 @@ require_relative 'commands/event_modifiers/prepare_link_event'
|
|
5
5
|
require_relative 'commands/event_modifiers/prepare_regular_event'
|
6
6
|
require_relative 'commands/append'
|
7
7
|
require_relative 'commands/read'
|
8
|
+
require_relative 'commands/regular_stream_read_grouped'
|
9
|
+
require_relative 'commands/all_stream_read_grouped'
|
8
10
|
require_relative 'commands/regular_stream_read_paginated'
|
9
11
|
require_relative 'commands/system_stream_read_paginated'
|
10
12
|
require_relative 'commands/multiple'
|
data/lib/pg_eventstore/errors.rb
CHANGED
@@ -243,4 +243,14 @@ module PgEventstore
|
|
243
243
|
"Too many records of #{stream.to_hash.inspect} stream to lock: #{number_of_records}"
|
244
244
|
end
|
245
245
|
end
|
246
|
+
|
247
|
+
class WrappedException < Error
|
248
|
+
attr_reader :original_exception
|
249
|
+
attr_reader :extra
|
250
|
+
|
251
|
+
def initialize(original_exception, extra)
|
252
|
+
@original_exception = original_exception
|
253
|
+
@extra = extra
|
254
|
+
end
|
255
|
+
end
|
246
256
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PgEventstore
|
4
|
+
class Partition
|
5
|
+
include Extensions::OptionsExtension
|
6
|
+
|
7
|
+
# @!attribute id
|
8
|
+
# @return [Integer]
|
9
|
+
option(:id)
|
10
|
+
# @!attribute context
|
11
|
+
# @return [String]
|
12
|
+
option(:context)
|
13
|
+
# @!attribute stream_name
|
14
|
+
# @return [String, nil]
|
15
|
+
option(:stream_name)
|
16
|
+
# @!attribute event_type
|
17
|
+
# @return [String, nil]
|
18
|
+
option(:event_type)
|
19
|
+
# @!attribute table_name
|
20
|
+
# @return [String]
|
21
|
+
option(:table_name)
|
22
|
+
end
|
23
|
+
end
|
@@ -98,6 +98,24 @@ module PgEventstore
|
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
+
# @param stream [PgEventstore::Stream]
|
102
|
+
# @param options_by_event_type [Array<Hash>] a set of options per an event type
|
103
|
+
# @param options [Hash]
|
104
|
+
# @option options [Boolean] :resolve_link_tos
|
105
|
+
# @return [Array<PgEventstore::Event>]
|
106
|
+
def grouped_events(stream, options_by_event_type, **options)
|
107
|
+
builders = options_by_event_type.map do |filter|
|
108
|
+
QueryBuilders::EventsFiltering.events_filtering(stream, filter)
|
109
|
+
end
|
110
|
+
final_builder = SQLBuilder.union_builders(builders.map(&:to_sql_builder))
|
111
|
+
|
112
|
+
raw_events = connection.with do |conn|
|
113
|
+
conn.exec_params(*final_builder.to_exec_params)
|
114
|
+
end.to_a
|
115
|
+
raw_events = links_resolver.resolve(raw_events) if options[:resolve_link_tos]
|
116
|
+
deserializer.deserialize_many(raw_events)
|
117
|
+
end
|
118
|
+
|
101
119
|
private
|
102
120
|
|
103
121
|
# @param stream [PgEventstore::Stream]
|
@@ -176,6 +176,19 @@ module PgEventstore
|
|
176
176
|
end.to_a
|
177
177
|
end
|
178
178
|
|
179
|
+
# @param stream_filters [Array<Hash[Symbol, String]>]
|
180
|
+
# @param event_filters [Array<String>]
|
181
|
+
# @return [Array<PgEventstore::Partition>]
|
182
|
+
def partitions(stream_filters, event_filters)
|
183
|
+
partitions_filter = QueryBuilders::PartitionsFiltering.new
|
184
|
+
stream_filters.each { |attrs| partitions_filter.add_stream_attrs(**attrs) }
|
185
|
+
partitions_filter.add_event_types(event_filters)
|
186
|
+
partitions_filter.with_event_types
|
187
|
+
connection.with do |conn|
|
188
|
+
conn.exec_params(*partitions_filter.to_exec_params)
|
189
|
+
end.map(&method(:deserialize))
|
190
|
+
end
|
191
|
+
|
179
192
|
# @param stream [PgEventstore::Stream]
|
180
193
|
# @return [String]
|
181
194
|
def context_partition_name(stream)
|
@@ -194,5 +207,13 @@ module PgEventstore
|
|
194
207
|
def event_type_partition_name(stream, event_type)
|
195
208
|
"event_types_#{Digest::MD5.hexdigest("#{stream.context}-#{stream.stream_name}-#{event_type}")[0..5]}"
|
196
209
|
end
|
210
|
+
|
211
|
+
private
|
212
|
+
|
213
|
+
# @param attrs [Hash]
|
214
|
+
# @return [PgEventstore::Partition]
|
215
|
+
def deserialize(attrs)
|
216
|
+
Partition.new(**attrs.transform_keys(&:to_sym))
|
217
|
+
end
|
197
218
|
end
|
198
219
|
end
|
@@ -1,7 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative 'sql_builder'
|
4
|
+
require_relative 'query_builders/basic_filtering'
|
4
5
|
require_relative 'query_builders/events_filtering'
|
6
|
+
require_relative 'query_builders/partitions_filtering'
|
5
7
|
require_relative 'queries/transaction_queries'
|
6
8
|
require_relative 'queries/event_queries'
|
7
9
|
require_relative 'queries/partition_queries'
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PgEventstore
|
4
|
+
module QueryBuilders
|
5
|
+
# @!visibility private
|
6
|
+
class BasicFiltering
|
7
|
+
def initialize
|
8
|
+
@sql_builder = SQLBuilder.new.select("#{to_table_name}.*").from(to_table_name)
|
9
|
+
end
|
10
|
+
|
11
|
+
# @return [String]
|
12
|
+
def to_table_name
|
13
|
+
raise NotImplementedError
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [PgEventstore::SQLBuilder]
|
17
|
+
def to_sql_builder
|
18
|
+
@sql_builder
|
19
|
+
end
|
20
|
+
|
21
|
+
# @return [Array]
|
22
|
+
def to_exec_params
|
23
|
+
@sql_builder.to_exec_params
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -3,7 +3,11 @@
|
|
3
3
|
module PgEventstore
|
4
4
|
module QueryBuilders
|
5
5
|
# @!visibility private
|
6
|
-
class EventsFiltering
|
6
|
+
class EventsFiltering < BasicFiltering
|
7
|
+
# @return [String]
|
8
|
+
TABLE_NAME = 'events'
|
9
|
+
private_constant :TABLE_NAME
|
10
|
+
|
7
11
|
# @return [Integer]
|
8
12
|
DEFAULT_LIMIT = 1_000
|
9
13
|
# @return [Hash<String => String, Symbol => String>]
|
@@ -26,6 +30,7 @@ module PgEventstore
|
|
26
30
|
# @return [PgEventstore::EventsFiltering]
|
27
31
|
def events_filtering(stream, options)
|
28
32
|
return all_stream_filtering(options) if stream.all_stream?
|
33
|
+
|
29
34
|
if stream.system? && Stream::KNOWN_SYSTEM_STREAMS.include?(stream.context)
|
30
35
|
return system_stream_filtering(stream, options)
|
31
36
|
end
|
@@ -43,11 +48,9 @@ module PgEventstore
|
|
43
48
|
# @return [PgEventstore::QueryBuilders::EventsFiltering]
|
44
49
|
def all_stream_filtering(options)
|
45
50
|
event_filter = new
|
46
|
-
options
|
47
|
-
event_filter.add_event_types(event_types)
|
51
|
+
event_filter.add_event_types(extract_event_types_filter(options))
|
48
52
|
event_filter.add_limit(options[:max_count])
|
49
|
-
options
|
50
|
-
streams&.each { |attrs| event_filter.add_stream_attrs(**attrs) }
|
53
|
+
extract_streams_filter(options).each { |attrs| event_filter.add_stream_attrs(**attrs) }
|
51
54
|
event_filter.add_global_position(options[:from_position], options[:direction])
|
52
55
|
event_filter.add_all_stream_direction(options[:direction])
|
53
56
|
event_filter
|
@@ -58,8 +61,7 @@ module PgEventstore
|
|
58
61
|
# @return [PgEventstore::QueryBuilders::EventsFiltering]
|
59
62
|
def specific_stream_filtering(stream, options)
|
60
63
|
event_filter = new
|
61
|
-
options
|
62
|
-
event_filter.add_event_types(event_types)
|
64
|
+
event_filter.add_event_types(extract_event_types_filter(options))
|
63
65
|
event_filter.add_limit(options[:max_count])
|
64
66
|
event_filter.add_stream_attrs(**stream.to_hash)
|
65
67
|
event_filter.add_revision(options[:from_revision], options[:direction])
|
@@ -75,14 +77,39 @@ module PgEventstore
|
|
75
77
|
event_filter.set_source(stream.context)
|
76
78
|
end
|
77
79
|
end
|
80
|
+
|
81
|
+
# @param options [Hash]
|
82
|
+
# @return [Array<String>]
|
83
|
+
def extract_event_types_filter(options)
|
84
|
+
options in { filter: { event_types: Array => event_types } }
|
85
|
+
event_types&.select! do
|
86
|
+
_1.is_a?(String)
|
87
|
+
end
|
88
|
+
event_types || []
|
89
|
+
end
|
90
|
+
|
91
|
+
# @param options [Hash]
|
92
|
+
# @return [Array<Hash[Symbol, String]>]
|
93
|
+
def extract_streams_filter(options)
|
94
|
+
options in { filter: { streams: Array => streams } }
|
95
|
+
streams = streams&.map do
|
96
|
+
_1 in { context: String | NilClass => context }
|
97
|
+
_1 in { stream_name: String | NilClass => stream_name }
|
98
|
+
_1 in { stream_id: String | NilClass => stream_id }
|
99
|
+
{ context: context, stream_name: stream_name, stream_id: stream_id }
|
100
|
+
end
|
101
|
+
streams || []
|
102
|
+
end
|
78
103
|
end
|
79
104
|
|
80
105
|
def initialize
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
106
|
+
super
|
107
|
+
@sql_builder.limit(DEFAULT_LIMIT)
|
108
|
+
end
|
109
|
+
|
110
|
+
# @return [String]
|
111
|
+
def to_table_name
|
112
|
+
TABLE_NAME
|
86
113
|
end
|
87
114
|
|
88
115
|
# @param context [String, nil]
|
@@ -95,21 +122,20 @@ module PgEventstore
|
|
95
122
|
|
96
123
|
stream_attrs.compact!
|
97
124
|
sql = stream_attrs.map do |attr, _|
|
98
|
-
"
|
125
|
+
"#{to_table_name}.#{attr} = ?"
|
99
126
|
end.join(" AND ")
|
100
127
|
@sql_builder.where_or(sql, *stream_attrs.values)
|
101
128
|
end
|
102
129
|
|
103
|
-
# @param event_types [Array<String
|
130
|
+
# @param event_types [Array<String>]
|
104
131
|
# @return [void]
|
105
132
|
def add_event_types(event_types)
|
106
|
-
return if event_types.nil?
|
107
133
|
return if event_types.empty?
|
108
134
|
|
109
135
|
sql = event_types.size.times.map do
|
110
136
|
"?"
|
111
137
|
end.join(", ")
|
112
|
-
@sql_builder.where("
|
138
|
+
@sql_builder.where("#{to_table_name}.type IN (#{sql})", *event_types)
|
113
139
|
end
|
114
140
|
|
115
141
|
# @param revision [Integer, nil]
|
@@ -118,7 +144,7 @@ module PgEventstore
|
|
118
144
|
def add_revision(revision, direction)
|
119
145
|
return unless revision
|
120
146
|
|
121
|
-
@sql_builder.where("
|
147
|
+
@sql_builder.where("#{to_table_name}.stream_revision #{direction_operator(direction)} ?", revision)
|
122
148
|
end
|
123
149
|
|
124
150
|
# @param position [Integer, nil]
|
@@ -127,19 +153,19 @@ module PgEventstore
|
|
127
153
|
def add_global_position(position, direction)
|
128
154
|
return unless position
|
129
155
|
|
130
|
-
@sql_builder.where("
|
156
|
+
@sql_builder.where("#{to_table_name}.global_position #{direction_operator(direction)} ?", position)
|
131
157
|
end
|
132
158
|
|
133
159
|
# @param direction [String, Symbol, nil]
|
134
160
|
# @return [void]
|
135
161
|
def add_stream_direction(direction)
|
136
|
-
@sql_builder.order("
|
162
|
+
@sql_builder.order("#{to_table_name}.stream_revision #{SQL_DIRECTIONS[direction]}")
|
137
163
|
end
|
138
164
|
|
139
165
|
# @param direction [String, Symbol, nil]
|
140
166
|
# @return [void]
|
141
167
|
def add_all_stream_direction(direction)
|
142
|
-
@sql_builder.order("
|
168
|
+
@sql_builder.order("#{to_table_name}.global_position #{SQL_DIRECTIONS[direction]}")
|
143
169
|
end
|
144
170
|
|
145
171
|
# @param limit [Integer, nil]
|
@@ -150,20 +176,10 @@ module PgEventstore
|
|
150
176
|
@sql_builder.limit(limit)
|
151
177
|
end
|
152
178
|
|
153
|
-
# @return [PgEventstore::SQLBuilder]
|
154
|
-
def to_sql_builder
|
155
|
-
@sql_builder
|
156
|
-
end
|
157
|
-
|
158
|
-
# @return [Array]
|
159
|
-
def to_exec_params
|
160
|
-
@sql_builder.to_exec_params
|
161
|
-
end
|
162
|
-
|
163
179
|
# @param table_name [String] system stream view name
|
164
180
|
# @return [void]
|
165
181
|
def set_source(table_name)
|
166
|
-
@sql_builder.from(%{ "#{PG::Connection.escape(table_name)}"
|
182
|
+
@sql_builder.from(%{ "#{PG::Connection.escape(table_name)}" #{to_table_name} })
|
167
183
|
end
|
168
184
|
|
169
185
|
private
|