Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(716)

Unified Diff: mojo/devtools/common/devtoolslib/shell.py

Issue 1259763013: Devtools: add ServeLocalDirectories(). (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add one more comment. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/devtools/common/devtoolslib/linux_shell.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/devtools/common/devtoolslib/shell.py
diff --git a/mojo/devtools/common/devtoolslib/shell.py b/mojo/devtools/common/devtoolslib/shell.py
index 16f4669cd22b56f812cadd66dd8dd5ac7752bfd8..798208db32ee3911c2a623ae08d6a625d9ec88a3 100644
--- a/mojo/devtools/common/devtoolslib/shell.py
+++ b/mojo/devtools/common/devtoolslib/shell.py
@@ -6,8 +6,7 @@
class Shell(object):
"""Represents an abstract Mojo shell."""
- def ServeLocalDirectory(self, local_dir_path, port=0,
- additional_mappings=None):
+ def ServeLocalDirectory(self, local_dir_path, port=0):
"""Serves the content of the local (host) directory, making it available to
the shell under the url returned by the function.
@@ -17,9 +16,25 @@ class Shell(object):
Args:
local_dir_path: path to the directory to be served
port: port at which the server will be available to the shell
- additional_mappings: List of tuples (prefix, local_base_path) mapping
- URLs that start with |prefix| to local directory at |local_base_path|.
- The prefixes should skip the leading slash.
+
+ Returns:
+ The url that the shell can use to access the content of |local_dir_path|.
+ """
+ raise NotImplementedError()
+
+ def ServeLocalDirectories(self, mappings, port=0):
+ """Serves the content of the local (host) directories, making it available
+ to the shell under the url returned by the function.
+
+ The server will run on a separate thread until the program terminates. The
+ call returns immediately.
+
+ Args:
+ mappings: List of tuples (prefix, local_base_path) mapping URLs that start
+ with |prefix| to local directory at |local_base_path|. The prefixes
+ should skip the leading slash. The first matching prefix will be used
+ each time.
+ port: port at which the server will be available to the shell
Returns:
The url that the shell can use to access the content of |local_dir_path|.
« no previous file with comments | « mojo/devtools/common/devtoolslib/linux_shell.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698