##// END OF EJS Templates
release: merge back stable branch into default
milka -
r925:b5d58901 merge default
parent child Browse files
Show More
@@ -0,0 +1,12 b''
1 diff -rup pytest-4.6.5-orig/setup.py pytest-4.6.5/setup.py
2 --- pytest-4.6.5-orig/setup.py 2018-04-10 10:23:04.000000000 +0200
3 +++ pytest-4.6.5/setup.py 2018-04-10 10:23:34.000000000 +0200
4 @@ -24,7 +24,7 @@ INSTALL_REQUIRES = [
5 def main():
6 setup(
7 use_scm_version={"write_to": "src/_pytest/_version.py"},
8 - setup_requires=["setuptools-scm", "setuptools>=40.0"],
9 + setup_requires=["setuptools-scm", "setuptools<=42.0"],
10 package_dir={"": "src"},
11 # fmt: off
12 extras_require={ No newline at end of file
@@ -0,0 +1,26 b''
1 # RhodeCode VCSServer provides access to different vcs backends via network.
2 # Copyright (C) 2014-2020 RhodeCode GmbH
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18 # This package contains non rhodecode licensed packages that are
19 # vendored for various reasons
20
21 import os
22 import sys
23
24 vendor_dir = os.path.abspath(os.path.dirname(__file__))
25
26 sys.path.append(vendor_dir)
@@ -0,0 +1,46 b''
1 from __future__ import absolute_import, division, unicode_literals
2
3 import logging
4
5 from .stream import TCPStatsClient, UnixSocketStatsClient # noqa
6 from .udp import StatsClient # noqa
7
8 HOST = 'localhost'
9 PORT = 8125
10 IPV6 = False
11 PREFIX = None
12 MAXUDPSIZE = 512
13
14 log = logging.getLogger('rhodecode.statsd')
15
16
17 def statsd_config(config, prefix='statsd.'):
18 _config = {}
19 for key in config.keys():
20 if key.startswith(prefix):
21 _config[key[len(prefix):]] = config[key]
22 return _config
23
24
25 def client_from_config(configuration, prefix='statsd.', **kwargs):
26 from pyramid.settings import asbool
27
28 _config = statsd_config(configuration, prefix)
29 statsd_enabled = asbool(_config.pop('enabled', False))
30 if not statsd_enabled:
31 log.debug('statsd client not enabled by statsd.enabled = flag, skipping...')
32 return
33
34 host = _config.pop('statsd_host', HOST)
35 port = _config.pop('statsd_port', PORT)
36 prefix = _config.pop('statsd_prefix', PREFIX)
37 maxudpsize = _config.pop('statsd_maxudpsize', MAXUDPSIZE)
38 ipv6 = asbool(_config.pop('statsd_ipv6', IPV6))
39 log.debug('configured statsd client %s:%s', host, port)
40
41 return StatsClient(
42 host=host, port=port, prefix=prefix, maxudpsize=maxudpsize, ipv6=ipv6)
43
44
45 def get_statsd_client(request):
46 return client_from_config(request.registry.settings)
@@ -0,0 +1,107 b''
1 from __future__ import absolute_import, division, unicode_literals
2
3 import random
4 from collections import deque
5 from datetime import timedelta
6
7 from .timer import Timer
8
9
10 class StatsClientBase(object):
11 """A Base class for various statsd clients."""
12
13 def close(self):
14 """Used to close and clean up any underlying resources."""
15 raise NotImplementedError()
16
17 def _send(self):
18 raise NotImplementedError()
19
20 def pipeline(self):
21 raise NotImplementedError()
22
23 def timer(self, stat, rate=1):
24 return Timer(self, stat, rate)
25
26 def timing(self, stat, delta, rate=1):
27 """
28 Send new timing information.
29
30 `delta` can be either a number of milliseconds or a timedelta.
31 """
32 if isinstance(delta, timedelta):
33 # Convert timedelta to number of milliseconds.
34 delta = delta.total_seconds() * 1000.
35 self._send_stat(stat, '%0.6f|ms' % delta, rate)
36
37 def incr(self, stat, count=1, rate=1):
38 """Increment a stat by `count`."""
39 self._send_stat(stat, '%s|c' % count, rate)
40
41 def decr(self, stat, count=1, rate=1):
42 """Decrement a stat by `count`."""
43 self.incr(stat, -count, rate)
44
45 def gauge(self, stat, value, rate=1, delta=False):
46 """Set a gauge value."""
47 if value < 0 and not delta:
48 if rate < 1:
49 if random.random() > rate:
50 return
51 with self.pipeline() as pipe:
52 pipe._send_stat(stat, '0|g', 1)
53 pipe._send_stat(stat, '%s|g' % value, 1)
54 else:
55 prefix = '+' if delta and value >= 0 else ''
56 self._send_stat(stat, '%s%s|g' % (prefix, value), rate)
57
58 def set(self, stat, value, rate=1):
59 """Set a set value."""
60 self._send_stat(stat, '%s|s' % value, rate)
61
62 def _send_stat(self, stat, value, rate):
63 self._after(self._prepare(stat, value, rate))
64
65 def _prepare(self, stat, value, rate):
66 if rate < 1:
67 if random.random() > rate:
68 return
69 value = '%s|@%s' % (value, rate)
70
71 if self._prefix:
72 stat = '%s.%s' % (self._prefix, stat)
73
74 return '%s:%s' % (stat, value)
75
76 def _after(self, data):
77 if data:
78 self._send(data)
79
80
81 class PipelineBase(StatsClientBase):
82
83 def __init__(self, client):
84 self._client = client
85 self._prefix = client._prefix
86 self._stats = deque()
87
88 def _send(self):
89 raise NotImplementedError()
90
91 def _after(self, data):
92 if data is not None:
93 self._stats.append(data)
94
95 def __enter__(self):
96 return self
97
98 def __exit__(self, typ, value, tb):
99 self.send()
100
101 def send(self):
102 if not self._stats:
103 return
104 self._send()
105
106 def pipeline(self):
107 return self.__class__(self)
@@ -0,0 +1,75 b''
1 from __future__ import absolute_import, division, unicode_literals
2
3 import socket
4
5 from .base import StatsClientBase, PipelineBase
6
7
8 class StreamPipeline(PipelineBase):
9 def _send(self):
10 self._client._after('\n'.join(self._stats))
11 self._stats.clear()
12
13
14 class StreamClientBase(StatsClientBase):
15 def connect(self):
16 raise NotImplementedError()
17
18 def close(self):
19 if self._sock and hasattr(self._sock, 'close'):
20 self._sock.close()
21 self._sock = None
22
23 def reconnect(self):
24 self.close()
25 self.connect()
26
27 def pipeline(self):
28 return StreamPipeline(self)
29
30 def _send(self, data):
31 """Send data to statsd."""
32 if not self._sock:
33 self.connect()
34 self._do_send(data)
35
36 def _do_send(self, data):
37 self._sock.sendall(data.encode('ascii') + b'\n')
38
39
40 class TCPStatsClient(StreamClientBase):
41 """TCP version of StatsClient."""
42
43 def __init__(self, host='localhost', port=8125, prefix=None,
44 timeout=None, ipv6=False):
45 """Create a new client."""
46 self._host = host
47 self._port = port
48 self._ipv6 = ipv6
49 self._timeout = timeout
50 self._prefix = prefix
51 self._sock = None
52
53 def connect(self):
54 fam = socket.AF_INET6 if self._ipv6 else socket.AF_INET
55 family, _, _, _, addr = socket.getaddrinfo(
56 self._host, self._port, fam, socket.SOCK_STREAM)[0]
57 self._sock = socket.socket(family, socket.SOCK_STREAM)
58 self._sock.settimeout(self._timeout)
59 self._sock.connect(addr)
60
61
62 class UnixSocketStatsClient(StreamClientBase):
63 """Unix domain socket version of StatsClient."""
64
65 def __init__(self, socket_path, prefix=None, timeout=None):
66 """Create a new client."""
67 self._socket_path = socket_path
68 self._timeout = timeout
69 self._prefix = prefix
70 self._sock = None
71
72 def connect(self):
73 self._sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
74 self._sock.settimeout(self._timeout)
75 self._sock.connect(self._socket_path)
@@ -0,0 +1,71 b''
1 from __future__ import absolute_import, division, unicode_literals
2
3 import functools
4
5 # Use timer that's not susceptible to time of day adjustments.
6 try:
7 # perf_counter is only present on Py3.3+
8 from time import perf_counter as time_now
9 except ImportError:
10 # fall back to using time
11 from time import time as time_now
12
13
14 def safe_wraps(wrapper, *args, **kwargs):
15 """Safely wraps partial functions."""
16 while isinstance(wrapper, functools.partial):
17 wrapper = wrapper.func
18 return functools.wraps(wrapper, *args, **kwargs)
19
20
21 class Timer(object):
22 """A context manager/decorator for statsd.timing()."""
23
24 def __init__(self, client, stat, rate=1):
25 self.client = client
26 self.stat = stat
27 self.rate = rate
28 self.ms = None
29 self._sent = False
30 self._start_time = None
31
32 def __call__(self, f):
33 """Thread-safe timing function decorator."""
34 @safe_wraps(f)
35 def _wrapped(*args, **kwargs):
36 start_time = time_now()
37 try:
38 return f(*args, **kwargs)
39 finally:
40 elapsed_time_ms = 1000.0 * (time_now() - start_time)
41 self.client.timing(self.stat, elapsed_time_ms, self.rate)
42 return _wrapped
43
44 def __enter__(self):
45 return self.start()
46
47 def __exit__(self, typ, value, tb):
48 self.stop()
49
50 def start(self):
51 self.ms = None
52 self._sent = False
53 self._start_time = time_now()
54 return self
55
56 def stop(self, send=True):
57 if self._start_time is None:
58 raise RuntimeError('Timer has not started.')
59 dt = time_now() - self._start_time
60 self.ms = 1000.0 * dt # Convert to milliseconds.
61 if send:
62 self.send()
63 return self
64
65 def send(self):
66 if self.ms is None:
67 raise RuntimeError('No data recorded.')
68 if self._sent:
69 raise RuntimeError('Already sent data.')
70 self._sent = True
71 self.client.timing(self.stat, self.ms, self.rate)
@@ -0,0 +1,55 b''
1 from __future__ import absolute_import, division, unicode_literals
2
3 import socket
4
5 from .base import StatsClientBase, PipelineBase
6
7
8 class Pipeline(PipelineBase):
9
10 def __init__(self, client):
11 super(Pipeline, self).__init__(client)
12 self._maxudpsize = client._maxudpsize
13
14 def _send(self):
15 data = self._stats.popleft()
16 while self._stats:
17 # Use popleft to preserve the order of the stats.
18 stat = self._stats.popleft()
19 if len(stat) + len(data) + 1 >= self._maxudpsize:
20 self._client._after(data)
21 data = stat
22 else:
23 data += '\n' + stat
24 self._client._after(data)
25
26
27 class StatsClient(StatsClientBase):
28 """A client for statsd."""
29
30 def __init__(self, host='localhost', port=8125, prefix=None,
31 maxudpsize=512, ipv6=False):
32 """Create a new client."""
33 fam = socket.AF_INET6 if ipv6 else socket.AF_INET
34 family, _, _, _, addr = socket.getaddrinfo(
35 host, port, fam, socket.SOCK_DGRAM)[0]
36 self._addr = addr
37 self._sock = socket.socket(family, socket.SOCK_DGRAM)
38 self._prefix = prefix
39 self._maxudpsize = maxudpsize
40
41 def _send(self, data):
42 """Send data to statsd."""
43 try:
44 self._sock.sendto(data.encode('ascii'), self._addr)
45 except (socket.error, RuntimeError):
46 # No time for love, Dr. Jones!
47 pass
48
49 def close(self):
50 if self._sock and hasattr(self._sock, 'close'):
51 self._sock.close()
52 self._sock = None
53
54 def pipeline(self):
55 return Pipeline(self)
@@ -1,74 +1,76 b''
1 c6fad7d1e61f22b1f4a4863eff207a04c27e9462 v4.0.0
1 c6fad7d1e61f22b1f4a4863eff207a04c27e9462 v4.0.0
2 77b6e243b4cc5b702c15abd6d737798edbac60dc v4.0.1
2 77b6e243b4cc5b702c15abd6d737798edbac60dc v4.0.1
3 a359c072337fdd8e1e71df72cc520b8a9b042f80 v4.1.0
3 a359c072337fdd8e1e71df72cc520b8a9b042f80 v4.1.0
4 49aa7ed030a36b7ceba149a21e587cb5d20b4946 v4.1.1
4 49aa7ed030a36b7ceba149a21e587cb5d20b4946 v4.1.1
5 f38ed1e1a31dce3c170b4d31585ba43471cf0705 v4.1.2
5 f38ed1e1a31dce3c170b4d31585ba43471cf0705 v4.1.2
6 21269ba7bafd8f0c77e79dd86a31eb9bce7643d2 v4.2.0
6 21269ba7bafd8f0c77e79dd86a31eb9bce7643d2 v4.2.0
7 b53930c918c25b2c8f69ceddc6641e511be27fd3 v4.2.1
7 b53930c918c25b2c8f69ceddc6641e511be27fd3 v4.2.1
8 6627ff4119723d8b2b60918e8b1aa49e9f055aab v4.3.0
8 6627ff4119723d8b2b60918e8b1aa49e9f055aab v4.3.0
9 d38f2c2b861dde6c4178923f7cf15ea58b85aa92 v4.3.1
9 d38f2c2b861dde6c4178923f7cf15ea58b85aa92 v4.3.1
10 1232313f9e6adac5ce5399c2a891dc1e72b79022 v4.4.0
10 1232313f9e6adac5ce5399c2a891dc1e72b79022 v4.4.0
11 cbb9f1d329ae5768379cdec55a62ebdd546c4e27 v4.4.1
11 cbb9f1d329ae5768379cdec55a62ebdd546c4e27 v4.4.1
12 24ffe44a27fcd1c5b6936144e176b9f6dd2f3a17 v4.4.2
12 24ffe44a27fcd1c5b6936144e176b9f6dd2f3a17 v4.4.2
13 beaeeaa440cd17471110d4621b8816506c0dff4a v4.5.0
13 beaeeaa440cd17471110d4621b8816506c0dff4a v4.5.0
14 668e5c656f61dd94595611844e1106d1361aa6a7 v4.5.1
14 668e5c656f61dd94595611844e1106d1361aa6a7 v4.5.1
15 ae0640240cb7a77e6dc8c77e64dd80d79732cb5b v4.5.2
15 ae0640240cb7a77e6dc8c77e64dd80d79732cb5b v4.5.2
16 7af06899f426813583fe60449d7517cc49c15b28 v4.6.0
16 7af06899f426813583fe60449d7517cc49c15b28 v4.6.0
17 8f7f4299bf341b43f94dadafa1ea73d6cea2c9ba v4.6.1
17 8f7f4299bf341b43f94dadafa1ea73d6cea2c9ba v4.6.1
18 de00a831a0709ffaac57f948738ea927b97223a9 v4.7.0
18 de00a831a0709ffaac57f948738ea927b97223a9 v4.7.0
19 57f527e0646d731768fb5e0fe742b12a35bdc63b v4.7.1
19 57f527e0646d731768fb5e0fe742b12a35bdc63b v4.7.1
20 f9b09787da9845e4a105f4bffdc252099902cefb v4.7.2
20 f9b09787da9845e4a105f4bffdc252099902cefb v4.7.2
21 0b7c790b726f08385e6ebdf4f257c905787b9244 v4.8.0
21 0b7c790b726f08385e6ebdf4f257c905787b9244 v4.8.0
22 f4123e725b74d0e82fe89982ab8791a66062e2b3 v4.9.0
22 f4123e725b74d0e82fe89982ab8791a66062e2b3 v4.9.0
23 940bac044a0fe1ec839759df81399b50141be720 v4.9.1
23 940bac044a0fe1ec839759df81399b50141be720 v4.9.1
24 582d9ebbe46bdddac4b26eacae36ee5ecabca267 v4.10.0
24 582d9ebbe46bdddac4b26eacae36ee5ecabca267 v4.10.0
25 12fbd08d0ab57acce9c0bdccee75633cfa08d7f4 v4.10.1
25 12fbd08d0ab57acce9c0bdccee75633cfa08d7f4 v4.10.1
26 78352f95021a9d128f5803fdbca7036daef5dabe v4.10.2
26 78352f95021a9d128f5803fdbca7036daef5dabe v4.10.2
27 a47ccfb020cda78c8680e3844aaf0b82b1390f3b v4.10.3
27 a47ccfb020cda78c8680e3844aaf0b82b1390f3b v4.10.3
28 347ae9ae544bba8deb417995285287a3b6be1611 v4.10.4
28 347ae9ae544bba8deb417995285287a3b6be1611 v4.10.4
29 9b257ac49841f850434be0d518baca0827e6c8cc v4.10.5
29 9b257ac49841f850434be0d518baca0827e6c8cc v4.10.5
30 e8bf26eea118694edc4ffe50c6c5aa91022bc434 v4.10.6
30 e8bf26eea118694edc4ffe50c6c5aa91022bc434 v4.10.6
31 71fa9274ba59fb982104f0b9b3d0d024c78675f7 v4.11.0
31 71fa9274ba59fb982104f0b9b3d0d024c78675f7 v4.11.0
32 92471577ef25636e5babe8001d47fc8e51521522 v4.11.1
32 92471577ef25636e5babe8001d47fc8e51521522 v4.11.1
33 0277edbcda5a8d075e1e41a95bcee6dcf21f3f77 v4.11.2
33 0277edbcda5a8d075e1e41a95bcee6dcf21f3f77 v4.11.2
34 6c5ecbf0778ef870e5b23d9fad5340135b563356 v4.11.3
34 6c5ecbf0778ef870e5b23d9fad5340135b563356 v4.11.3
35 be788a89a939ebd63606220064bd624fa9d5c9c9 v4.11.4
35 be788a89a939ebd63606220064bd624fa9d5c9c9 v4.11.4
36 15c90a04098a373ac761fab07695fd80dde3bcdb v4.11.5
36 15c90a04098a373ac761fab07695fd80dde3bcdb v4.11.5
37 77aff155b3251cc00394a49f5e8f2c99e33149a7 v4.11.6
37 77aff155b3251cc00394a49f5e8f2c99e33149a7 v4.11.6
38 c218a1ce5d370c2e671d42a91684b3fc2c91b81d v4.12.0
38 c218a1ce5d370c2e671d42a91684b3fc2c91b81d v4.12.0
39 80085fb846cc948195a5c76b579ca34cbc49b59b v4.12.1
39 80085fb846cc948195a5c76b579ca34cbc49b59b v4.12.1
40 346f04fc8a18df3235defbe6e71bd552c0d46481 v4.12.2
40 346f04fc8a18df3235defbe6e71bd552c0d46481 v4.12.2
41 764fdd752322f3e0c13ea00957f2d548bf4363a7 v4.12.3
41 764fdd752322f3e0c13ea00957f2d548bf4363a7 v4.12.3
42 b58038974a5cecbb9c100d32ad2e4c68582f1a78 v4.12.4
42 b58038974a5cecbb9c100d32ad2e4c68582f1a78 v4.12.4
43 e1d42d92a0fec0c80b56c82f37bc7b5472613706 v4.13.0
43 e1d42d92a0fec0c80b56c82f37bc7b5472613706 v4.13.0
44 c3ded3ff17e9bb2a47002a808984a7a946f58a1c v4.13.1
44 c3ded3ff17e9bb2a47002a808984a7a946f58a1c v4.13.1
45 7ff81aa47b1b40cdef9dd5bcdd439f59c269db3d v4.13.2
45 7ff81aa47b1b40cdef9dd5bcdd439f59c269db3d v4.13.2
46 628a08e6aaeff2c3f9e0e268e854f870e6778e53 v4.13.3
46 628a08e6aaeff2c3f9e0e268e854f870e6778e53 v4.13.3
47 941d675f10cfa7d774815bfacfb37085751b7a0d v4.14.0
47 941d675f10cfa7d774815bfacfb37085751b7a0d v4.14.0
48 75e11d32c0be0a457198f07888e7ef650cfa6888 v4.14.1
48 75e11d32c0be0a457198f07888e7ef650cfa6888 v4.14.1
49 6c6f49fda0191c4641dcd43aa0d4376b8b728d40 v4.15.0
49 6c6f49fda0191c4641dcd43aa0d4376b8b728d40 v4.15.0
50 184dea5e01c36e6474c83d3bb34719cdfec22b0d v4.15.1
50 184dea5e01c36e6474c83d3bb34719cdfec22b0d v4.15.1
51 a4dc3669345553582296b2ce1485229a6c6f0522 v4.15.2
51 a4dc3669345553582296b2ce1485229a6c6f0522 v4.15.2
52 d2a4a1a66f204668841da1cdccfa29083e1ef7a3 v4.16.0
52 d2a4a1a66f204668841da1cdccfa29083e1ef7a3 v4.16.0
53 744cf8f2c8f23051978fc293404bf475cc5a31f6 v4.16.1
53 744cf8f2c8f23051978fc293404bf475cc5a31f6 v4.16.1
54 e68aff93ce4ad11fea13420e914f7dfb05c39566 v4.16.2
54 e68aff93ce4ad11fea13420e914f7dfb05c39566 v4.16.2
55 647aeff9752dc1aa00796fa280d0d2ce2f511bc9 v4.17.0
55 647aeff9752dc1aa00796fa280d0d2ce2f511bc9 v4.17.0
56 5e0c2990e095bba1dc903cf0e6ef6ac035e0ccf9 v4.17.1
56 5e0c2990e095bba1dc903cf0e6ef6ac035e0ccf9 v4.17.1
57 8a824544d95037d76d99b104b5d2363858101d53 v4.17.2
57 8a824544d95037d76d99b104b5d2363858101d53 v4.17.2
58 ccd806a2d9482f61bd7e8956a02a28eb24a1d46a v4.17.3
58 ccd806a2d9482f61bd7e8956a02a28eb24a1d46a v4.17.3
59 e533ca02ccc205189b7bad9f227a312212772022 v4.17.4
59 e533ca02ccc205189b7bad9f227a312212772022 v4.17.4
60 ba6a6dc9ecd7fd8b1dcd6eb0c4ee0210e897c426 v4.18.0
60 ba6a6dc9ecd7fd8b1dcd6eb0c4ee0210e897c426 v4.18.0
61 17bc818b41bcf6883b9ff0da31f01d8c2a5d0781 v4.18.1
61 17bc818b41bcf6883b9ff0da31f01d8c2a5d0781 v4.18.1
62 1e9f12aa01f82c335abc9017efe94ce1c30b52ba v4.18.2
62 1e9f12aa01f82c335abc9017efe94ce1c30b52ba v4.18.2
63 f4cc6b3c5680bdf4541d7d442fbb7086640fb547 v4.18.3
63 f4cc6b3c5680bdf4541d7d442fbb7086640fb547 v4.18.3
64 5dc0277e4f77bd4cc3042d99625bb5d3ba480c8c v4.19.0
64 5dc0277e4f77bd4cc3042d99625bb5d3ba480c8c v4.19.0
65 3a815eeb1b1efa340dda9b81a8da3cf24a7d605b v4.19.1
65 3a815eeb1b1efa340dda9b81a8da3cf24a7d605b v4.19.1
66 8841da3680fba841e5a54ebccd8ca56c078f7553 v4.19.2
66 8841da3680fba841e5a54ebccd8ca56c078f7553 v4.19.2
67 4b0dec7fd80b1ca38e5073e5e562a5a450f73669 v4.19.3
67 4b0dec7fd80b1ca38e5073e5e562a5a450f73669 v4.19.3
68 1485aa75ffe1b1ec48352dce7b7492d92f85e95f v4.20.0
68 1485aa75ffe1b1ec48352dce7b7492d92f85e95f v4.20.0
69 5b740274011766ef2f73803cc196d081e1e7f1d4 v4.20.1
69 5b740274011766ef2f73803cc196d081e1e7f1d4 v4.20.1
70 5a7835234e2c45e8fb8184c60f548a64b5842af8 v4.21.0
70 5a7835234e2c45e8fb8184c60f548a64b5842af8 v4.21.0
71 26af88343015f8b89d5a66f92bc7547c51fcf0df v4.22.0
71 26af88343015f8b89d5a66f92bc7547c51fcf0df v4.22.0
72 cf54e5f700fe5dc50af1a1bdf5197c18cf52105f v4.23.0
72 cf54e5f700fe5dc50af1a1bdf5197c18cf52105f v4.23.0
73 179d989bcfe02c6227f9f6aa9236cbbe1c14c400 v4.23.1
73 179d989bcfe02c6227f9f6aa9236cbbe1c14c400 v4.23.1
74 383aee8b1652affaa26aefe336a89ee366b2b26d v4.23.2
74 383aee8b1652affaa26aefe336a89ee366b2b26d v4.23.2
75 bc1a8141cc51fc23c455ebc50c6609c810b46f8d v4.24.0
76 530a1c03caabc806ea1ef34605f8f67f18c70e55 v4.24.1
@@ -1,237 +1,243 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2
2
3 ; #################################
3 ; #################################
4 ; RHODECODE VCSSERVER CONFIGURATION
4 ; RHODECODE VCSSERVER CONFIGURATION
5 ; #################################
5 ; #################################
6
6
7 [server:main]
7 [server:main]
8 ; COMMON HOST/IP CONFIG
8 ; COMMON HOST/IP CONFIG
9 host = 0.0.0.0
9 host = 0.0.0.0
10 port = 9900
10 port = 9900
11
11
12 ; ##################################################
12 ; ##################################################
13 ; WAITRESS WSGI SERVER - Recommended for Development
13 ; WAITRESS WSGI SERVER - Recommended for Development
14 ; ##################################################
14 ; ##################################################
15
15
16 ; use server type
16 ; use server type
17 use = egg:waitress#main
17 use = egg:waitress#main
18
18
19 ; number of worker threads
19 ; number of worker threads
20 threads = 5
20 threads = 5
21
21
22 ; MAX BODY SIZE 100GB
22 ; MAX BODY SIZE 100GB
23 max_request_body_size = 107374182400
23 max_request_body_size = 107374182400
24
24
25 ; Use poll instead of select, fixes file descriptors limits problems.
25 ; Use poll instead of select, fixes file descriptors limits problems.
26 ; May not work on old windows systems.
26 ; May not work on old windows systems.
27 asyncore_use_poll = true
27 asyncore_use_poll = true
28
28
29
29
30 ; ###########################
30 ; ###########################
31 ; GUNICORN APPLICATION SERVER
31 ; GUNICORN APPLICATION SERVER
32 ; ###########################
32 ; ###########################
33
33
34 ; run with gunicorn --log-config rhodecode.ini --paste rhodecode.ini
34 ; run with gunicorn --log-config rhodecode.ini --paste rhodecode.ini
35
35
36 ; Module to use, this setting shouldn't be changed
36 ; Module to use, this setting shouldn't be changed
37 #use = egg:gunicorn#main
37 #use = egg:gunicorn#main
38
38
39 ; Sets the number of process workers. More workers means more concurrent connections
39 ; Sets the number of process workers. More workers means more concurrent connections
40 ; RhodeCode can handle at the same time. Each additional worker also it increases
40 ; RhodeCode can handle at the same time. Each additional worker also it increases
41 ; memory usage as each has it's own set of caches.
41 ; memory usage as each has it's own set of caches.
42 ; Recommended value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers, but no more
42 ; Recommended value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers, but no more
43 ; than 8-10 unless for really big deployments .e.g 700-1000 users.
43 ; than 8-10 unless for really big deployments .e.g 700-1000 users.
44 ; `instance_id = *` must be set in the [app:main] section below (which is the default)
44 ; `instance_id = *` must be set in the [app:main] section below (which is the default)
45 ; when using more than 1 worker.
45 ; when using more than 1 worker.
46 #workers = 2
46 #workers = 2
47
47
48 ; Gunicorn access log level
48 ; Gunicorn access log level
49 #loglevel = info
49 #loglevel = info
50
50
51 ; Process name visible in process list
51 ; Process name visible in process list
52 #proc_name = rhodecode_vcsserver
52 #proc_name = rhodecode_vcsserver
53
53
54 ; Type of worker class, one of `sync`, `gevent`
54 ; Type of worker class, one of `sync`, `gevent`
55 ; currently `sync` is the only option allowed.
55 ; currently `sync` is the only option allowed.
56 #worker_class = sync
56 #worker_class = sync
57
57
58 ; The maximum number of simultaneous clients. Valid only for gevent
58 ; The maximum number of simultaneous clients. Valid only for gevent
59 #worker_connections = 10
59 #worker_connections = 10
60
60
61 ; Max number of requests that worker will handle before being gracefully restarted.
61 ; Max number of requests that worker will handle before being gracefully restarted.
62 ; Prevents memory leaks, jitter adds variability so not all workers are restarted at once.
62 ; Prevents memory leaks, jitter adds variability so not all workers are restarted at once.
63 #max_requests = 1000
63 #max_requests = 1000
64 #max_requests_jitter = 30
64 #max_requests_jitter = 30
65
65
66 ; Amount of time a worker can spend with handling a request before it
66 ; Amount of time a worker can spend with handling a request before it
67 ; gets killed and restarted. By default set to 21600 (6hrs)
67 ; gets killed and restarted. By default set to 21600 (6hrs)
68 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
68 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
69 #timeout = 21600
69 #timeout = 21600
70
70
71 ; The maximum size of HTTP request line in bytes.
71 ; The maximum size of HTTP request line in bytes.
72 ; 0 for unlimited
72 ; 0 for unlimited
73 #limit_request_line = 0
73 #limit_request_line = 0
74
74
75 ; Limit the number of HTTP headers fields in a request.
75 ; Limit the number of HTTP headers fields in a request.
76 ; By default this value is 100 and can't be larger than 32768.
76 ; By default this value is 100 and can't be larger than 32768.
77 #limit_request_fields = 32768
77 #limit_request_fields = 32768
78
78
79 ; Limit the allowed size of an HTTP request header field.
79 ; Limit the allowed size of an HTTP request header field.
80 ; Value is a positive number or 0.
80 ; Value is a positive number or 0.
81 ; Setting it to 0 will allow unlimited header field sizes.
81 ; Setting it to 0 will allow unlimited header field sizes.
82 #limit_request_field_size = 0
82 #limit_request_field_size = 0
83
83
84 ; Timeout for graceful workers restart.
84 ; Timeout for graceful workers restart.
85 ; After receiving a restart signal, workers have this much time to finish
85 ; After receiving a restart signal, workers have this much time to finish
86 ; serving requests. Workers still alive after the timeout (starting from the
86 ; serving requests. Workers still alive after the timeout (starting from the
87 ; receipt of the restart signal) are force killed.
87 ; receipt of the restart signal) are force killed.
88 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
88 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
89 #graceful_timeout = 3600
89 #graceful_timeout = 3600
90
90
91 # The number of seconds to wait for requests on a Keep-Alive connection.
91 # The number of seconds to wait for requests on a Keep-Alive connection.
92 # Generally set in the 1-5 seconds range.
92 # Generally set in the 1-5 seconds range.
93 #keepalive = 2
93 #keepalive = 2
94
94
95 ; Maximum memory usage that each worker can use before it will receive a
95 ; Maximum memory usage that each worker can use before it will receive a
96 ; graceful restart signal 0 = memory monitoring is disabled
96 ; graceful restart signal 0 = memory monitoring is disabled
97 ; Examples: 268435456 (256MB), 536870912 (512MB)
97 ; Examples: 268435456 (256MB), 536870912 (512MB)
98 ; 1073741824 (1GB), 2147483648 (2GB), 4294967296 (4GB)
98 ; 1073741824 (1GB), 2147483648 (2GB), 4294967296 (4GB)
99 #memory_max_usage = 0
99 #memory_max_usage = 0
100
100
101 ; How often in seconds to check for memory usage for each gunicorn worker
101 ; How often in seconds to check for memory usage for each gunicorn worker
102 #memory_usage_check_interval = 60
102 #memory_usage_check_interval = 60
103
103
104 ; Threshold value for which we don't recycle worker if GarbageCollection
104 ; Threshold value for which we don't recycle worker if GarbageCollection
105 ; frees up enough resources. Before each restart we try to run GC on worker
105 ; frees up enough resources. Before each restart we try to run GC on worker
106 ; in case we get enough free memory after that, restart will not happen.
106 ; in case we get enough free memory after that, restart will not happen.
107 #memory_usage_recovery_threshold = 0.8
107 #memory_usage_recovery_threshold = 0.8
108
108
109
109
110 [app:main]
110 [app:main]
111 ; The %(here)s variable will be replaced with the absolute path of parent directory
111 ; The %(here)s variable will be replaced with the absolute path of parent directory
112 ; of this file
112 ; of this file
113 use = egg:rhodecode-vcsserver
113 use = egg:rhodecode-vcsserver
114
114
115
115
116 ; #############
116 ; #############
117 ; DEBUG OPTIONS
117 ; DEBUG OPTIONS
118 ; #############
118 ; #############
119
119
120 # During development the we want to have the debug toolbar enabled
120 # During development the we want to have the debug toolbar enabled
121 pyramid.includes =
121 pyramid.includes =
122 pyramid_debugtoolbar
122 pyramid_debugtoolbar
123
123
124 debugtoolbar.hosts = 0.0.0.0/0
124 debugtoolbar.hosts = 0.0.0.0/0
125 debugtoolbar.exclude_prefixes =
125 debugtoolbar.exclude_prefixes =
126 /css
126 /css
127 /fonts
127 /fonts
128 /images
128 /images
129 /js
129 /js
130
130
131 ; #################
131 ; #################
132 ; END DEBUG OPTIONS
132 ; END DEBUG OPTIONS
133 ; #################
133 ; #################
134
134
135 ; Pyramid default locales, we need this to be set
135 ; Pyramid default locales, we need this to be set
136 pyramid.default_locale_name = en
136 pyramid.default_locale_name = en
137
137
138 ; default locale used by VCS systems
138 ; default locale used by VCS systems
139 locale = en_US.UTF-8
139 locale = en_US.UTF-8
140
140
141 ; path to binaries for vcsserver, it should be set by the installer
141 ; path to binaries for vcsserver, it should be set by the installer
142 ; at installation time, e.g /home/user/vcsserver-1/profile/bin
142 ; at installation time, e.g /home/user/vcsserver-1/profile/bin
143 ; it can also be a path to nix-build output in case of development
143 ; it can also be a path to nix-build output in case of development
144 core.binary_dir = ""
144 core.binary_dir = ""
145
145
146 ; Custom exception store path, defaults to TMPDIR
146 ; Custom exception store path, defaults to TMPDIR
147 ; This is used to store exception from RhodeCode in shared directory
147 ; This is used to store exception from RhodeCode in shared directory
148 #exception_tracker.store_path =
148 #exception_tracker.store_path =
149
149
150 ; #############
150 ; #############
151 ; DOGPILE CACHE
151 ; DOGPILE CACHE
152 ; #############
152 ; #############
153
153
154 ; Default cache dir for caches. Putting this into a ramdisk can boost performance.
154 ; Default cache dir for caches. Putting this into a ramdisk can boost performance.
155 ; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space
155 ; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space
156 cache_dir = %(here)s/data
156 cache_dir = %(here)s/data
157
157
158 ; ***************************************
158 ; ***************************************
159 ; `repo_object` cache, default file based
159 ; `repo_object` cache, default file based
160 ; ***************************************
160 ; ***************************************
161
161
162 ; `repo_object` cache settings for vcs methods for repositories
162 ; `repo_object` cache settings for vcs methods for repositories
163 rc_cache.repo_object.backend = dogpile.cache.rc.file_namespace
163 rc_cache.repo_object.backend = dogpile.cache.rc.file_namespace
164
164
165 ; cache auto-expires after N seconds
165 ; cache auto-expires after N seconds
166 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
166 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
167 rc_cache.repo_object.expiration_time = 2592000
167 rc_cache.repo_object.expiration_time = 2592000
168
168
169 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
169 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
170 #rc_cache.repo_object.arguments.filename = /tmp/vcsserver_cache.db
170 #rc_cache.repo_object.arguments.filename = /tmp/vcsserver_cache.db
171
171
172 ; ***********************************************************
172 ; ***********************************************************
173 ; `repo_object` cache with redis backend
173 ; `repo_object` cache with redis backend
174 ; recommended for larger instance, and for better performance
174 ; recommended for larger instance, and for better performance
175 ; ***********************************************************
175 ; ***********************************************************
176
176
177 ; `repo_object` cache settings for vcs methods for repositories
177 ; `repo_object` cache settings for vcs methods for repositories
178 #rc_cache.repo_object.backend = dogpile.cache.rc.redis_msgpack
178 #rc_cache.repo_object.backend = dogpile.cache.rc.redis_msgpack
179
179
180 ; cache auto-expires after N seconds
180 ; cache auto-expires after N seconds
181 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
181 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
182 #rc_cache.repo_object.expiration_time = 2592000
182 #rc_cache.repo_object.expiration_time = 2592000
183
183
184 ; redis_expiration_time needs to be greater then expiration_time
184 ; redis_expiration_time needs to be greater then expiration_time
185 #rc_cache.repo_object.arguments.redis_expiration_time = 3592000
185 #rc_cache.repo_object.arguments.redis_expiration_time = 3592000
186
186
187 #rc_cache.repo_object.arguments.host = localhost
187 #rc_cache.repo_object.arguments.host = localhost
188 #rc_cache.repo_object.arguments.port = 6379
188 #rc_cache.repo_object.arguments.port = 6379
189 #rc_cache.repo_object.arguments.db = 5
189 #rc_cache.repo_object.arguments.db = 5
190 #rc_cache.repo_object.arguments.socket_timeout = 30
190 #rc_cache.repo_object.arguments.socket_timeout = 30
191 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
191 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
192 #rc_cache.repo_object.arguments.distributed_lock = true
192 #rc_cache.repo_object.arguments.distributed_lock = true
193
193
194 ; Statsd client config
195 #statsd.enabled = false
196 #statsd.statsd_host = 0.0.0.0
197 #statsd.statsd_port = 8125
198 #statsd.statsd_prefix =
199 #statsd.statsd_ipv6 = false
194
200
195 ; #####################
201 ; #####################
196 ; LOGGING CONFIGURATION
202 ; LOGGING CONFIGURATION
197 ; #####################
203 ; #####################
198 [loggers]
204 [loggers]
199 keys = root, vcsserver
205 keys = root, vcsserver
200
206
201 [handlers]
207 [handlers]
202 keys = console
208 keys = console
203
209
204 [formatters]
210 [formatters]
205 keys = generic
211 keys = generic
206
212
207 ; #######
213 ; #######
208 ; LOGGERS
214 ; LOGGERS
209 ; #######
215 ; #######
210 [logger_root]
216 [logger_root]
211 level = NOTSET
217 level = NOTSET
212 handlers = console
218 handlers = console
213
219
214 [logger_vcsserver]
220 [logger_vcsserver]
215 level = DEBUG
221 level = DEBUG
216 handlers =
222 handlers =
217 qualname = vcsserver
223 qualname = vcsserver
218 propagate = 1
224 propagate = 1
219
225
220
226
221 ; ########
227 ; ########
222 ; HANDLERS
228 ; HANDLERS
223 ; ########
229 ; ########
224
230
225 [handler_console]
231 [handler_console]
226 class = StreamHandler
232 class = StreamHandler
227 args = (sys.stderr, )
233 args = (sys.stderr, )
228 level = DEBUG
234 level = DEBUG
229 formatter = generic
235 formatter = generic
230
236
231 ; ##########
237 ; ##########
232 ; FORMATTERS
238 ; FORMATTERS
233 ; ##########
239 ; ##########
234
240
235 [formatter_generic]
241 [formatter_generic]
236 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
242 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
237 datefmt = %Y-%m-%d %H:%M:%S
243 datefmt = %Y-%m-%d %H:%M:%S
@@ -1,200 +1,206 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2
2
3 ; #################################
3 ; #################################
4 ; RHODECODE VCSSERVER CONFIGURATION
4 ; RHODECODE VCSSERVER CONFIGURATION
5 ; #################################
5 ; #################################
6
6
7 [server:main]
7 [server:main]
8 ; COMMON HOST/IP CONFIG
8 ; COMMON HOST/IP CONFIG
9 host = 127.0.0.1
9 host = 127.0.0.1
10 port = 9900
10 port = 9900
11
11
12
12
13 ; ###########################
13 ; ###########################
14 ; GUNICORN APPLICATION SERVER
14 ; GUNICORN APPLICATION SERVER
15 ; ###########################
15 ; ###########################
16
16
17 ; run with gunicorn --log-config rhodecode.ini --paste rhodecode.ini
17 ; run with gunicorn --log-config rhodecode.ini --paste rhodecode.ini
18
18
19 ; Module to use, this setting shouldn't be changed
19 ; Module to use, this setting shouldn't be changed
20 use = egg:gunicorn#main
20 use = egg:gunicorn#main
21
21
22 ; Sets the number of process workers. More workers means more concurrent connections
22 ; Sets the number of process workers. More workers means more concurrent connections
23 ; RhodeCode can handle at the same time. Each additional worker also it increases
23 ; RhodeCode can handle at the same time. Each additional worker also it increases
24 ; memory usage as each has it's own set of caches.
24 ; memory usage as each has it's own set of caches.
25 ; Recommended value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers, but no more
25 ; Recommended value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers, but no more
26 ; than 8-10 unless for really big deployments .e.g 700-1000 users.
26 ; than 8-10 unless for really big deployments .e.g 700-1000 users.
27 ; `instance_id = *` must be set in the [app:main] section below (which is the default)
27 ; `instance_id = *` must be set in the [app:main] section below (which is the default)
28 ; when using more than 1 worker.
28 ; when using more than 1 worker.
29 workers = 2
29 workers = 2
30
30
31 ; Gunicorn access log level
31 ; Gunicorn access log level
32 loglevel = info
32 loglevel = info
33
33
34 ; Process name visible in process list
34 ; Process name visible in process list
35 proc_name = rhodecode_vcsserver
35 proc_name = rhodecode_vcsserver
36
36
37 ; Type of worker class, one of `sync`, `gevent`
37 ; Type of worker class, one of `sync`, `gevent`
38 ; currently `sync` is the only option allowed.
38 ; currently `sync` is the only option allowed.
39 worker_class = sync
39 worker_class = sync
40
40
41 ; The maximum number of simultaneous clients. Valid only for gevent
41 ; The maximum number of simultaneous clients. Valid only for gevent
42 worker_connections = 10
42 worker_connections = 10
43
43
44 ; Max number of requests that worker will handle before being gracefully restarted.
44 ; Max number of requests that worker will handle before being gracefully restarted.
45 ; Prevents memory leaks, jitter adds variability so not all workers are restarted at once.
45 ; Prevents memory leaks, jitter adds variability so not all workers are restarted at once.
46 max_requests = 1000
46 max_requests = 1000
47 max_requests_jitter = 30
47 max_requests_jitter = 30
48
48
49 ; Amount of time a worker can spend with handling a request before it
49 ; Amount of time a worker can spend with handling a request before it
50 ; gets killed and restarted. By default set to 21600 (6hrs)
50 ; gets killed and restarted. By default set to 21600 (6hrs)
51 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
51 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
52 timeout = 21600
52 timeout = 21600
53
53
54 ; The maximum size of HTTP request line in bytes.
54 ; The maximum size of HTTP request line in bytes.
55 ; 0 for unlimited
55 ; 0 for unlimited
56 limit_request_line = 0
56 limit_request_line = 0
57
57
58 ; Limit the number of HTTP headers fields in a request.
58 ; Limit the number of HTTP headers fields in a request.
59 ; By default this value is 100 and can't be larger than 32768.
59 ; By default this value is 100 and can't be larger than 32768.
60 limit_request_fields = 32768
60 limit_request_fields = 32768
61
61
62 ; Limit the allowed size of an HTTP request header field.
62 ; Limit the allowed size of an HTTP request header field.
63 ; Value is a positive number or 0.
63 ; Value is a positive number or 0.
64 ; Setting it to 0 will allow unlimited header field sizes.
64 ; Setting it to 0 will allow unlimited header field sizes.
65 limit_request_field_size = 0
65 limit_request_field_size = 0
66
66
67 ; Timeout for graceful workers restart.
67 ; Timeout for graceful workers restart.
68 ; After receiving a restart signal, workers have this much time to finish
68 ; After receiving a restart signal, workers have this much time to finish
69 ; serving requests. Workers still alive after the timeout (starting from the
69 ; serving requests. Workers still alive after the timeout (starting from the
70 ; receipt of the restart signal) are force killed.
70 ; receipt of the restart signal) are force killed.
71 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
71 ; Examples: 1800 (30min), 3600 (1hr), 7200 (2hr), 43200 (12h)
72 graceful_timeout = 3600
72 graceful_timeout = 3600
73
73
74 # The number of seconds to wait for requests on a Keep-Alive connection.
74 # The number of seconds to wait for requests on a Keep-Alive connection.
75 # Generally set in the 1-5 seconds range.
75 # Generally set in the 1-5 seconds range.
76 keepalive = 2
76 keepalive = 2
77
77
78 ; Maximum memory usage that each worker can use before it will receive a
78 ; Maximum memory usage that each worker can use before it will receive a
79 ; graceful restart signal 0 = memory monitoring is disabled
79 ; graceful restart signal 0 = memory monitoring is disabled
80 ; Examples: 268435456 (256MB), 536870912 (512MB)
80 ; Examples: 268435456 (256MB), 536870912 (512MB)
81 ; 1073741824 (1GB), 2147483648 (2GB), 4294967296 (4GB)
81 ; 1073741824 (1GB), 2147483648 (2GB), 4294967296 (4GB)
82 memory_max_usage = 0
82 memory_max_usage = 0
83
83
84 ; How often in seconds to check for memory usage for each gunicorn worker
84 ; How often in seconds to check for memory usage for each gunicorn worker
85 memory_usage_check_interval = 60
85 memory_usage_check_interval = 60
86
86
87 ; Threshold value for which we don't recycle worker if GarbageCollection
87 ; Threshold value for which we don't recycle worker if GarbageCollection
88 ; frees up enough resources. Before each restart we try to run GC on worker
88 ; frees up enough resources. Before each restart we try to run GC on worker
89 ; in case we get enough free memory after that, restart will not happen.
89 ; in case we get enough free memory after that, restart will not happen.
90 memory_usage_recovery_threshold = 0.8
90 memory_usage_recovery_threshold = 0.8
91
91
92
92
93 [app:main]
93 [app:main]
94 ; The %(here)s variable will be replaced with the absolute path of parent directory
94 ; The %(here)s variable will be replaced with the absolute path of parent directory
95 ; of this file
95 ; of this file
96 use = egg:rhodecode-vcsserver
96 use = egg:rhodecode-vcsserver
97
97
98 ; Pyramid default locales, we need this to be set
98 ; Pyramid default locales, we need this to be set
99 pyramid.default_locale_name = en
99 pyramid.default_locale_name = en
100
100
101 ; default locale used by VCS systems
101 ; default locale used by VCS systems
102 locale = en_US.UTF-8
102 locale = en_US.UTF-8
103
103
104 ; path to binaries for vcsserver, it should be set by the installer
104 ; path to binaries for vcsserver, it should be set by the installer
105 ; at installation time, e.g /home/user/vcsserver-1/profile/bin
105 ; at installation time, e.g /home/user/vcsserver-1/profile/bin
106 ; it can also be a path to nix-build output in case of development
106 ; it can also be a path to nix-build output in case of development
107 core.binary_dir = ""
107 core.binary_dir = ""
108
108
109 ; Custom exception store path, defaults to TMPDIR
109 ; Custom exception store path, defaults to TMPDIR
110 ; This is used to store exception from RhodeCode in shared directory
110 ; This is used to store exception from RhodeCode in shared directory
111 #exception_tracker.store_path =
111 #exception_tracker.store_path =
112
112
113 ; #############
113 ; #############
114 ; DOGPILE CACHE
114 ; DOGPILE CACHE
115 ; #############
115 ; #############
116
116
117 ; Default cache dir for caches. Putting this into a ramdisk can boost performance.
117 ; Default cache dir for caches. Putting this into a ramdisk can boost performance.
118 ; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space
118 ; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space
119 cache_dir = %(here)s/data
119 cache_dir = %(here)s/data
120
120
121 ; ***************************************
121 ; ***************************************
122 ; `repo_object` cache, default file based
122 ; `repo_object` cache, default file based
123 ; ***************************************
123 ; ***************************************
124
124
125 ; `repo_object` cache settings for vcs methods for repositories
125 ; `repo_object` cache settings for vcs methods for repositories
126 rc_cache.repo_object.backend = dogpile.cache.rc.file_namespace
126 rc_cache.repo_object.backend = dogpile.cache.rc.file_namespace
127
127
128 ; cache auto-expires after N seconds
128 ; cache auto-expires after N seconds
129 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
129 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
130 rc_cache.repo_object.expiration_time = 2592000
130 rc_cache.repo_object.expiration_time = 2592000
131
131
132 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
132 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
133 #rc_cache.repo_object.arguments.filename = /tmp/vcsserver_cache.db
133 #rc_cache.repo_object.arguments.filename = /tmp/vcsserver_cache.db
134
134
135 ; ***********************************************************
135 ; ***********************************************************
136 ; `repo_object` cache with redis backend
136 ; `repo_object` cache with redis backend
137 ; recommended for larger instance, and for better performance
137 ; recommended for larger instance, and for better performance
138 ; ***********************************************************
138 ; ***********************************************************
139
139
140 ; `repo_object` cache settings for vcs methods for repositories
140 ; `repo_object` cache settings for vcs methods for repositories
141 #rc_cache.repo_object.backend = dogpile.cache.rc.redis_msgpack
141 #rc_cache.repo_object.backend = dogpile.cache.rc.redis_msgpack
142
142
143 ; cache auto-expires after N seconds
143 ; cache auto-expires after N seconds
144 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
144 ; Examples: 86400 (1Day), 604800 (7Days), 1209600 (14Days), 2592000 (30days), 7776000 (90Days)
145 #rc_cache.repo_object.expiration_time = 2592000
145 #rc_cache.repo_object.expiration_time = 2592000
146
146
147 ; redis_expiration_time needs to be greater then expiration_time
147 ; redis_expiration_time needs to be greater then expiration_time
148 #rc_cache.repo_object.arguments.redis_expiration_time = 3592000
148 #rc_cache.repo_object.arguments.redis_expiration_time = 3592000
149
149
150 #rc_cache.repo_object.arguments.host = localhost
150 #rc_cache.repo_object.arguments.host = localhost
151 #rc_cache.repo_object.arguments.port = 6379
151 #rc_cache.repo_object.arguments.port = 6379
152 #rc_cache.repo_object.arguments.db = 5
152 #rc_cache.repo_object.arguments.db = 5
153 #rc_cache.repo_object.arguments.socket_timeout = 30
153 #rc_cache.repo_object.arguments.socket_timeout = 30
154 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
154 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
155 #rc_cache.repo_object.arguments.distributed_lock = true
155 #rc_cache.repo_object.arguments.distributed_lock = true
156
156
157 ; Statsd client config
158 #statsd.enabled = false
159 #statsd.statsd_host = 0.0.0.0
160 #statsd.statsd_port = 8125
161 #statsd.statsd_prefix =
162 #statsd.statsd_ipv6 = false
157
163
158 ; #####################
164 ; #####################
159 ; LOGGING CONFIGURATION
165 ; LOGGING CONFIGURATION
160 ; #####################
166 ; #####################
161 [loggers]
167 [loggers]
162 keys = root, vcsserver
168 keys = root, vcsserver
163
169
164 [handlers]
170 [handlers]
165 keys = console
171 keys = console
166
172
167 [formatters]
173 [formatters]
168 keys = generic
174 keys = generic
169
175
170 ; #######
176 ; #######
171 ; LOGGERS
177 ; LOGGERS
172 ; #######
178 ; #######
173 [logger_root]
179 [logger_root]
174 level = NOTSET
180 level = NOTSET
175 handlers = console
181 handlers = console
176
182
177 [logger_vcsserver]
183 [logger_vcsserver]
178 level = DEBUG
184 level = DEBUG
179 handlers =
185 handlers =
180 qualname = vcsserver
186 qualname = vcsserver
181 propagate = 1
187 propagate = 1
182
188
183
189
184 ; ########
190 ; ########
185 ; HANDLERS
191 ; HANDLERS
186 ; ########
192 ; ########
187
193
188 [handler_console]
194 [handler_console]
189 class = StreamHandler
195 class = StreamHandler
190 args = (sys.stderr, )
196 args = (sys.stderr, )
191 level = INFO
197 level = INFO
192 formatter = generic
198 formatter = generic
193
199
194 ; ##########
200 ; ##########
195 ; FORMATTERS
201 ; FORMATTERS
196 ; ##########
202 ; ##########
197
203
198 [formatter_generic]
204 [formatter_generic]
199 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
205 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
200 datefmt = %Y-%m-%d %H:%M:%S
206 datefmt = %Y-%m-%d %H:%M:%S
@@ -1,71 +1,83 b''
1 self: super: {
1 self: super: {
2
2
3 # bump GIT version
3 # bump GIT version
4 git = super.lib.overrideDerivation super.git (oldAttrs: {
4 git =
5 name = "git-2.27.0";
5 let
6 gitWithoutPerl = super.git.override {
7 #perlSupport = false;
8 };
9 in
10 super.lib.overrideDerivation gitWithoutPerl (oldAttrs: {
11
12 name = "git-2.30.0";
6 src = self.fetchurl {
13 src = self.fetchurl {
7 url = "https://www.kernel.org/pub/software/scm/git/git-2.27.0.tar.xz";
14 url = "https://www.kernel.org/pub/software/scm/git/git-2.30.0.tar.xz";
8 sha256 = "1ybk39ylvs32lywq7ra4l2kdr5izc80r9461hwfnw8pssxs9gjkk";
15 sha256 = "06ad6dylgla34k9am7d5z8y3rryc8ln3ibq5z0d74rcm20hm0wsm";
9 };
16 };
10
17
11 # patches come from: https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/version-management/git-and-tools/git
18 # patches come from: https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/version-management/git-and-tools/git
12 patches = [
19 patches = [
13 ./patches/git/docbook2texi.patch
20 ./patches/git/docbook2texi.patch
14 ./patches/git/git-sh-i18n.patch
21 ./patches/git/git-sh-i18n.patch
15 ./patches/git/ssh-path.patch
22 ./patches/git/ssh-path.patch
16 ./patches/git/git-send-email-honor-PATH.patch
23 ./patches/git/git-send-email-honor-PATH.patch
17 ./patches/git/installCheck-path.patch
24 ./patches/git/installCheck-path.patch
18 ];
25 ];
19
26
27 #preInstallCheck = oldAttrs.preInstallCheck + ''
28 # disable_test t4129-apply-samemode
29 # disable_test t5324-split-commit-graph
30 #'';
31
20 });
32 });
21
33
22 libgit2rc = super.lib.overrideDerivation super.libgit2 (oldAttrs: {
34 libgit2rc = super.lib.overrideDerivation super.libgit2 (oldAttrs: {
23 name = "libgit2-0.28.2";
35 name = "libgit2-0.28.2";
24 version = "0.28.2";
36 version = "0.28.2";
25
37
26 src = self.fetchFromGitHub {
38 src = self.fetchFromGitHub {
27 owner = "libgit2";
39 owner = "libgit2";
28 repo = "libgit2";
40 repo = "libgit2";
29 rev = "v0.28.2";
41 rev = "v0.28.2";
30 sha256 = "0cm8fvs05rj0baigs2133q5a0sm3pa234y8h6hmwhl2bz9xq3k4b";
42 sha256 = "0cm8fvs05rj0baigs2133q5a0sm3pa234y8h6hmwhl2bz9xq3k4b";
31 };
43 };
32
44
33 cmakeFlags = [ "-DTHREADSAFE=ON" "-DUSE_HTTPS=no"];
45 cmakeFlags = [ "-DTHREADSAFE=ON" "-DUSE_HTTPS=no"];
34
46
35 buildInputs = [
47 buildInputs = [
36 super.zlib
48 super.zlib
37 super.libssh2
49 super.libssh2
38 super.openssl
50 super.openssl
39 super.curl
51 super.curl
40 ];
52 ];
41
53
42
54
43 });
55 });
44
56
45 # Override subversion derivation to
57 # Override subversion derivation to
46 # - activate python bindings
58 # - activate python bindings
47 subversion =
59 subversion =
48 let
60 let
49 subversionWithPython = super.subversion.override {
61 subversionWithPython = super.subversion.override {
50 httpSupport = true;
62 httpSupport = true;
51 pythonBindings = true;
63 pythonBindings = true;
52 python = self.python27Packages.python;
64 python = self.python27Packages.python;
53 };
65 };
54 in
66 in
55 super.lib.overrideDerivation subversionWithPython (oldAttrs: {
67 super.lib.overrideDerivation subversionWithPython (oldAttrs: {
56 name = "subversion-1.13.0";
68 name = "subversion-1.13.0";
57 src = self.fetchurl {
69 src = self.fetchurl {
58 url = "https://archive.apache.org/dist/subversion/subversion-1.13.0.tar.gz";
70 url = "https://archive.apache.org/dist/subversion/subversion-1.13.0.tar.gz";
59 sha256 = "0cb9p7f5hg0l4k32hz8vmvy2r45igchq5sh4m366za5q0c649bfs";
71 sha256 = "0cb9p7f5hg0l4k32hz8vmvy2r45igchq5sh4m366za5q0c649bfs";
60 };
72 };
61
73
62 ## use internal lz4/utf8proc because it is stable and shipped with SVN
74 ## use internal lz4/utf8proc because it is stable and shipped with SVN
63 configureFlags = oldAttrs.configureFlags ++ [
75 configureFlags = oldAttrs.configureFlags ++ [
64 " --with-lz4=internal"
76 " --with-lz4=internal"
65 " --with-utf8proc=internal"
77 " --with-utf8proc=internal"
66 ];
78 ];
67
79
68 });
80 });
69
81
70
82
71 }
83 }
@@ -1,72 +1,78 b''
1 # Overrides for the generated python-packages.nix
1 # Overrides for the generated python-packages.nix
2 #
2 #
3 # This function is intended to be used as an extension to the generated file
3 # This function is intended to be used as an extension to the generated file
4 # python-packages.nix. The main objective is to add needed dependencies of C
4 # python-packages.nix. The main objective is to add needed dependencies of C
5 # libraries and tweak the build instructions where needed.
5 # libraries and tweak the build instructions where needed.
6
6
7 { pkgs
7 { pkgs
8 , basePythonPackages
8 , basePythonPackages
9 }:
9 }:
10
10
11 let
11 let
12 sed = "sed -i";
12 sed = "sed -i";
13
13
14 in
14 in
15
15
16 self: super: {
16 self: super: {
17
17
18 "cffi" = super."cffi".override (attrs: {
18 "cffi" = super."cffi".override (attrs: {
19 buildInputs = [
19 buildInputs = [
20 pkgs.libffi
20 pkgs.libffi
21 ];
21 ];
22 });
22 });
23
23
24 "gevent" = super."gevent".override (attrs: {
24 "gevent" = super."gevent".override (attrs: {
25 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
25 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
26 # NOTE: (marcink) odd requirements from gevent aren't set properly,
26 # NOTE: (marcink) odd requirements from gevent aren't set properly,
27 # thus we need to inject psutil manually
27 # thus we need to inject psutil manually
28 self."psutil"
28 self."psutil"
29 ];
29 ];
30 });
30 });
31
31
32 "hgsubversion" = super."hgsubversion".override (attrs: {
32 "hgsubversion" = super."hgsubversion".override (attrs: {
33 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
33 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
34 pkgs.sqlite
34 pkgs.sqlite
35 #basePythonPackages.sqlite3
35 #basePythonPackages.sqlite3
36 self.mercurial
36 self.mercurial
37 ];
37 ];
38 });
38 });
39
39
40 "subvertpy" = super."subvertpy".override (attrs: {
40 "subvertpy" = super."subvertpy".override (attrs: {
41 SVN_PREFIX = "${pkgs.subversion.dev}";
41 SVN_PREFIX = "${pkgs.subversion.dev}";
42 propagatedBuildInputs = [
42 propagatedBuildInputs = [
43 pkgs.apr.dev
43 pkgs.apr.dev
44 pkgs.aprutil
44 pkgs.aprutil
45 pkgs.subversion
45 pkgs.subversion
46 ];
46 ];
47 });
47 });
48
48
49 "mercurial" = super."mercurial".override (attrs: {
49 "mercurial" = super."mercurial".override (attrs: {
50 propagatedBuildInputs = [
50 propagatedBuildInputs = [
51 # self.python.modules.curses
51 # self.python.modules.curses
52 ];
52 ];
53 });
53 });
54
54
55 "dulwich" = super."dulwich".override (attrs: {
55 "dulwich" = super."dulwich".override (attrs: {
56 patches = [
56 patches = [
57 ./patches/dulwich/handle-dir-refs.patch
57 ./patches/dulwich/handle-dir-refs.patch
58 ];
58 ];
59 });
59 });
60
60
61 "pygit2" = super."pygit2".override (attrs: {
61 "pygit2" = super."pygit2".override (attrs: {
62 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
62 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
63 pkgs.libffi
63 pkgs.libffi
64 pkgs.libgit2rc
64 pkgs.libgit2rc
65 ];
65 ];
66 });
66 });
67
67
68 "pytest" = super."pytest".override (attrs: {
69 patches = [
70 ./patches/pytest/setuptools.patch
71 ];
72 });
73
68 # Avoid that base packages screw up the build process
74 # Avoid that base packages screw up the build process
69 inherit (basePythonPackages)
75 inherit (basePythonPackages)
70 setuptools;
76 setuptools;
71
77
72 }
78 }
@@ -1,700 +1,704 b''
1 # RhodeCode VCSServer provides access to different vcs backends via network.
1 # RhodeCode VCSServer provides access to different vcs backends via network.
2 # Copyright (C) 2014-2020 RhodeCode GmbH
2 # Copyright (C) 2014-2020 RhodeCode GmbH
3 #
3 #
4 # This program is free software; you can redistribute it and/or modify
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
7 # (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation,
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
18 import os
18 import os
19 import sys
19 import sys
20 import base64
20 import base64
21 import locale
21 import locale
22 import logging
22 import logging
23 import uuid
23 import uuid
24 import wsgiref.util
24 import wsgiref.util
25 import traceback
25 import traceback
26 import tempfile
26 import tempfile
27 import resource
28 import psutil
27 import psutil
29 from itertools import chain
28 from itertools import chain
30 from cStringIO import StringIO
29 from cStringIO import StringIO
31
30
32 import simplejson as json
31 import simplejson as json
33 import msgpack
32 import msgpack
34 from pyramid.config import Configurator
33 from pyramid.config import Configurator
35 from pyramid.settings import asbool, aslist
34 from pyramid.settings import asbool, aslist
36 from pyramid.wsgi import wsgiapp
35 from pyramid.wsgi import wsgiapp
37 from pyramid.compat import configparser
36 from pyramid.compat import configparser
38 from pyramid.response import Response
37 from pyramid.response import Response
39
38
40 from vcsserver.utils import safe_int
39 from vcsserver.utils import safe_int
41
40
42 log = logging.getLogger(__name__)
41 log = logging.getLogger(__name__)
43
42
44 # due to Mercurial/glibc2.27 problems we need to detect if locale settings are
43 # due to Mercurial/glibc2.27 problems we need to detect if locale settings are
45 # causing problems and "fix" it in case they do and fallback to LC_ALL = C
44 # causing problems and "fix" it in case they do and fallback to LC_ALL = C
46
45
47 try:
46 try:
48 locale.setlocale(locale.LC_ALL, '')
47 locale.setlocale(locale.LC_ALL, '')
49 except locale.Error as e:
48 except locale.Error as e:
50 log.error(
49 log.error(
51 'LOCALE ERROR: failed to set LC_ALL, fallback to LC_ALL=C, org error: %s', e)
50 'LOCALE ERROR: failed to set LC_ALL, fallback to LC_ALL=C, org error: %s', e)
52 os.environ['LC_ALL'] = 'C'
51 os.environ['LC_ALL'] = 'C'
53
52
54 import vcsserver
53 import vcsserver
55 from vcsserver import remote_wsgi, scm_app, settings, hgpatches
54 from vcsserver import remote_wsgi, scm_app, settings, hgpatches
56 from vcsserver.git_lfs.app import GIT_LFS_CONTENT_TYPE, GIT_LFS_PROTO_PAT
55 from vcsserver.git_lfs.app import GIT_LFS_CONTENT_TYPE, GIT_LFS_PROTO_PAT
57 from vcsserver.echo_stub import remote_wsgi as remote_wsgi_stub
56 from vcsserver.echo_stub import remote_wsgi as remote_wsgi_stub
58 from vcsserver.echo_stub.echo_app import EchoApp
57 from vcsserver.echo_stub.echo_app import EchoApp
59 from vcsserver.exceptions import HTTPRepoLocked, HTTPRepoBranchProtected
58 from vcsserver.exceptions import HTTPRepoLocked, HTTPRepoBranchProtected
60 from vcsserver.lib.exc_tracking import store_exception
59 from vcsserver.lib.exc_tracking import store_exception
61 from vcsserver.server import VcsServer
60 from vcsserver.server import VcsServer
62
61
63 try:
62 try:
64 from vcsserver.git import GitFactory, GitRemote
63 from vcsserver.git import GitFactory, GitRemote
65 except ImportError:
64 except ImportError:
66 GitFactory = None
65 GitFactory = None
67 GitRemote = None
66 GitRemote = None
68
67
69 try:
68 try:
70 from vcsserver.hg import MercurialFactory, HgRemote
69 from vcsserver.hg import MercurialFactory, HgRemote
71 except ImportError:
70 except ImportError:
72 MercurialFactory = None
71 MercurialFactory = None
73 HgRemote = None
72 HgRemote = None
74
73
75 try:
74 try:
76 from vcsserver.svn import SubversionFactory, SvnRemote
75 from vcsserver.svn import SubversionFactory, SvnRemote
77 except ImportError:
76 except ImportError:
78 SubversionFactory = None
77 SubversionFactory = None
79 SvnRemote = None
78 SvnRemote = None
80
79
81
80
82 def _is_request_chunked(environ):
81 def _is_request_chunked(environ):
83 stream = environ.get('HTTP_TRANSFER_ENCODING', '') == 'chunked'
82 stream = environ.get('HTTP_TRANSFER_ENCODING', '') == 'chunked'
84 return stream
83 return stream
85
84
86
85
87 def _int_setting(settings, name, default):
86 def _int_setting(settings, name, default):
88 settings[name] = int(settings.get(name, default))
87 settings[name] = int(settings.get(name, default))
89 return settings[name]
88 return settings[name]
90
89
91
90
92 def _bool_setting(settings, name, default):
91 def _bool_setting(settings, name, default):
93 input_val = settings.get(name, default)
92 input_val = settings.get(name, default)
94 if isinstance(input_val, unicode):
93 if isinstance(input_val, unicode):
95 input_val = input_val.encode('utf8')
94 input_val = input_val.encode('utf8')
96 settings[name] = asbool(input_val)
95 settings[name] = asbool(input_val)
97 return settings[name]
96 return settings[name]
98
97
99
98
100 def _list_setting(settings, name, default):
99 def _list_setting(settings, name, default):
101 raw_value = settings.get(name, default)
100 raw_value = settings.get(name, default)
102
101
103 # Otherwise we assume it uses pyramids space/newline separation.
102 # Otherwise we assume it uses pyramids space/newline separation.
104 settings[name] = aslist(raw_value)
103 settings[name] = aslist(raw_value)
105 return settings[name]
104 return settings[name]
106
105
107
106
108 def _string_setting(settings, name, default, lower=True, default_when_empty=False):
107 def _string_setting(settings, name, default, lower=True, default_when_empty=False):
109 value = settings.get(name, default)
108 value = settings.get(name, default)
110
109
111 if default_when_empty and not value:
110 if default_when_empty and not value:
112 # use default value when value is empty
111 # use default value when value is empty
113 value = default
112 value = default
114
113
115 if lower:
114 if lower:
116 value = value.lower()
115 value = value.lower()
117 settings[name] = value
116 settings[name] = value
118 return settings[name]
117 return settings[name]
119
118
120
119
121 def log_max_fd():
120 def log_max_fd():
122 try:
121 try:
123 maxfd = psutil.Process().rlimit(psutil.RLIMIT_NOFILE)[1]
122 maxfd = psutil.Process().rlimit(psutil.RLIMIT_NOFILE)[1]
124 log.info('Max file descriptors value: %s', maxfd)
123 log.info('Max file descriptors value: %s', maxfd)
125 except Exception:
124 except Exception:
126 pass
125 pass
127
126
128
127
129 class VCS(object):
128 class VCS(object):
130 def __init__(self, locale_conf=None, cache_config=None):
129 def __init__(self, locale_conf=None, cache_config=None):
131 self.locale = locale_conf
130 self.locale = locale_conf
132 self.cache_config = cache_config
131 self.cache_config = cache_config
133 self._configure_locale()
132 self._configure_locale()
134
133
135 log_max_fd()
134 log_max_fd()
136
135
137 if GitFactory and GitRemote:
136 if GitFactory and GitRemote:
138 git_factory = GitFactory()
137 git_factory = GitFactory()
139 self._git_remote = GitRemote(git_factory)
138 self._git_remote = GitRemote(git_factory)
140 else:
139 else:
141 log.info("Git client import failed")
140 log.info("Git client import failed")
142
141
143 if MercurialFactory and HgRemote:
142 if MercurialFactory and HgRemote:
144 hg_factory = MercurialFactory()
143 hg_factory = MercurialFactory()
145 self._hg_remote = HgRemote(hg_factory)
144 self._hg_remote = HgRemote(hg_factory)
146 else:
145 else:
147 log.info("Mercurial client import failed")
146 log.info("Mercurial client import failed")
148
147
149 if SubversionFactory and SvnRemote:
148 if SubversionFactory and SvnRemote:
150 svn_factory = SubversionFactory()
149 svn_factory = SubversionFactory()
151
150
152 # hg factory is used for svn url validation
151 # hg factory is used for svn url validation
153 hg_factory = MercurialFactory()
152 hg_factory = MercurialFactory()
154 self._svn_remote = SvnRemote(svn_factory, hg_factory=hg_factory)
153 self._svn_remote = SvnRemote(svn_factory, hg_factory=hg_factory)
155 else:
154 else:
156 log.info("Subversion client import failed")
155 log.info("Subversion client import failed")
157
156
158 self._vcsserver = VcsServer()
157 self._vcsserver = VcsServer()
159
158
160 def _configure_locale(self):
159 def _configure_locale(self):
161 if self.locale:
160 if self.locale:
162 log.info('Settings locale: `LC_ALL` to %s', self.locale)
161 log.info('Settings locale: `LC_ALL` to %s', self.locale)
163 else:
162 else:
164 log.info(
163 log.info(
165 'Configuring locale subsystem based on environment variables')
164 'Configuring locale subsystem based on environment variables')
166 try:
165 try:
167 # If self.locale is the empty string, then the locale
166 # If self.locale is the empty string, then the locale
168 # module will use the environment variables. See the
167 # module will use the environment variables. See the
169 # documentation of the package `locale`.
168 # documentation of the package `locale`.
170 locale.setlocale(locale.LC_ALL, self.locale)
169 locale.setlocale(locale.LC_ALL, self.locale)
171
170
172 language_code, encoding = locale.getlocale()
171 language_code, encoding = locale.getlocale()
173 log.info(
172 log.info(
174 'Locale set to language code "%s" with encoding "%s".',
173 'Locale set to language code "%s" with encoding "%s".',
175 language_code, encoding)
174 language_code, encoding)
176 except locale.Error:
175 except locale.Error:
177 log.exception(
176 log.exception(
178 'Cannot set locale, not configuring the locale system')
177 'Cannot set locale, not configuring the locale system')
179
178
180
179
181 class WsgiProxy(object):
180 class WsgiProxy(object):
182 def __init__(self, wsgi):
181 def __init__(self, wsgi):
183 self.wsgi = wsgi
182 self.wsgi = wsgi
184
183
185 def __call__(self, environ, start_response):
184 def __call__(self, environ, start_response):
186 input_data = environ['wsgi.input'].read()
185 input_data = environ['wsgi.input'].read()
187 input_data = msgpack.unpackb(input_data)
186 input_data = msgpack.unpackb(input_data)
188
187
189 error = None
188 error = None
190 try:
189 try:
191 data, status, headers = self.wsgi.handle(
190 data, status, headers = self.wsgi.handle(
192 input_data['environment'], input_data['input_data'],
191 input_data['environment'], input_data['input_data'],
193 *input_data['args'], **input_data['kwargs'])
192 *input_data['args'], **input_data['kwargs'])
194 except Exception as e:
193 except Exception as e:
195 data, status, headers = [], None, None
194 data, status, headers = [], None, None
196 error = {
195 error = {
197 'message': str(e),
196 'message': str(e),
198 '_vcs_kind': getattr(e, '_vcs_kind', None)
197 '_vcs_kind': getattr(e, '_vcs_kind', None)
199 }
198 }
200
199
201 start_response(200, {})
200 start_response(200, {})
202 return self._iterator(error, status, headers, data)
201 return self._iterator(error, status, headers, data)
203
202
204 def _iterator(self, error, status, headers, data):
203 def _iterator(self, error, status, headers, data):
205 initial_data = [
204 initial_data = [
206 error,
205 error,
207 status,
206 status,
208 headers,
207 headers,
209 ]
208 ]
210
209
211 for d in chain(initial_data, data):
210 for d in chain(initial_data, data):
212 yield msgpack.packb(d)
211 yield msgpack.packb(d)
213
212
214
213
215 def not_found(request):
214 def not_found(request):
216 return {'status': '404 NOT FOUND'}
215 return {'status': '404 NOT FOUND'}
217
216
218
217
219 class VCSViewPredicate(object):
218 class VCSViewPredicate(object):
220 def __init__(self, val, config):
219 def __init__(self, val, config):
221 self.remotes = val
220 self.remotes = val
222
221
223 def text(self):
222 def text(self):
224 return 'vcs view method = %s' % (self.remotes.keys(),)
223 return 'vcs view method = %s' % (self.remotes.keys(),)
225
224
226 phash = text
225 phash = text
227
226
228 def __call__(self, context, request):
227 def __call__(self, context, request):
229 """
228 """
230 View predicate that returns true if given backend is supported by
229 View predicate that returns true if given backend is supported by
231 defined remotes.
230 defined remotes.
232 """
231 """
233 backend = request.matchdict.get('backend')
232 backend = request.matchdict.get('backend')
234 return backend in self.remotes
233 return backend in self.remotes
235
234
236
235
237 class HTTPApplication(object):
236 class HTTPApplication(object):
238 ALLOWED_EXCEPTIONS = ('KeyError', 'URLError')
237 ALLOWED_EXCEPTIONS = ('KeyError', 'URLError')
239
238
240 remote_wsgi = remote_wsgi
239 remote_wsgi = remote_wsgi
241 _use_echo_app = False
240 _use_echo_app = False
242
241
243 def __init__(self, settings=None, global_config=None):
242 def __init__(self, settings=None, global_config=None):
244 self._sanitize_settings_and_apply_defaults(settings)
243 self._sanitize_settings_and_apply_defaults(settings)
245
244
246 self.config = Configurator(settings=settings)
245 self.config = Configurator(settings=settings)
247 self.global_config = global_config
246 self.global_config = global_config
248 self.config.include('vcsserver.lib.rc_cache')
247 self.config.include('vcsserver.lib.rc_cache')
249
248
250 settings_locale = settings.get('locale', '') or 'en_US.UTF-8'
249 settings_locale = settings.get('locale', '') or 'en_US.UTF-8'
251 vcs = VCS(locale_conf=settings_locale, cache_config=settings)
250 vcs = VCS(locale_conf=settings_locale, cache_config=settings)
252 self._remotes = {
251 self._remotes = {
253 'hg': vcs._hg_remote,
252 'hg': vcs._hg_remote,
254 'git': vcs._git_remote,
253 'git': vcs._git_remote,
255 'svn': vcs._svn_remote,
254 'svn': vcs._svn_remote,
256 'server': vcs._vcsserver,
255 'server': vcs._vcsserver,
257 }
256 }
258 if settings.get('dev.use_echo_app', 'false').lower() == 'true':
257 if settings.get('dev.use_echo_app', 'false').lower() == 'true':
259 self._use_echo_app = True
258 self._use_echo_app = True
260 log.warning("Using EchoApp for VCS operations.")
259 log.warning("Using EchoApp for VCS operations.")
261 self.remote_wsgi = remote_wsgi_stub
260 self.remote_wsgi = remote_wsgi_stub
262
261
263 self._configure_settings(global_config, settings)
262 self._configure_settings(global_config, settings)
263
264 self._configure()
264 self._configure()
265
265
266 def _configure_settings(self, global_config, app_settings):
266 def _configure_settings(self, global_config, app_settings):
267 """
267 """
268 Configure the settings module.
268 Configure the settings module.
269 """
269 """
270 settings_merged = global_config.copy()
270 settings_merged = global_config.copy()
271 settings_merged.update(app_settings)
271 settings_merged.update(app_settings)
272
272
273 git_path = app_settings.get('git_path', None)
273 git_path = app_settings.get('git_path', None)
274 if git_path:
274 if git_path:
275 settings.GIT_EXECUTABLE = git_path
275 settings.GIT_EXECUTABLE = git_path
276 binary_dir = app_settings.get('core.binary_dir', None)
276 binary_dir = app_settings.get('core.binary_dir', None)
277 if binary_dir:
277 if binary_dir:
278 settings.BINARY_DIR = binary_dir
278 settings.BINARY_DIR = binary_dir
279
279
280 # Store the settings to make them available to other modules.
280 # Store the settings to make them available to other modules.
281 vcsserver.PYRAMID_SETTINGS = settings_merged
281 vcsserver.PYRAMID_SETTINGS = settings_merged
282 vcsserver.CONFIG = settings_merged
282 vcsserver.CONFIG = settings_merged
283
283
284 def _sanitize_settings_and_apply_defaults(self, settings):
284 def _sanitize_settings_and_apply_defaults(self, settings):
285 temp_store = tempfile.gettempdir()
285 temp_store = tempfile.gettempdir()
286 default_cache_dir = os.path.join(temp_store, 'rc_cache')
286 default_cache_dir = os.path.join(temp_store, 'rc_cache')
287
287
288 # save default, cache dir, and use it for all backends later.
288 # save default, cache dir, and use it for all backends later.
289 default_cache_dir = _string_setting(
289 default_cache_dir = _string_setting(
290 settings,
290 settings,
291 'cache_dir',
291 'cache_dir',
292 default_cache_dir, lower=False, default_when_empty=True)
292 default_cache_dir, lower=False, default_when_empty=True)
293
293
294 # ensure we have our dir created
294 # ensure we have our dir created
295 if not os.path.isdir(default_cache_dir):
295 if not os.path.isdir(default_cache_dir):
296 os.makedirs(default_cache_dir, mode=0o755)
296 os.makedirs(default_cache_dir, mode=0o755)
297
297
298 # exception store cache
298 # exception store cache
299 _string_setting(
299 _string_setting(
300 settings,
300 settings,
301 'exception_tracker.store_path',
301 'exception_tracker.store_path',
302 temp_store, lower=False, default_when_empty=True)
302 temp_store, lower=False, default_when_empty=True)
303
303
304 # repo_object cache
304 # repo_object cache
305 _string_setting(
305 _string_setting(
306 settings,
306 settings,
307 'rc_cache.repo_object.backend',
307 'rc_cache.repo_object.backend',
308 'dogpile.cache.rc.file_namespace', lower=False)
308 'dogpile.cache.rc.file_namespace', lower=False)
309 _int_setting(
309 _int_setting(
310 settings,
310 settings,
311 'rc_cache.repo_object.expiration_time',
311 'rc_cache.repo_object.expiration_time',
312 30 * 24 * 60 * 60)
312 30 * 24 * 60 * 60)
313 _string_setting(
313 _string_setting(
314 settings,
314 settings,
315 'rc_cache.repo_object.arguments.filename',
315 'rc_cache.repo_object.arguments.filename',
316 os.path.join(default_cache_dir, 'vcsserver_cache_1'), lower=False)
316 os.path.join(default_cache_dir, 'vcsserver_cache_1'), lower=False)
317
317
318 def _configure(self):
318 def _configure(self):
319 self.config.add_renderer(name='msgpack', factory=self._msgpack_renderer_factory)
319 self.config.add_renderer(name='msgpack', factory=self._msgpack_renderer_factory)
320
320
321 self.config.add_route('service', '/_service')
321 self.config.add_route('service', '/_service')
322 self.config.add_route('status', '/status')
322 self.config.add_route('status', '/status')
323 self.config.add_route('hg_proxy', '/proxy/hg')
323 self.config.add_route('hg_proxy', '/proxy/hg')
324 self.config.add_route('git_proxy', '/proxy/git')
324 self.config.add_route('git_proxy', '/proxy/git')
325
325
326 # rpc methods
326 # rpc methods
327 self.config.add_route('vcs', '/{backend}')
327 self.config.add_route('vcs', '/{backend}')
328
328
329 # streaming rpc remote methods
329 # streaming rpc remote methods
330 self.config.add_route('vcs_stream', '/{backend}/stream')
330 self.config.add_route('vcs_stream', '/{backend}/stream')
331
331
332 # vcs operations clone/push as streaming
332 # vcs operations clone/push as streaming
333 self.config.add_route('stream_git', '/stream/git/*repo_name')
333 self.config.add_route('stream_git', '/stream/git/*repo_name')
334 self.config.add_route('stream_hg', '/stream/hg/*repo_name')
334 self.config.add_route('stream_hg', '/stream/hg/*repo_name')
335
335
336 self.config.add_view(self.status_view, route_name='status', renderer='json')
336 self.config.add_view(self.status_view, route_name='status', renderer='json')
337 self.config.add_view(self.service_view, route_name='service', renderer='msgpack')
337 self.config.add_view(self.service_view, route_name='service', renderer='msgpack')
338
338
339 self.config.add_view(self.hg_proxy(), route_name='hg_proxy')
339 self.config.add_view(self.hg_proxy(), route_name='hg_proxy')
340 self.config.add_view(self.git_proxy(), route_name='git_proxy')
340 self.config.add_view(self.git_proxy(), route_name='git_proxy')
341 self.config.add_view(self.vcs_view, route_name='vcs', renderer='msgpack',
341 self.config.add_view(self.vcs_view, route_name='vcs', renderer='msgpack',
342 vcs_view=self._remotes)
342 vcs_view=self._remotes)
343 self.config.add_view(self.vcs_stream_view, route_name='vcs_stream',
343 self.config.add_view(self.vcs_stream_view, route_name='vcs_stream',
344 vcs_view=self._remotes)
344 vcs_view=self._remotes)
345
345
346 self.config.add_view(self.hg_stream(), route_name='stream_hg')
346 self.config.add_view(self.hg_stream(), route_name='stream_hg')
347 self.config.add_view(self.git_stream(), route_name='stream_git')
347 self.config.add_view(self.git_stream(), route_name='stream_git')
348
348
349 self.config.add_view_predicate('vcs_view', VCSViewPredicate)
349 self.config.add_view_predicate('vcs_view', VCSViewPredicate)
350
350
351 self.config.add_notfound_view(not_found, renderer='json')
351 self.config.add_notfound_view(not_found, renderer='json')
352
352
353 self.config.add_view(self.handle_vcs_exception, context=Exception)
353 self.config.add_view(self.handle_vcs_exception, context=Exception)
354
354
355 self.config.add_tween(
355 self.config.add_tween(
356 'vcsserver.tweens.request_wrapper.RequestWrapperTween',
356 'vcsserver.tweens.request_wrapper.RequestWrapperTween',
357 )
357 )
358 self.config.add_request_method(
358 self.config.add_request_method(
359 'vcsserver.lib.request_counter.get_request_counter',
359 'vcsserver.lib.request_counter.get_request_counter',
360 'request_count')
360 'request_count')
361
361
362 self.config.add_request_method(
363 'vcsserver.lib._vendor.statsd.get_statsd_client',
364 'statsd', reify=True)
365
362 def wsgi_app(self):
366 def wsgi_app(self):
363 return self.config.make_wsgi_app()
367 return self.config.make_wsgi_app()
364
368
365 def _vcs_view_params(self, request):
369 def _vcs_view_params(self, request):
366 remote = self._remotes[request.matchdict['backend']]
370 remote = self._remotes[request.matchdict['backend']]
367 payload = msgpack.unpackb(request.body, use_list=True)
371 payload = msgpack.unpackb(request.body, use_list=True)
368 method = payload.get('method')
372 method = payload.get('method')
369 params = payload['params']
373 params = payload['params']
370 wire = params.get('wire')
374 wire = params.get('wire')
371 args = params.get('args')
375 args = params.get('args')
372 kwargs = params.get('kwargs')
376 kwargs = params.get('kwargs')
373 context_uid = None
377 context_uid = None
374
378
375 if wire:
379 if wire:
376 try:
380 try:
377 wire['context'] = context_uid = uuid.UUID(wire['context'])
381 wire['context'] = context_uid = uuid.UUID(wire['context'])
378 except KeyError:
382 except KeyError:
379 pass
383 pass
380 args.insert(0, wire)
384 args.insert(0, wire)
381 repo_state_uid = wire.get('repo_state_uid') if wire else None
385 repo_state_uid = wire.get('repo_state_uid') if wire else None
382
386
383 # NOTE(marcink): trading complexity for slight performance
387 # NOTE(marcink): trading complexity for slight performance
384 if log.isEnabledFor(logging.DEBUG):
388 if log.isEnabledFor(logging.DEBUG):
385 no_args_methods = [
389 no_args_methods = [
386
390
387 ]
391 ]
388 if method in no_args_methods:
392 if method in no_args_methods:
389 call_args = ''
393 call_args = ''
390 else:
394 else:
391 call_args = args[1:]
395 call_args = args[1:]
392
396
393 log.debug('method requested:%s with args:%s kwargs:%s context_uid: %s, repo_state_uid:%s',
397 log.debug('method requested:%s with args:%s kwargs:%s context_uid: %s, repo_state_uid:%s',
394 method, call_args, kwargs, context_uid, repo_state_uid)
398 method, call_args, kwargs, context_uid, repo_state_uid)
395
399
396 return payload, remote, method, args, kwargs
400 return payload, remote, method, args, kwargs
397
401
398 def vcs_view(self, request):
402 def vcs_view(self, request):
399
403
400 payload, remote, method, args, kwargs = self._vcs_view_params(request)
404 payload, remote, method, args, kwargs = self._vcs_view_params(request)
401 payload_id = payload.get('id')
405 payload_id = payload.get('id')
402
406
403 try:
407 try:
404 resp = getattr(remote, method)(*args, **kwargs)
408 resp = getattr(remote, method)(*args, **kwargs)
405 except Exception as e:
409 except Exception as e:
406 exc_info = list(sys.exc_info())
410 exc_info = list(sys.exc_info())
407 exc_type, exc_value, exc_traceback = exc_info
411 exc_type, exc_value, exc_traceback = exc_info
408
412
409 org_exc = getattr(e, '_org_exc', None)
413 org_exc = getattr(e, '_org_exc', None)
410 org_exc_name = None
414 org_exc_name = None
411 org_exc_tb = ''
415 org_exc_tb = ''
412 if org_exc:
416 if org_exc:
413 org_exc_name = org_exc.__class__.__name__
417 org_exc_name = org_exc.__class__.__name__
414 org_exc_tb = getattr(e, '_org_exc_tb', '')
418 org_exc_tb = getattr(e, '_org_exc_tb', '')
415 # replace our "faked" exception with our org
419 # replace our "faked" exception with our org
416 exc_info[0] = org_exc.__class__
420 exc_info[0] = org_exc.__class__
417 exc_info[1] = org_exc
421 exc_info[1] = org_exc
418
422
419 should_store_exc = True
423 should_store_exc = True
420 if org_exc:
424 if org_exc:
421 def get_exc_fqn(_exc_obj):
425 def get_exc_fqn(_exc_obj):
422 module_name = getattr(org_exc.__class__, '__module__', 'UNKNOWN')
426 module_name = getattr(org_exc.__class__, '__module__', 'UNKNOWN')
423 return module_name + '.' + org_exc_name
427 return module_name + '.' + org_exc_name
424
428
425 exc_fqn = get_exc_fqn(org_exc)
429 exc_fqn = get_exc_fqn(org_exc)
426
430
427 if exc_fqn in ['mercurial.error.RepoLookupError',
431 if exc_fqn in ['mercurial.error.RepoLookupError',
428 'vcsserver.exceptions.RefNotFoundException']:
432 'vcsserver.exceptions.RefNotFoundException']:
429 should_store_exc = False
433 should_store_exc = False
430
434
431 if should_store_exc:
435 if should_store_exc:
432 store_exception(id(exc_info), exc_info)
436 store_exception(id(exc_info), exc_info)
433
437
434 tb_info = ''.join(
438 tb_info = ''.join(
435 traceback.format_exception(exc_type, exc_value, exc_traceback))
439 traceback.format_exception(exc_type, exc_value, exc_traceback))
436
440
437 type_ = e.__class__.__name__
441 type_ = e.__class__.__name__
438 if type_ not in self.ALLOWED_EXCEPTIONS:
442 if type_ not in self.ALLOWED_EXCEPTIONS:
439 type_ = None
443 type_ = None
440
444
441 resp = {
445 resp = {
442 'id': payload_id,
446 'id': payload_id,
443 'error': {
447 'error': {
444 'message': e.message,
448 'message': e.message,
445 'traceback': tb_info,
449 'traceback': tb_info,
446 'org_exc': org_exc_name,
450 'org_exc': org_exc_name,
447 'org_exc_tb': org_exc_tb,
451 'org_exc_tb': org_exc_tb,
448 'type': type_
452 'type': type_
449 }
453 }
450 }
454 }
451 try:
455 try:
452 resp['error']['_vcs_kind'] = getattr(e, '_vcs_kind', None)
456 resp['error']['_vcs_kind'] = getattr(e, '_vcs_kind', None)
453 except AttributeError:
457 except AttributeError:
454 pass
458 pass
455 else:
459 else:
456 resp = {
460 resp = {
457 'id': payload_id,
461 'id': payload_id,
458 'result': resp
462 'result': resp
459 }
463 }
460
464
461 return resp
465 return resp
462
466
463 def vcs_stream_view(self, request):
467 def vcs_stream_view(self, request):
464 payload, remote, method, args, kwargs = self._vcs_view_params(request)
468 payload, remote, method, args, kwargs = self._vcs_view_params(request)
465 # this method has a stream: marker we remove it here
469 # this method has a stream: marker we remove it here
466 method = method.split('stream:')[-1]
470 method = method.split('stream:')[-1]
467 chunk_size = safe_int(payload.get('chunk_size')) or 4096
471 chunk_size = safe_int(payload.get('chunk_size')) or 4096
468
472
469 try:
473 try:
470 resp = getattr(remote, method)(*args, **kwargs)
474 resp = getattr(remote, method)(*args, **kwargs)
471 except Exception as e:
475 except Exception as e:
472 raise
476 raise
473
477
474 def get_chunked_data(method_resp):
478 def get_chunked_data(method_resp):
475 stream = StringIO(method_resp)
479 stream = StringIO(method_resp)
476 while 1:
480 while 1:
477 chunk = stream.read(chunk_size)
481 chunk = stream.read(chunk_size)
478 if not chunk:
482 if not chunk:
479 break
483 break
480 yield chunk
484 yield chunk
481
485
482 response = Response(app_iter=get_chunked_data(resp))
486 response = Response(app_iter=get_chunked_data(resp))
483 response.content_type = 'application/octet-stream'
487 response.content_type = 'application/octet-stream'
484
488
485 return response
489 return response
486
490
487 def status_view(self, request):
491 def status_view(self, request):
488 import vcsserver
492 import vcsserver
489 return {'status': 'OK', 'vcsserver_version': vcsserver.__version__,
493 return {'status': 'OK', 'vcsserver_version': vcsserver.__version__,
490 'pid': os.getpid()}
494 'pid': os.getpid()}
491
495
492 def service_view(self, request):
496 def service_view(self, request):
493 import vcsserver
497 import vcsserver
494
498
495 payload = msgpack.unpackb(request.body, use_list=True)
499 payload = msgpack.unpackb(request.body, use_list=True)
496 server_config, app_config = {}, {}
500 server_config, app_config = {}, {}
497
501
498 try:
502 try:
499 path = self.global_config['__file__']
503 path = self.global_config['__file__']
500 config = configparser.RawConfigParser()
504 config = configparser.RawConfigParser()
501
505
502 config.read(path)
506 config.read(path)
503
507
504 if config.has_section('server:main'):
508 if config.has_section('server:main'):
505 server_config = dict(config.items('server:main'))
509 server_config = dict(config.items('server:main'))
506 if config.has_section('app:main'):
510 if config.has_section('app:main'):
507 app_config = dict(config.items('app:main'))
511 app_config = dict(config.items('app:main'))
508
512
509 except Exception:
513 except Exception:
510 log.exception('Failed to read .ini file for display')
514 log.exception('Failed to read .ini file for display')
511
515
512 environ = os.environ.items()
516 environ = os.environ.items()
513
517
514 resp = {
518 resp = {
515 'id': payload.get('id'),
519 'id': payload.get('id'),
516 'result': dict(
520 'result': dict(
517 version=vcsserver.__version__,
521 version=vcsserver.__version__,
518 config=server_config,
522 config=server_config,
519 app_config=app_config,
523 app_config=app_config,
520 environ=environ,
524 environ=environ,
521 payload=payload,
525 payload=payload,
522 )
526 )
523 }
527 }
524 return resp
528 return resp
525
529
526 def _msgpack_renderer_factory(self, info):
530 def _msgpack_renderer_factory(self, info):
527 def _render(value, system):
531 def _render(value, system):
528 request = system.get('request')
532 request = system.get('request')
529 if request is not None:
533 if request is not None:
530 response = request.response
534 response = request.response
531 ct = response.content_type
535 ct = response.content_type
532 if ct == response.default_content_type:
536 if ct == response.default_content_type:
533 response.content_type = 'application/x-msgpack'
537 response.content_type = 'application/x-msgpack'
534 return msgpack.packb(value)
538 return msgpack.packb(value)
535 return _render
539 return _render
536
540
537 def set_env_from_config(self, environ, config):
541 def set_env_from_config(self, environ, config):
538 dict_conf = {}
542 dict_conf = {}
539 try:
543 try:
540 for elem in config:
544 for elem in config:
541 if elem[0] == 'rhodecode':
545 if elem[0] == 'rhodecode':
542 dict_conf = json.loads(elem[2])
546 dict_conf = json.loads(elem[2])
543 break
547 break
544 except Exception:
548 except Exception:
545 log.exception('Failed to fetch SCM CONFIG')
549 log.exception('Failed to fetch SCM CONFIG')
546 return
550 return
547
551
548 username = dict_conf.get('username')
552 username = dict_conf.get('username')
549 if username:
553 if username:
550 environ['REMOTE_USER'] = username
554 environ['REMOTE_USER'] = username
551 # mercurial specific, some extension api rely on this
555 # mercurial specific, some extension api rely on this
552 environ['HGUSER'] = username
556 environ['HGUSER'] = username
553
557
554 ip = dict_conf.get('ip')
558 ip = dict_conf.get('ip')
555 if ip:
559 if ip:
556 environ['REMOTE_HOST'] = ip
560 environ['REMOTE_HOST'] = ip
557
561
558 if _is_request_chunked(environ):
562 if _is_request_chunked(environ):
559 # set the compatibility flag for webob
563 # set the compatibility flag for webob
560 environ['wsgi.input_terminated'] = True
564 environ['wsgi.input_terminated'] = True
561
565
562 def hg_proxy(self):
566 def hg_proxy(self):
563 @wsgiapp
567 @wsgiapp
564 def _hg_proxy(environ, start_response):
568 def _hg_proxy(environ, start_response):
565 app = WsgiProxy(self.remote_wsgi.HgRemoteWsgi())
569 app = WsgiProxy(self.remote_wsgi.HgRemoteWsgi())
566 return app(environ, start_response)
570 return app(environ, start_response)
567 return _hg_proxy
571 return _hg_proxy
568
572
569 def git_proxy(self):
573 def git_proxy(self):
570 @wsgiapp
574 @wsgiapp
571 def _git_proxy(environ, start_response):
575 def _git_proxy(environ, start_response):
572 app = WsgiProxy(self.remote_wsgi.GitRemoteWsgi())
576 app = WsgiProxy(self.remote_wsgi.GitRemoteWsgi())
573 return app(environ, start_response)
577 return app(environ, start_response)
574 return _git_proxy
578 return _git_proxy
575
579
576 def hg_stream(self):
580 def hg_stream(self):
577 if self._use_echo_app:
581 if self._use_echo_app:
578 @wsgiapp
582 @wsgiapp
579 def _hg_stream(environ, start_response):
583 def _hg_stream(environ, start_response):
580 app = EchoApp('fake_path', 'fake_name', None)
584 app = EchoApp('fake_path', 'fake_name', None)
581 return app(environ, start_response)
585 return app(environ, start_response)
582 return _hg_stream
586 return _hg_stream
583 else:
587 else:
584 @wsgiapp
588 @wsgiapp
585 def _hg_stream(environ, start_response):
589 def _hg_stream(environ, start_response):
586 log.debug('http-app: handling hg stream')
590 log.debug('http-app: handling hg stream')
587 repo_path = environ['HTTP_X_RC_REPO_PATH']
591 repo_path = environ['HTTP_X_RC_REPO_PATH']
588 repo_name = environ['HTTP_X_RC_REPO_NAME']
592 repo_name = environ['HTTP_X_RC_REPO_NAME']
589 packed_config = base64.b64decode(
593 packed_config = base64.b64decode(
590 environ['HTTP_X_RC_REPO_CONFIG'])
594 environ['HTTP_X_RC_REPO_CONFIG'])
591 config = msgpack.unpackb(packed_config)
595 config = msgpack.unpackb(packed_config)
592 app = scm_app.create_hg_wsgi_app(
596 app = scm_app.create_hg_wsgi_app(
593 repo_path, repo_name, config)
597 repo_path, repo_name, config)
594
598
595 # Consistent path information for hgweb
599 # Consistent path information for hgweb
596 environ['PATH_INFO'] = environ['HTTP_X_RC_PATH_INFO']
600 environ['PATH_INFO'] = environ['HTTP_X_RC_PATH_INFO']
597 environ['REPO_NAME'] = repo_name
601 environ['REPO_NAME'] = repo_name
598 self.set_env_from_config(environ, config)
602 self.set_env_from_config(environ, config)
599
603
600 log.debug('http-app: starting app handler '
604 log.debug('http-app: starting app handler '
601 'with %s and process request', app)
605 'with %s and process request', app)
602 return app(environ, ResponseFilter(start_response))
606 return app(environ, ResponseFilter(start_response))
603 return _hg_stream
607 return _hg_stream
604
608
605 def git_stream(self):
609 def git_stream(self):
606 if self._use_echo_app:
610 if self._use_echo_app:
607 @wsgiapp
611 @wsgiapp
608 def _git_stream(environ, start_response):
612 def _git_stream(environ, start_response):
609 app = EchoApp('fake_path', 'fake_name', None)
613 app = EchoApp('fake_path', 'fake_name', None)
610 return app(environ, start_response)
614 return app(environ, start_response)
611 return _git_stream
615 return _git_stream
612 else:
616 else:
613 @wsgiapp
617 @wsgiapp
614 def _git_stream(environ, start_response):
618 def _git_stream(environ, start_response):
615 log.debug('http-app: handling git stream')
619 log.debug('http-app: handling git stream')
616 repo_path = environ['HTTP_X_RC_REPO_PATH']
620 repo_path = environ['HTTP_X_RC_REPO_PATH']
617 repo_name = environ['HTTP_X_RC_REPO_NAME']
621 repo_name = environ['HTTP_X_RC_REPO_NAME']
618 packed_config = base64.b64decode(
622 packed_config = base64.b64decode(
619 environ['HTTP_X_RC_REPO_CONFIG'])
623 environ['HTTP_X_RC_REPO_CONFIG'])
620 config = msgpack.unpackb(packed_config)
624 config = msgpack.unpackb(packed_config)
621
625
622 environ['PATH_INFO'] = environ['HTTP_X_RC_PATH_INFO']
626 environ['PATH_INFO'] = environ['HTTP_X_RC_PATH_INFO']
623 self.set_env_from_config(environ, config)
627 self.set_env_from_config(environ, config)
624
628
625 content_type = environ.get('CONTENT_TYPE', '')
629 content_type = environ.get('CONTENT_TYPE', '')
626
630
627 path = environ['PATH_INFO']
631 path = environ['PATH_INFO']
628 is_lfs_request = GIT_LFS_CONTENT_TYPE in content_type
632 is_lfs_request = GIT_LFS_CONTENT_TYPE in content_type
629 log.debug(
633 log.debug(
630 'LFS: Detecting if request `%s` is LFS server path based '
634 'LFS: Detecting if request `%s` is LFS server path based '
631 'on content type:`%s`, is_lfs:%s',
635 'on content type:`%s`, is_lfs:%s',
632 path, content_type, is_lfs_request)
636 path, content_type, is_lfs_request)
633
637
634 if not is_lfs_request:
638 if not is_lfs_request:
635 # fallback detection by path
639 # fallback detection by path
636 if GIT_LFS_PROTO_PAT.match(path):
640 if GIT_LFS_PROTO_PAT.match(path):
637 is_lfs_request = True
641 is_lfs_request = True
638 log.debug(
642 log.debug(
639 'LFS: fallback detection by path of: `%s`, is_lfs:%s',
643 'LFS: fallback detection by path of: `%s`, is_lfs:%s',
640 path, is_lfs_request)
644 path, is_lfs_request)
641
645
642 if is_lfs_request:
646 if is_lfs_request:
643 app = scm_app.create_git_lfs_wsgi_app(
647 app = scm_app.create_git_lfs_wsgi_app(
644 repo_path, repo_name, config)
648 repo_path, repo_name, config)
645 else:
649 else:
646 app = scm_app.create_git_wsgi_app(
650 app = scm_app.create_git_wsgi_app(
647 repo_path, repo_name, config)
651 repo_path, repo_name, config)
648
652
649 log.debug('http-app: starting app handler '
653 log.debug('http-app: starting app handler '
650 'with %s and process request', app)
654 'with %s and process request', app)
651
655
652 return app(environ, start_response)
656 return app(environ, start_response)
653
657
654 return _git_stream
658 return _git_stream
655
659
656 def handle_vcs_exception(self, exception, request):
660 def handle_vcs_exception(self, exception, request):
657 _vcs_kind = getattr(exception, '_vcs_kind', '')
661 _vcs_kind = getattr(exception, '_vcs_kind', '')
658 if _vcs_kind == 'repo_locked':
662 if _vcs_kind == 'repo_locked':
659 # Get custom repo-locked status code if present.
663 # Get custom repo-locked status code if present.
660 status_code = request.headers.get('X-RC-Locked-Status-Code')
664 status_code = request.headers.get('X-RC-Locked-Status-Code')
661 return HTTPRepoLocked(
665 return HTTPRepoLocked(
662 title=exception.message, status_code=status_code)
666 title=exception.message, status_code=status_code)
663
667
664 elif _vcs_kind == 'repo_branch_protected':
668 elif _vcs_kind == 'repo_branch_protected':
665 # Get custom repo-branch-protected status code if present.
669 # Get custom repo-branch-protected status code if present.
666 return HTTPRepoBranchProtected(title=exception.message)
670 return HTTPRepoBranchProtected(title=exception.message)
667
671
668 exc_info = request.exc_info
672 exc_info = request.exc_info
669 store_exception(id(exc_info), exc_info)
673 store_exception(id(exc_info), exc_info)
670
674
671 traceback_info = 'unavailable'
675 traceback_info = 'unavailable'
672 if request.exc_info:
676 if request.exc_info:
673 exc_type, exc_value, exc_tb = request.exc_info
677 exc_type, exc_value, exc_tb = request.exc_info
674 traceback_info = ''.join(traceback.format_exception(exc_type, exc_value, exc_tb))
678 traceback_info = ''.join(traceback.format_exception(exc_type, exc_value, exc_tb))
675
679
676 log.error(
680 log.error(
677 'error occurred handling this request for path: %s, \n tb: %s',
681 'error occurred handling this request for path: %s, \n tb: %s',
678 request.path, traceback_info)
682 request.path, traceback_info)
679 raise exception
683 raise exception
680
684
681
685
682 class ResponseFilter(object):
686 class ResponseFilter(object):
683
687
684 def __init__(self, start_response):
688 def __init__(self, start_response):
685 self._start_response = start_response
689 self._start_response = start_response
686
690
687 def __call__(self, status, response_headers, exc_info=None):
691 def __call__(self, status, response_headers, exc_info=None):
688 headers = tuple(
692 headers = tuple(
689 (h, v) for h, v in response_headers
693 (h, v) for h, v in response_headers
690 if not wsgiref.util.is_hop_by_hop(h))
694 if not wsgiref.util.is_hop_by_hop(h))
691 return self._start_response(status, headers, exc_info)
695 return self._start_response(status, headers, exc_info)
692
696
693
697
694 def main(global_config, **settings):
698 def main(global_config, **settings):
695 if MercurialFactory:
699 if MercurialFactory:
696 hgpatches.patch_largefiles_capabilities()
700 hgpatches.patch_largefiles_capabilities()
697 hgpatches.patch_subrepo_type_mapping()
701 hgpatches.patch_subrepo_type_mapping()
698
702
699 app = HTTPApplication(settings=settings, global_config=global_config)
703 app = HTTPApplication(settings=settings, global_config=global_config)
700 return app.wsgi_app()
704 return app.wsgi_app()
@@ -1,64 +1,70 b''
1 # RhodeCode VCSServer provides access to different vcs backends via network.
1 # RhodeCode VCSServer provides access to different vcs backends via network.
2 # Copyright (C) 2014-2020 RhodeCode GmbH
2 # Copyright (C) 2014-2020 RhodeCode GmbH
3 #
3 #
4 # This program is free software; you can redistribute it and/or modify
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
7 # (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation,
15 # along with this program; if not, write to the Free Software Foundation,
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
18 import time
18 import time
19 import logging
19 import logging
20
20
21 import vcsserver
21 import vcsserver
22 from vcsserver.utils import safe_str
22 from vcsserver.utils import safe_str
23
23
24
24
25 log = logging.getLogger(__name__)
25 log = logging.getLogger(__name__)
26
26
27
27
28 def get_access_path(request):
28 def get_access_path(request):
29 environ = request.environ
29 environ = request.environ
30 return environ.get('PATH_INFO')
30 return environ.get('PATH_INFO')
31
31
32
32
33 def get_user_agent(environ):
33 def get_user_agent(environ):
34 return environ.get('HTTP_USER_AGENT')
34 return environ.get('HTTP_USER_AGENT')
35
35
36
36
37 class RequestWrapperTween(object):
37 class RequestWrapperTween(object):
38 def __init__(self, handler, registry):
38 def __init__(self, handler, registry):
39 self.handler = handler
39 self.handler = handler
40 self.registry = registry
40 self.registry = registry
41
41
42 # one-time configuration code goes here
42 # one-time configuration code goes here
43
43
44 def __call__(self, request):
44 def __call__(self, request):
45 start = time.time()
45 start = time.time()
46 log.debug('Starting request time measurement')
46 try:
47 try:
47 response = self.handler(request)
48 response = self.handler(request)
48 finally:
49 finally:
49 end = time.time()
50 total = end - start
51 count = request.request_count()
50 count = request.request_count()
52 _ver_ = vcsserver.__version__
51 _ver_ = vcsserver.__version__
52 statsd = request.statsd
53 total = time.time() - start
54 if statsd:
55 statsd.timing('vcsserver.req.timing', total)
56 statsd.incr('vcsserver.req.count')
53 log.info(
57 log.info(
54 'Req[%4s] IP: %s %s Request to %s time: %.4fs [%s], VCSServer %s',
58 'Req[%4s] IP: %s %s Request to %s time: %.4fs [%s], VCSServer %s',
55 count, '127.0.0.1', request.environ.get('REQUEST_METHOD'),
59 count, '127.0.0.1', request.environ.get('REQUEST_METHOD'),
56 safe_str(get_access_path(request)), total, get_user_agent(request.environ), _ver_)
60 safe_str(get_access_path(request)), total,
61 get_user_agent(request.environ), _ver_
62 )
57
63
58 return response
64 return response
59
65
60
66
61 def includeme(config):
67 def includeme(config):
62 config.add_tween(
68 config.add_tween(
63 'vcsserver.tweens.request_wrapper.RequestWrapperTween',
69 'vcsserver.tweens.request_wrapper.RequestWrapperTween',
64 )
70 )
General Comments 0
You need to be logged in to leave comments. Login now