2016-03-01 09:49:41 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from synapse.http.servlet import parse_integer, parse_string
|
|
|
|
from synapse.http.server import request_handler, finish_request
|
2016-04-21 11:33:05 -04:00
|
|
|
from synapse.replication.pusher_resource import PusherResource
|
2016-06-02 10:20:15 -04:00
|
|
|
from synapse.replication.presence_resource import PresenceResource
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
from twisted.web.resource import Resource
|
|
|
|
from twisted.web.server import NOT_DONE_YET
|
|
|
|
from twisted.internet import defer
|
|
|
|
|
|
|
|
import ujson as json
|
|
|
|
|
|
|
|
import collections
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
REPLICATION_PREFIX = "/_synapse/replication"
|
|
|
|
|
|
|
|
STREAM_NAMES = (
|
|
|
|
("events",),
|
|
|
|
("presence",),
|
|
|
|
("typing",),
|
|
|
|
("receipts",),
|
|
|
|
("user_account_data", "room_account_data", "tag_account_data",),
|
|
|
|
("backfill",),
|
2016-03-02 12:26:20 -05:00
|
|
|
("push_rules",),
|
2016-03-15 13:01:43 -04:00
|
|
|
("pushers",),
|
2016-08-15 06:16:45 -04:00
|
|
|
("caches",),
|
2016-08-31 05:38:58 -04:00
|
|
|
("to_device",),
|
2016-03-01 09:49:41 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ReplicationResource(Resource):
|
|
|
|
"""
|
|
|
|
HTTP endpoint for extracting data from synapse.
|
|
|
|
|
|
|
|
The streams of data returned by the endpoint are controlled by the
|
|
|
|
parameters given to the API. To return a given stream pass a query
|
|
|
|
parameter with a position in the stream to return data from or the
|
|
|
|
special value "-1" to return data from the start of the stream.
|
|
|
|
|
|
|
|
If there is no data for any of the supplied streams after the given
|
|
|
|
position then the request will block until there is data for one
|
|
|
|
of the streams. This allows clients to long-poll this API.
|
|
|
|
|
|
|
|
The possible streams are:
|
|
|
|
|
|
|
|
* "streams": A special stream returing the positions of other streams.
|
|
|
|
* "events": The new events seen on the server.
|
|
|
|
* "presence": Presence updates.
|
|
|
|
* "typing": Typing updates.
|
|
|
|
* "receipts": Receipt updates.
|
|
|
|
* "user_account_data": Top-level per user account data.
|
|
|
|
* "room_account_data: Per room per user account data.
|
|
|
|
* "tag_account_data": Per room per user tags.
|
|
|
|
* "backfill": Old events that have been backfilled from other servers.
|
2016-03-02 12:26:20 -05:00
|
|
|
* "push_rules": Per user changes to push rules.
|
2016-03-15 13:01:43 -04:00
|
|
|
* "pushers": Per user changes to their pushers.
|
2016-08-15 06:16:45 -04:00
|
|
|
* "caches": Cache invalidations.
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
The API takes two additional query parameters:
|
|
|
|
|
|
|
|
* "timeout": How long to wait before returning an empty response.
|
|
|
|
* "limit": The maximum number of rows to return for the selected streams.
|
|
|
|
|
|
|
|
The response is a JSON object with keys for each stream with updates. Under
|
|
|
|
each key is a JSON object with:
|
|
|
|
|
2016-03-25 19:38:19 -04:00
|
|
|
* "position": The current position of the stream.
|
2016-03-01 09:49:41 -05:00
|
|
|
* "field_names": The names of the fields in each row.
|
|
|
|
* "rows": The updates as an array of arrays.
|
|
|
|
|
|
|
|
There are a number of ways this API could be used:
|
|
|
|
|
|
|
|
1) To replicate the contents of the backing database to another database.
|
|
|
|
2) To be notified when the contents of a shared backing database changes.
|
|
|
|
3) To "tail" the activity happening on a server for debugging.
|
|
|
|
|
|
|
|
In the first case the client would track all of the streams and store it's
|
|
|
|
own copy of the data.
|
|
|
|
|
|
|
|
In the second case the client might theoretically just be able to follow
|
|
|
|
the "streams" stream to track where the other streams are. However in
|
|
|
|
practise it will probably need to get the contents of the streams in
|
|
|
|
order to expire the any in-memory caches. Whether it gets the contents
|
|
|
|
of the streams from this replication API or directly from the backing
|
|
|
|
store is a matter of taste.
|
|
|
|
|
|
|
|
In the third case the client would use the "streams" stream to find what
|
|
|
|
streams are available and their current positions. Then it can start
|
|
|
|
long-polling this replication API for new data on those streams.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
Resource.__init__(self) # Resource is old-style, so no super()
|
|
|
|
|
|
|
|
self.version_string = hs.version_string
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.sources = hs.get_event_sources()
|
2016-05-16 13:56:37 -04:00
|
|
|
self.presence_handler = hs.get_presence_handler()
|
2016-05-17 10:58:46 -04:00
|
|
|
self.typing_handler = hs.get_typing_handler()
|
2016-03-01 09:49:41 -05:00
|
|
|
self.notifier = hs.notifier
|
2016-04-28 05:57:49 -04:00
|
|
|
self.clock = hs.get_clock()
|
2016-03-01 09:49:41 -05:00
|
|
|
|
2016-04-21 11:33:05 -04:00
|
|
|
self.putChild("remove_pushers", PusherResource(hs))
|
2016-06-02 10:20:15 -04:00
|
|
|
self.putChild("syncing_users", PresenceResource(hs))
|
2016-04-21 11:33:05 -04:00
|
|
|
|
2016-03-01 09:49:41 -05:00
|
|
|
def render_GET(self, request):
|
|
|
|
self._async_render_GET(request)
|
|
|
|
return NOT_DONE_YET
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def current_replication_token(self):
|
|
|
|
stream_token = yield self.sources.get_current_token()
|
|
|
|
backfill_token = yield self.store.get_current_backfill_token()
|
2016-03-02 12:26:20 -05:00
|
|
|
push_rules_token, room_stream_token = self.store.get_push_rules_stream_token()
|
2016-03-15 13:01:43 -04:00
|
|
|
pushers_token = self.store.get_pushers_stream_token()
|
2016-08-15 06:16:45 -04:00
|
|
|
caches_token = self.store.get_cache_stream_token()
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
defer.returnValue(_ReplicationToken(
|
2016-03-02 12:26:20 -05:00
|
|
|
room_stream_token,
|
2016-03-01 09:49:41 -05:00
|
|
|
int(stream_token.presence_key),
|
|
|
|
int(stream_token.typing_key),
|
|
|
|
int(stream_token.receipt_key),
|
|
|
|
int(stream_token.account_data_key),
|
|
|
|
backfill_token,
|
2016-03-02 12:26:20 -05:00
|
|
|
push_rules_token,
|
2016-03-15 13:01:43 -04:00
|
|
|
pushers_token,
|
2016-08-30 11:51:36 -04:00
|
|
|
0, # State stream is no longer a thing
|
2016-08-15 06:16:45 -04:00
|
|
|
caches_token,
|
2016-08-31 05:38:58 -04:00
|
|
|
int(stream_token.to_device_key),
|
2016-03-01 09:49:41 -05:00
|
|
|
))
|
|
|
|
|
2016-04-28 05:57:49 -04:00
|
|
|
@request_handler()
|
2016-03-01 09:49:41 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _async_render_GET(self, request):
|
|
|
|
limit = parse_integer(request, "limit", 100)
|
|
|
|
timeout = parse_integer(request, "timeout", 10 * 1000)
|
|
|
|
|
|
|
|
request.setHeader(b"Content-Type", b"application/json")
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
request_streams = {
|
|
|
|
name: parse_integer(request, name)
|
|
|
|
for names in STREAM_NAMES for name in names
|
|
|
|
}
|
|
|
|
request_streams["streams"] = parse_string(request, "streams")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
def replicate():
|
|
|
|
return self.replicate(request_streams, limit)
|
2016-03-01 09:49:41 -05:00
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
result = yield self.notifier.wait_for_replication(replicate, timeout)
|
2016-03-01 09:49:41 -05:00
|
|
|
|
2016-05-05 05:29:21 -04:00
|
|
|
for stream_name, stream_content in result.items():
|
|
|
|
logger.info(
|
|
|
|
"Replicating %d rows of %s from %s -> %s",
|
|
|
|
len(stream_content["rows"]),
|
|
|
|
stream_name,
|
|
|
|
request_streams.get(stream_name),
|
2016-05-13 06:54:44 -04:00
|
|
|
stream_content["position"],
|
2016-05-05 05:29:21 -04:00
|
|
|
)
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
request.write(json.dumps(result, ensure_ascii=False))
|
|
|
|
finish_request(request)
|
2016-03-01 09:49:41 -05:00
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def replicate(self, request_streams, limit):
|
|
|
|
writer = _Writer()
|
|
|
|
current_token = yield self.current_replication_token()
|
2016-09-09 09:05:01 -04:00
|
|
|
logger.debug("Replicating up to %r", current_token)
|
2016-04-05 06:23:57 -04:00
|
|
|
|
|
|
|
yield self.account_data(writer, current_token, limit, request_streams)
|
|
|
|
yield self.events(writer, current_token, limit, request_streams)
|
|
|
|
# TODO: implement limit
|
|
|
|
yield self.presence(writer, current_token, request_streams)
|
|
|
|
yield self.typing(writer, current_token, request_streams)
|
|
|
|
yield self.receipts(writer, current_token, limit, request_streams)
|
|
|
|
yield self.push_rules(writer, current_token, limit, request_streams)
|
|
|
|
yield self.pushers(writer, current_token, limit, request_streams)
|
2016-08-15 06:16:45 -04:00
|
|
|
yield self.caches(writer, current_token, limit, request_streams)
|
2016-08-31 05:38:58 -04:00
|
|
|
yield self.to_device(writer, current_token, limit, request_streams)
|
2016-04-05 06:23:57 -04:00
|
|
|
self.streams(writer, current_token, request_streams)
|
|
|
|
|
2016-09-09 09:05:01 -04:00
|
|
|
logger.debug("Replicated %d rows", writer.total)
|
2016-04-05 06:23:57 -04:00
|
|
|
defer.returnValue(writer.finish())
|
|
|
|
|
|
|
|
def streams(self, writer, current_token, request_streams):
|
|
|
|
request_token = request_streams.get("streams")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
streams = []
|
|
|
|
|
|
|
|
if request_token is not None:
|
|
|
|
if request_token == "-1":
|
|
|
|
for names, position in zip(STREAM_NAMES, current_token):
|
|
|
|
streams.extend((name, position) for name in names)
|
|
|
|
else:
|
|
|
|
items = zip(
|
|
|
|
STREAM_NAMES,
|
|
|
|
current_token,
|
|
|
|
_ReplicationToken(request_token)
|
|
|
|
)
|
|
|
|
for names, current_id, last_id in items:
|
|
|
|
if last_id < current_id:
|
|
|
|
streams.extend((name, current_id) for name in names)
|
|
|
|
|
|
|
|
if streams:
|
|
|
|
writer.write_header_and_rows(
|
|
|
|
"streams", streams, ("name", "position"),
|
|
|
|
position=str(current_token)
|
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def events(self, writer, current_token, limit, request_streams):
|
|
|
|
request_events = request_streams.get("events")
|
|
|
|
request_backfill = request_streams.get("backfill")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
if request_events is not None or request_backfill is not None:
|
|
|
|
if request_events is None:
|
|
|
|
request_events = current_token.events
|
|
|
|
if request_backfill is None:
|
|
|
|
request_backfill = current_token.backfill
|
2016-03-31 05:33:02 -04:00
|
|
|
res = yield self.store.get_all_new_events(
|
2016-03-01 09:49:41 -05:00
|
|
|
request_backfill, request_events,
|
|
|
|
current_token.backfill, current_token.events,
|
|
|
|
limit
|
|
|
|
)
|
2016-03-31 05:33:02 -04:00
|
|
|
writer.write_header_and_rows("events", res.new_forward_events, (
|
2016-03-30 10:58:20 -04:00
|
|
|
"position", "internal", "json", "state_group"
|
|
|
|
))
|
2016-03-31 05:33:02 -04:00
|
|
|
writer.write_header_and_rows("backfill", res.new_backfill_events, (
|
2016-03-30 10:58:20 -04:00
|
|
|
"position", "internal", "json", "state_group"
|
|
|
|
))
|
2016-03-30 12:19:56 -04:00
|
|
|
writer.write_header_and_rows(
|
2016-03-31 05:33:02 -04:00
|
|
|
"forward_ex_outliers", res.forward_ex_outliers,
|
2016-03-30 12:19:56 -04:00
|
|
|
("position", "event_id", "state_group")
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows(
|
2016-03-31 05:33:02 -04:00
|
|
|
"backward_ex_outliers", res.backward_ex_outliers,
|
2016-03-30 12:19:56 -04:00
|
|
|
("position", "event_id", "state_group")
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows(
|
2016-03-31 05:33:02 -04:00
|
|
|
"state_resets", res.state_resets, ("position",)
|
2016-03-30 12:19:56 -04:00
|
|
|
)
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def presence(self, writer, current_token, request_streams):
|
2016-03-01 09:49:41 -05:00
|
|
|
current_position = current_token.presence
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
request_presence = request_streams.get("presence")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
if request_presence is not None:
|
|
|
|
presence_rows = yield self.presence_handler.get_all_presence_updates(
|
|
|
|
request_presence, current_position
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("presence", presence_rows, (
|
|
|
|
"position", "user_id", "state", "last_active_ts",
|
|
|
|
"last_federation_update_ts", "last_user_sync_ts",
|
|
|
|
"status_msg", "currently_active",
|
|
|
|
))
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def typing(self, writer, current_token, request_streams):
|
2016-03-01 09:49:41 -05:00
|
|
|
current_position = current_token.presence
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
request_typing = request_streams.get("typing")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
if request_typing is not None:
|
|
|
|
typing_rows = yield self.typing_handler.get_all_typing_updates(
|
|
|
|
request_typing, current_position
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("typing", typing_rows, (
|
|
|
|
"position", "room_id", "typing"
|
|
|
|
))
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def receipts(self, writer, current_token, limit, request_streams):
|
2016-03-01 09:49:41 -05:00
|
|
|
current_position = current_token.receipts
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
request_receipts = request_streams.get("receipts")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
if request_receipts is not None:
|
|
|
|
receipts_rows = yield self.store.get_all_updated_receipts(
|
|
|
|
request_receipts, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("receipts", receipts_rows, (
|
|
|
|
"position", "room_id", "receipt_type", "user_id", "event_id", "data"
|
|
|
|
))
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def account_data(self, writer, current_token, limit, request_streams):
|
2016-03-01 09:49:41 -05:00
|
|
|
current_position = current_token.account_data
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
user_account_data = request_streams.get("user_account_data")
|
|
|
|
room_account_data = request_streams.get("room_account_data")
|
|
|
|
tag_account_data = request_streams.get("tag_account_data")
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
if user_account_data is not None or room_account_data is not None:
|
|
|
|
if user_account_data is None:
|
|
|
|
user_account_data = current_position
|
|
|
|
if room_account_data is None:
|
|
|
|
room_account_data = current_position
|
|
|
|
user_rows, room_rows = yield self.store.get_all_updated_account_data(
|
|
|
|
user_account_data, room_account_data, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("user_account_data", user_rows, (
|
|
|
|
"position", "user_id", "type", "content"
|
|
|
|
))
|
|
|
|
writer.write_header_and_rows("room_account_data", room_rows, (
|
|
|
|
"position", "user_id", "room_id", "type", "content"
|
|
|
|
))
|
|
|
|
|
|
|
|
if tag_account_data is not None:
|
|
|
|
tag_rows = yield self.store.get_all_updated_tags(
|
|
|
|
tag_account_data, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("tag_account_data", tag_rows, (
|
|
|
|
"position", "user_id", "room_id", "tags"
|
|
|
|
))
|
|
|
|
|
2016-03-02 12:26:20 -05:00
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def push_rules(self, writer, current_token, limit, request_streams):
|
2016-03-02 12:26:20 -05:00
|
|
|
current_position = current_token.push_rules
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
push_rules = request_streams.get("push_rules")
|
2016-03-02 12:26:20 -05:00
|
|
|
|
|
|
|
if push_rules is not None:
|
|
|
|
rows = yield self.store.get_all_push_rule_updates(
|
|
|
|
push_rules, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("push_rules", rows, (
|
2016-03-04 11:15:23 -05:00
|
|
|
"position", "event_stream_ordering", "user_id", "rule_id", "op",
|
2016-03-02 12:26:20 -05:00
|
|
|
"priority_class", "priority", "conditions", "actions"
|
|
|
|
))
|
|
|
|
|
2016-03-15 13:01:43 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-04-05 06:23:57 -04:00
|
|
|
def pushers(self, writer, current_token, limit, request_streams):
|
2016-03-15 13:01:43 -04:00
|
|
|
current_position = current_token.pushers
|
|
|
|
|
2016-04-05 06:23:57 -04:00
|
|
|
pushers = request_streams.get("pushers")
|
|
|
|
|
2016-03-15 13:01:43 -04:00
|
|
|
if pushers is not None:
|
|
|
|
updated, deleted = yield self.store.get_all_updated_pushers(
|
|
|
|
pushers, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("pushers", updated, (
|
|
|
|
"position", "user_id", "access_token", "profile_tag", "kind",
|
|
|
|
"app_id", "app_display_name", "device_display_name", "pushkey",
|
|
|
|
"ts", "lang", "data"
|
|
|
|
))
|
2016-04-21 11:33:05 -04:00
|
|
|
writer.write_header_and_rows("deleted_pushers", deleted, (
|
2016-03-15 13:01:43 -04:00
|
|
|
"position", "user_id", "app_id", "pushkey"
|
|
|
|
))
|
|
|
|
|
2016-08-15 06:16:45 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def caches(self, writer, current_token, limit, request_streams):
|
|
|
|
current_position = current_token.caches
|
|
|
|
|
|
|
|
caches = request_streams.get("caches")
|
|
|
|
|
|
|
|
if caches is not None:
|
|
|
|
updated_caches = yield self.store.get_all_updated_caches(
|
|
|
|
caches, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("caches", updated_caches, (
|
|
|
|
"position", "cache_func", "keys", "invalidation_ts"
|
|
|
|
))
|
|
|
|
|
2016-08-31 05:38:58 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def to_device(self, writer, current_token, limit, request_streams):
|
|
|
|
current_position = current_token.to_device
|
|
|
|
|
|
|
|
to_device = request_streams.get("to_device")
|
|
|
|
|
|
|
|
if to_device is not None:
|
|
|
|
to_device_rows = yield self.store.get_all_new_device_messages(
|
|
|
|
to_device, current_position, limit
|
|
|
|
)
|
|
|
|
writer.write_header_and_rows("to_device", to_device_rows, (
|
|
|
|
"position", "user_id", "device_id", "message_json"
|
|
|
|
))
|
|
|
|
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
class _Writer(object):
|
|
|
|
"""Writes the streams as a JSON object as the response to the request"""
|
2016-04-05 06:23:57 -04:00
|
|
|
def __init__(self):
|
2016-03-01 09:49:41 -05:00
|
|
|
self.streams = {}
|
|
|
|
self.total = 0
|
|
|
|
|
|
|
|
def write_header_and_rows(self, name, rows, fields, position=None):
|
|
|
|
if not rows:
|
|
|
|
return
|
|
|
|
|
|
|
|
if position is None:
|
|
|
|
position = rows[-1][0]
|
|
|
|
|
|
|
|
self.streams[name] = {
|
2016-04-27 10:38:43 -04:00
|
|
|
"position": position if type(position) is int else str(position),
|
2016-03-01 09:49:41 -05:00
|
|
|
"field_names": fields,
|
|
|
|
"rows": rows,
|
|
|
|
}
|
|
|
|
|
|
|
|
self.total += len(rows)
|
|
|
|
|
|
|
|
def finish(self):
|
2016-04-05 06:23:57 -04:00
|
|
|
return self.streams
|
2016-03-01 09:49:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
class _ReplicationToken(collections.namedtuple("_ReplicationToken", (
|
|
|
|
"events", "presence", "typing", "receipts", "account_data", "backfill",
|
2016-08-31 05:38:58 -04:00
|
|
|
"push_rules", "pushers", "state", "caches", "to_device",
|
2016-03-01 09:49:41 -05:00
|
|
|
))):
|
|
|
|
__slots__ = []
|
|
|
|
|
|
|
|
def __new__(cls, *args):
|
|
|
|
if len(args) == 1:
|
2016-03-02 12:26:20 -05:00
|
|
|
streams = [int(value) for value in args[0].split("_")]
|
|
|
|
if len(streams) < len(cls._fields):
|
|
|
|
streams.extend([0] * (len(cls._fields) - len(streams)))
|
|
|
|
return cls(*streams)
|
2016-03-01 09:49:41 -05:00
|
|
|
else:
|
|
|
|
return super(_ReplicationToken, cls).__new__(cls, *args)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "_".join(str(value) for value in self)
|