2016-07-21 12:37:44 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 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.
|
2017-08-15 10:57:46 -04:00
|
|
|
import logging
|
|
|
|
import sys
|
2016-07-21 12:37:44 -04:00
|
|
|
|
|
|
|
import synapse
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse import events
|
|
|
|
from synapse.api.urls import FEDERATION_PREFIX
|
|
|
|
from synapse.app import _base
|
2016-07-21 12:37:44 -04:00
|
|
|
from synapse.config._base import ConfigError
|
|
|
|
from synapse.config.homeserver import HomeServerConfig
|
|
|
|
from synapse.config.logger import setup_logging
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.crypto import context_factory
|
|
|
|
from synapse.federation.transport.server import TransportLayerServer
|
2016-07-21 12:37:44 -04:00
|
|
|
from synapse.http.site import SynapseSite
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.metrics.resource import METRICS_PREFIX, MetricsResource
|
2016-07-21 12:37:44 -04:00
|
|
|
from synapse.replication.slave.storage._base import BaseSlavedStore
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.replication.slave.storage.directory import DirectoryStore
|
2016-07-21 12:37:44 -04:00
|
|
|
from synapse.replication.slave.storage.events import SlavedEventStore
|
|
|
|
from synapse.replication.slave.storage.keys import SlavedKeyStore
|
2016-07-28 12:03:40 -04:00
|
|
|
from synapse.replication.slave.storage.room import RoomStore
|
2016-07-28 12:35:53 -04:00
|
|
|
from synapse.replication.slave.storage.transactions import TransactionStore
|
2017-03-27 11:33:44 -04:00
|
|
|
from synapse.replication.tcp.client import ReplicationClientHandler
|
2016-07-21 12:37:44 -04:00
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.storage.engines import create_engine
|
|
|
|
from synapse.util.httpresourcetree import create_resource_tree
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.util.logcontext import LoggingContext
|
2016-07-21 12:37:44 -04:00
|
|
|
from synapse.util.manhole import manhole
|
|
|
|
from synapse.util.versionstring import get_version_string
|
2017-03-27 11:33:44 -04:00
|
|
|
from twisted.internet import reactor
|
2016-07-21 12:37:44 -04:00
|
|
|
from twisted.web.resource import Resource
|
|
|
|
|
|
|
|
logger = logging.getLogger("synapse.app.federation_reader")
|
|
|
|
|
|
|
|
|
|
|
|
class FederationReaderSlavedStore(
|
|
|
|
SlavedEventStore,
|
|
|
|
SlavedKeyStore,
|
2016-07-28 12:03:40 -04:00
|
|
|
RoomStore,
|
|
|
|
DirectoryStore,
|
2016-07-28 12:35:53 -04:00
|
|
|
TransactionStore,
|
2016-07-21 12:37:44 -04:00
|
|
|
BaseSlavedStore,
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class FederationReaderServer(HomeServer):
|
|
|
|
def setup(self):
|
|
|
|
logger.info("Setting up.")
|
|
|
|
self.datastore = FederationReaderSlavedStore(self.get_db_conn(), self)
|
|
|
|
logger.info("Finished setting up.")
|
|
|
|
|
|
|
|
def _listen_http(self, listener_config):
|
|
|
|
port = listener_config["port"]
|
2017-01-10 12:21:41 -05:00
|
|
|
bind_addresses = listener_config["bind_addresses"]
|
2016-07-21 12:37:44 -04:00
|
|
|
site_tag = listener_config.get("tag", port)
|
|
|
|
resources = {}
|
|
|
|
for res in listener_config["resources"]:
|
|
|
|
for name in res["names"]:
|
|
|
|
if name == "metrics":
|
|
|
|
resources[METRICS_PREFIX] = MetricsResource(self)
|
|
|
|
elif name == "federation":
|
|
|
|
resources.update({
|
|
|
|
FEDERATION_PREFIX: TransportLayerServer(self),
|
|
|
|
})
|
|
|
|
|
|
|
|
root_resource = create_resource_tree(resources, Resource())
|
2016-12-18 14:42:43 -05:00
|
|
|
|
2017-12-17 08:15:30 -05:00
|
|
|
_base.listen_tcp(
|
|
|
|
bind_addresses,
|
|
|
|
port,
|
|
|
|
SynapseSite(
|
|
|
|
"synapse.access.http.%s" % (site_tag,),
|
|
|
|
site_tag,
|
|
|
|
listener_config,
|
|
|
|
root_resource,
|
2016-12-18 14:42:43 -05:00
|
|
|
)
|
2017-12-17 08:15:30 -05:00
|
|
|
)
|
2016-12-18 14:42:43 -05:00
|
|
|
|
2016-07-21 12:37:44 -04:00
|
|
|
logger.info("Synapse federation reader now listening on port %d", port)
|
|
|
|
|
|
|
|
def start_listening(self, listeners):
|
|
|
|
for listener in listeners:
|
|
|
|
if listener["type"] == "http":
|
|
|
|
self._listen_http(listener)
|
|
|
|
elif listener["type"] == "manhole":
|
2017-12-17 08:15:30 -05:00
|
|
|
_base.listen_tcp(
|
|
|
|
listener["bind_addresses"],
|
|
|
|
listener["port"],
|
|
|
|
manhole(
|
|
|
|
username="matrix",
|
|
|
|
password="rabbithole",
|
|
|
|
globals={"hs": self},
|
2016-12-18 14:42:43 -05:00
|
|
|
)
|
2017-12-17 08:15:30 -05:00
|
|
|
)
|
2016-07-21 12:37:44 -04:00
|
|
|
else:
|
|
|
|
logger.warn("Unrecognized listener type: %s", listener["type"])
|
|
|
|
|
2017-03-27 11:33:44 -04:00
|
|
|
self.get_tcp_replication().start_replication(self)
|
2016-07-21 12:37:44 -04:00
|
|
|
|
2017-03-27 11:33:44 -04:00
|
|
|
def build_tcp_replication(self):
|
|
|
|
return ReplicationClientHandler(self.get_datastore())
|
2016-07-21 12:37:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
def start(config_options):
|
|
|
|
try:
|
|
|
|
config = HomeServerConfig.load_config(
|
|
|
|
"Synapse federation reader", config_options
|
|
|
|
)
|
|
|
|
except ConfigError as e:
|
|
|
|
sys.stderr.write("\n" + e.message + "\n")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
assert config.worker_app == "synapse.app.federation_reader"
|
|
|
|
|
2017-03-10 10:16:50 -05:00
|
|
|
setup_logging(config, use_worker_options=True)
|
2016-07-21 12:37:44 -04:00
|
|
|
|
2016-11-08 06:07:18 -05:00
|
|
|
events.USE_FROZEN_DICTS = config.use_frozen_dicts
|
|
|
|
|
2016-07-21 12:37:44 -04:00
|
|
|
database_engine = create_engine(config.database_config)
|
|
|
|
|
|
|
|
tls_server_context_factory = context_factory.ServerContextFactory(config)
|
|
|
|
|
|
|
|
ss = FederationReaderServer(
|
|
|
|
config.server_name,
|
|
|
|
db_config=config.database_config,
|
|
|
|
tls_server_context_factory=tls_server_context_factory,
|
|
|
|
config=config,
|
2016-08-05 11:36:07 -04:00
|
|
|
version_string="Synapse/" + get_version_string(synapse),
|
2016-07-21 12:37:44 -04:00
|
|
|
database_engine=database_engine,
|
|
|
|
)
|
|
|
|
|
|
|
|
ss.setup()
|
|
|
|
ss.get_handlers()
|
|
|
|
ss.start_listening(config.worker_listeners)
|
|
|
|
|
|
|
|
def start():
|
2016-09-15 09:31:22 -04:00
|
|
|
ss.get_state_handler().start_caching()
|
2016-07-21 12:37:44 -04:00
|
|
|
ss.get_datastore().start_profiling()
|
|
|
|
|
|
|
|
reactor.callWhenRunning(start)
|
|
|
|
|
2017-08-15 10:57:46 -04:00
|
|
|
_base.start_worker_reactor("synapse-federation-reader", config)
|
2016-07-21 12:37:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
with LoggingContext("main"):
|
|
|
|
start(sys.argv[1:])
|