Packages
eventstore
1.0.0-rc.0
1.4.8
1.4.7
1.4.6
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-rc.0
0.17.0
0.16.2
0.16.1
0.16.0
0.15.1
0.15.0
0.14.0
0.14.0-rc.0
0.13.2
0.13.1
0.13.0
0.12.1
0.12.0
0.11.0
0.11.0-rc.0
0.10.1
0.10.0
0.9.0
0.8.1
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Event store using PostgreSQL for persistence.
Current section
Files
Jump to
Current section
Files
lib/event_store/streams/stream.ex
defmodule EventStore.Streams.Stream do
@moduledoc false
alias EventStore.{EventData, RecordedEvent, Storage}
alias EventStore.Streams.Stream
defstruct [:stream_uuid, :stream_id, stream_version: 0]
def append_to_stream(conn, stream_uuid, expected_version, events, opts \\ []) do
{serializer, opts} = Keyword.pop(opts, :serializer)
with {:ok, stream} <- stream_info(conn, stream_uuid, opts),
{:ok, stream} <- prepare_stream(conn, expected_version, stream, opts) do
do_append_to_storage(conn, events, stream, serializer, opts)
else
reply -> reply
end
end
def link_to_stream(conn, stream_uuid, expected_version, events_or_event_ids, opts \\ []) do
{_serializer, opts} = Keyword.pop(opts, :serializer)
with {:ok, stream} <- stream_info(conn, stream_uuid, opts),
{:ok, stream} <- prepare_stream(conn, expected_version, stream, opts) do
do_link_to_storage(conn, events_or_event_ids, stream, opts)
else
reply -> reply
end
end
def read_stream_forward(conn, stream_uuid, start_version, count, opts \\ []) do
{serializer, opts} = Keyword.pop(opts, :serializer)
with {:ok, stream} <- stream_info(conn, stream_uuid, opts) do
read_storage_forward(conn, start_version, count, stream, serializer, opts)
end
end
def stream_forward(conn, stream_uuid, start_version, read_batch_size, opts \\ []) do
{serializer, opts} = Keyword.pop(opts, :serializer)
with {:ok, stream} <- stream_info(conn, stream_uuid, opts) do
stream_storage_forward(conn, start_version, read_batch_size, stream, serializer, opts)
end
end
def start_from(conn, stream_uuid, start_from, opts \\ [])
def start_from(_conn, _stream_uuid, :origin, _opts), do: {:ok, 0}
def start_from(conn, stream_uuid, :current, opts),
do: stream_version(conn, stream_uuid, opts)
def start_from(_conn, _stream_uuid, start_from, _opts)
when is_integer(start_from),
do: {:ok, start_from}
def start_from(_conn, _stream_uuid, _start_from, _opts),
do: {:error, :invalid_start_from}
def stream_version(conn, stream_uuid, opts \\ []) do
with {:ok, _stream_id, stream_version} <- Storage.stream_info(conn, stream_uuid, opts) do
{:ok, stream_version}
end
end
defp stream_info(conn, stream_uuid, opts) do
with {:ok, stream_id, stream_version} <- Storage.stream_info(conn, stream_uuid, opts) do
stream = %Stream{
stream_uuid: stream_uuid,
stream_id: stream_id,
stream_version: stream_version
}
{:ok, stream}
end
end
defp prepare_stream(
conn,
expected_version,
%Stream{stream_uuid: stream_uuid, stream_id: stream_id, stream_version: 0} = state,
opts
)
when is_nil(stream_id) and expected_version in [0, :any_version, :no_stream] do
with {:ok, stream_id} <- Storage.create_stream(conn, stream_uuid, opts) do
{:ok, %Stream{state | stream_id: stream_id}}
end
end
defp prepare_stream(
_conn,
expected_version,
%Stream{stream_id: stream_id, stream_version: stream_version} = stream,
_opts
)
when not is_nil(stream_id) and
expected_version in [stream_version, :any_version, :stream_exists] do
{:ok, stream}
end
defp prepare_stream(
_conn,
expected_version,
%Stream{stream_id: stream_id, stream_version: 0} = stream,
_opts
)
when not is_nil(stream_id) and expected_version == :no_stream do
{:ok, stream}
end
defp prepare_stream(
_conn,
expected_version,
%Stream{stream_id: stream_id, stream_version: 0},
_opts
)
when is_nil(stream_id) and expected_version == :stream_exists do
{:error, :stream_does_not_exist}
end
defp prepare_stream(
_conn,
expected_version,
%Stream{stream_id: stream_id, stream_version: stream_version},
_opts
)
when not is_nil(stream_id) and stream_version != 0 and expected_version == :no_stream do
{:error, :stream_exists}
end
defp prepare_stream(_conn, _expected_version, _state, _opts),
do: {:error, :wrong_expected_version}
defp do_append_to_storage(conn, events, %Stream{} = stream, serializer, opts) do
prepared_events = prepare_events(events, stream, serializer)
write_to_stream(conn, prepared_events, stream, opts)
end
defp prepare_events(events, %Stream{} = stream, serializer) do
%Stream{stream_uuid: stream_uuid, stream_version: stream_version} = stream
events
|> Enum.map(&map_to_recorded_event(&1, utc_now(), serializer))
|> Enum.with_index(1)
|> Enum.map(fn {recorded_event, index} ->
%RecordedEvent{
recorded_event
| stream_uuid: stream_uuid,
stream_version: stream_version + index
}
end)
end
defp map_to_recorded_event(
%EventData{
data: %{__struct__: event_type},
event_type: nil
} = event,
created_at,
serializer
) do
%{event | event_type: Atom.to_string(event_type)}
|> map_to_recorded_event(created_at, serializer)
end
defp map_to_recorded_event(%EventData{} = event_data, created_at, serializer) do
%EventData{
causation_id: causation_id,
correlation_id: correlation_id,
event_type: event_type,
data: data,
metadata: metadata
} = event_data
%RecordedEvent{
event_id: UUID.uuid4(),
causation_id: causation_id,
correlation_id: correlation_id,
event_type: event_type,
data: serializer.serialize(data),
metadata: serializer.serialize(metadata),
created_at: created_at
}
end
defp do_link_to_storage(conn, events_or_event_ids, %Stream{stream_id: stream_id}, opts) do
Storage.link_to_stream(
conn,
stream_id,
Enum.map(events_or_event_ids, &extract_event_id/1),
opts
)
end
defp extract_event_id(%RecordedEvent{event_id: event_id}), do: event_id
defp extract_event_id(event_id) when is_bitstring(event_id), do: event_id
defp extract_event_id(invalid) do
raise ArgumentError, message: "Invalid event id, expected a UUID but got: #{inspect(invalid)}"
end
# Returns the current date time in UTC.
defp utc_now, do: DateTime.utc_now()
defp write_to_stream(conn, prepared_events, %Stream{} = stream, opts) do
%Stream{stream_id: stream_id} = stream
Storage.append_to_stream(conn, stream_id, prepared_events, opts)
end
defp read_storage_forward(
_conn,
_start_version,
_count,
%Stream{stream_id: stream_id},
_serializer,
_opts
)
when is_nil(stream_id),
do: {:error, :stream_not_found}
defp read_storage_forward(conn, start_version, count, %Stream{} = stream, serializer, opts) do
%Stream{stream_id: stream_id} = stream
case Storage.read_stream_forward(conn, stream_id, start_version, count, opts) do
{:ok, recorded_events} ->
deserialized_events = deserialize_recorded_events(recorded_events, serializer)
{:ok, deserialized_events}
{:error, _error} = reply ->
reply
end
end
defp stream_storage_forward(
_conn,
_start_version,
_read_batch_size,
%Stream{stream_id: stream_id},
_serializer,
_opts
)
when is_nil(stream_id),
do: {:error, :stream_not_found}
defp stream_storage_forward(conn, 0, read_batch_size, stream, serializer, opts),
do: stream_storage_forward(conn, 1, read_batch_size, stream, serializer, opts)
defp stream_storage_forward(
conn,
start_version,
read_batch_size,
%Stream{} = stream,
serializer,
opts
) do
Elixir.Stream.resource(
fn -> start_version end,
fn next_version ->
case read_storage_forward(conn, next_version, read_batch_size, stream, serializer, opts) do
{:ok, []} -> {:halt, next_version}
{:ok, events} -> {events, next_version + length(events)}
end
end,
fn _ -> :ok end
)
end
defp deserialize_recorded_events(recorded_events, serializer),
do: Enum.map(recorded_events, &RecordedEvent.deserialize(&1, serializer))
end