forked from tensorflow/tensorboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_plugin.py
132 lines (111 loc) · 5.45 KB
/
base_plugin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""TensorBoard Plugin abstract base class.
Every plugin in TensorBoard must extend and implement the abstract methods of
this base class.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from abc import ABCMeta
from abc import abstractmethod
class TBPlugin(object):
"""TensorBoard plugin interface. Every plugin must extend from this class.
Subclasses must have a constructor that takes a TBContext argument.
Fields:
plugin_name: The plugin_name will also be a prefix in the http handlers
generated by the plugin, e.g. `data/plugins/$PLUGIN_NAME/$HANDLER` The
plugin name must be unique for each registered plugin, or a ValueError
will be thrown when the application is constructed. The plugin name must
only contain characters among [A-Za-z0-9_.-], and must be nonempty,
or a ValueError will similarly be thrown.
"""
__metaclass__ = ABCMeta
plugin_name = None
@abstractmethod
def get_plugin_apps(self):
"""Returns a set of WSGI applications that the plugin implements.
Each application gets registered with the tensorboard app and is served
under a prefix path that includes the name of the plugin.
Returns:
A dict mapping route paths to WSGI applications. Each route path
should include a leading slash.
"""
raise NotImplementedError()
@abstractmethod
def is_active(self):
"""Determines whether this plugin is active.
A plugin may not be active for instance if it lacks relevant data. If a
plugin is inactive, the frontend may avoid issuing requests to its routes.
Returns:
A boolean value. Whether this plugin is active.
"""
raise NotImplementedError()
class TBContext(object):
"""Magic container of information passed from TensorBoard core to plugins.
A TBContext instance is passed to the constructor of a TBPlugin class. Plugins
are strongly encouraged to assume that any of these fields can be None. In
cases when a field is considered mandatory by a plugin, it can either crash
with ValueError, or silently choose to disable itself by returning False from
its is_active method.
All fields in this object are thread safe.
"""
def __init__(
self,
assets_zip_provider=None,
db_connection_provider=None,
db_module=None,
logdir=None,
multiplexer=None,
plugin_name_to_instance=None,
window_title=None):
"""Instantiates magic container.
The argument list is sorted and may be extended in the future; therefore,
callers must pass only named arguments to this constructor.
Args:
assets_zip_provider: A function that returns a newly opened file handle
for a zip file containing all static assets. The file names inside the
zip file are considered absolute paths on the web server. The file
handle this function returns must be closed. It is assumed that you
will pass this file handle to zipfile.ZipFile. This zip file should
also have been created by the tensorboard_zip_file build rule.
db_connection_provider: Function taking no arguments that returns a
PEP-249 database Connection object, or None if multiplexer should be
used instead. The returned value must be closed, and is safe to use in
a `with` statement. It is also safe to assume that calling this
function is cheap. The returned connection must only be used by a
single thread. Things like connection pooling are considered
implementation details of the provider.
db_module: A PEP-249 DB Module, e.g. sqlite3. This is useful for accessing
things like date time constructors. This value will be None if we are
not in SQL mode and multiplexer should be used instead.
logdir: The string logging directory TensorBoard was started with.
multiplexer: An EventMultiplexer with underlying TB data. Plugins should
copy this data over to the database when the db fields are set.
plugin_name_to_instance: A mapping between plugin name to instance.
Plugins may use this property to access other plugins. The context
object is passed to plugins during their construction, so a given
plugin may be absent from this mapping until it is registered. Plugin
logic should handle cases in which a plugin is absent from this
mapping, lest a KeyError is raised.
window_title: A string specifying the the window title.
"""
self.assets_zip_provider = assets_zip_provider
self.db_connection_provider = db_connection_provider
self.db_module = db_module
self.logdir = logdir
self.multiplexer = multiplexer
self.plugin_name_to_instance = plugin_name_to_instance
self.window_title = window_title