1
1
"""Manager for jupyter server proxy"""
2
2
3
3
import asyncio
4
-
5
4
from collections import namedtuple
6
5
7
- from traitlets import List , Int
8
- from traitlets .config import LoggingConfigurable
9
-
10
6
from jupyter_server .utils import url_path_join as ujoin
11
-
7
+ from traitlets import Int , List
8
+ from traitlets .config import LoggingConfigurable
12
9
13
10
ServerProxy = namedtuple (
14
11
"ServerProxy" ,
15
- [
16
- "name" ,
17
- "url" ,
18
- "cmd" ,
19
- "port" ,
20
- "managed" ,
21
- "unix_socket"
22
- ],
23
- defaults = ["" ] * 6
24
- )
25
- ServerProxyProc = namedtuple (
26
- "ServerProxyProc" ,
27
- [
28
- "name" ,
29
- "proc"
30
- ],
31
- defaults = ["" ] * 2
12
+ ["name" , "url" , "cmd" , "port" , "managed" , "unix_socket" ],
13
+ defaults = ["" ] * 6 ,
32
14
)
15
+ ServerProxyProc = namedtuple ("ServerProxyProc" , ["name" , "proc" ], defaults = ["" ] * 2 )
33
16
34
17
35
18
class ServerProxyAppManager (LoggingConfigurable ):
@@ -38,17 +21,12 @@ class ServerProxyAppManager(LoggingConfigurable):
38
21
by jupyter server proxy.
39
22
"""
40
23
41
- server_proxy_apps = List (
42
- help = "List of server proxy apps"
43
- )
24
+ server_proxy_apps = List (help = "List of server proxy apps" )
44
25
45
- _server_proxy_procs = List (
46
- help = "List of server proxy app proc objects"
47
- )
26
+ _server_proxy_procs = List (help = "List of server proxy app proc objects" )
48
27
49
28
num_active_server_proxy_apps = Int (
50
- 0 ,
51
- help = "Total number of currently running proxy apps"
29
+ 0 , help = "Total number of currently running proxy apps"
52
30
)
53
31
54
32
def add_server_proxy_app (self , name , base_url , cmd , port , proc , unix_socket ):
@@ -63,7 +41,7 @@ def add_server_proxy_app(self, name, base_url, cmd, port, proc, unix_socket):
63
41
cmd = " " .join (cmd ),
64
42
port = port ,
65
43
managed = True if proc else False ,
66
- unix_socket = unix_socket if unix_socket is not None else ''
44
+ unix_socket = unix_socket if unix_socket is not None else "" ,
67
45
)
68
46
)
69
47
@@ -89,11 +67,16 @@ def del_server_proxy_app(self, name):
89
67
90
68
def get_server_proxy_app (self , name ):
91
69
"""Get a given server proxy app"""
92
- return next ((app for app in self .server_proxy_apps if app .name == name ), ServerProxy ())
70
+ return next (
71
+ (app for app in self .server_proxy_apps if app .name == name ), ServerProxy ()
72
+ )
93
73
94
74
def _get_server_proxy_proc (self , name ):
95
75
"""Get a given server proxy app"""
96
- return next ((app for app in self ._server_proxy_procs if app .name == name ), ServerProxyProc ())
76
+ return next (
77
+ (app for app in self ._server_proxy_procs if app .name == name ),
78
+ ServerProxyProc (),
79
+ )
97
80
98
81
def list_server_proxy_apps (self ):
99
82
"""List all active server proxy apps"""
0 commit comments