blob: 610bb5f81bf2d64ad57a0c09fce9843e2b4a05b6 [file] [log] [blame]
#!/usr/bin/env python
# Copyright 2020 The Pigweed Authors
#
# 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
#
# https://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.
"""Watch files for changes and rebuild.
Run arbitrary commands or invoke build systems (Ninja, Bazel and make) on one or
more build directories whenever source files change.
Usage examples:
# Build the default target in out/ using ninja.
pw watch -C out
# Build python.lint and stm32f429i targets in out/ using ninja.
pw watch python.lint stm32f429i
# Build pw_run_tests.modules in the out/cmake directory
pw watch -C out/cmake pw_run_tests.modules
# Build the default target in out/ and pw_apps in out/cmake
pw watch -C out -C out/cmake pw_apps
# Build python.tests in out/ and pw_apps in out/cmake/
pw watch python.tests -C out/cmake pw_apps
# Run 'bazel build' and 'bazel test' on the target '//...' in outbazel/
pw watch --run-command 'mkdir -p outbazel'
-C outbazel '//...'
--build-system-command outbazel 'bazel build'
--build-system-command outbazel 'bazel test'
"""
import argparse
import errno
import http.server
import logging
import os
from pathlib import Path
import re
import subprocess
import socketserver
import sys
import threading
from threading import Thread
from typing import (
Callable,
Iterable,
List,
NoReturn,
Optional,
Sequence,
Tuple,
)
try:
import httpwatcher # type: ignore[import]
except ImportError:
httpwatcher = None
from watchdog.events import FileSystemEventHandler # type: ignore[import]
from watchdog.observers import Observer # type: ignore[import]
from prompt_toolkit import prompt
from prompt_toolkit.formatted_text.base import OneStyleAndTextTuple
from prompt_toolkit.formatted_text import StyleAndTextTuples
from pw_build.build_recipe import BuildRecipe, create_build_recipes
from pw_build.project_builder import (
ProjectBuilder,
execute_command_with_logging,
log_build_recipe_start,
log_build_recipe_finish,
ASCII_CHARSET,
EMOJI_CHARSET,
)
import pw_cli.branding
import pw_cli.color
import pw_cli.env
import pw_cli.log
import pw_cli.plugins
import pw_console.python_logging
from pw_watch.argparser import (
WATCH_PATTERN_DELIMITER,
WATCH_PATTERNS,
add_parser_arguments,
)
from pw_watch.debounce import DebouncedFunction, Debouncer
from pw_watch.watch_app import WatchAppPrefs, WatchApp
_COLOR = pw_cli.color.colors()
_LOG = logging.getLogger('pw_build.watch')
_ERRNO_INOTIFY_LIMIT_REACHED = 28
# Suppress events under 'fsevents', generated by watchdog on every file
# event on MacOS.
# TODO(b/182281481): Fix file ignoring, rather than just suppressing logs
_FSEVENTS_LOG = logging.getLogger('fsevents')
_FSEVENTS_LOG.setLevel(logging.WARNING)
_FULLSCREEN_STATUS_COLUMN_WIDTH = 10
def git_ignored(file: Path) -> bool:
"""Returns true if this file is in a Git repo and ignored by that repo.
Returns true for ignored files that were manually added to a repo.
"""
file = file.resolve()
directory = file.parent
# Run the Git command from file's parent so that the correct repo is used.
while True:
try:
returncode = subprocess.run(
['git', 'check-ignore', '--quiet', '--no-index', file],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
cwd=directory,
).returncode
return returncode in (0, 128)
except FileNotFoundError:
# If the directory no longer exists, try parent directories until
# an existing directory is found or all directories have been
# checked. This approach makes it possible to check if a deleted
# path is ignored in the repo it was originally created in.
if directory == directory.parent:
return False
directory = directory.parent
class PigweedBuildWatcher(FileSystemEventHandler, DebouncedFunction):
"""Process filesystem events and launch builds if necessary."""
# pylint: disable=too-many-instance-attributes
NINJA_BUILD_STEP = re.compile(
r'^\[(?P<step>[0-9]+)/(?P<total_steps>[0-9]+)\] (?P<action>.*)$'
)
def __init__( # pylint: disable=too-many-arguments
self,
project_builder: ProjectBuilder,
patterns: Sequence[str] = (),
ignore_patterns: Sequence[str] = (),
restart: bool = True,
fullscreen: bool = False,
banners: bool = True,
use_logfile: bool = False,
separate_logfiles: bool = False,
):
super().__init__()
self.banners = banners
self.status_message: Optional[OneStyleAndTextTuple] = None
self.result_message: Optional[StyleAndTextTuples] = None
self.current_build_step = ''
self.current_build_percent = 0.0
self.current_build_errors = 0
self.patterns = patterns
self.ignore_patterns = ignore_patterns
self.project_builder = project_builder
self.restart_on_changes = restart
self.fullscreen_enabled = fullscreen
self.watch_app: Optional[WatchApp] = None
self.use_logfile = use_logfile
self.separate_logfiles = separate_logfiles
# Initialize self._current_build to an empty subprocess.
self._current_build = subprocess.Popen('', shell=True, errors='replace')
self.debouncer = Debouncer(self)
# Track state of a build. These need to be members instead of locals
# due to the split between dispatch(), run(), and on_complete().
self.matching_path: Optional[Path] = None
if not self.fullscreen_enabled:
self.wait_for_keypress_thread = threading.Thread(
None, self._wait_for_enter
)
self.wait_for_keypress_thread.start()
def rebuild(self):
"""Rebuild command triggered from watch app."""
self._current_build.terminate()
self._current_build.wait()
self.debouncer.press('Manual build requested')
def _wait_for_enter(self) -> NoReturn:
try:
while True:
_ = prompt('')
self.rebuild()
# Ctrl-C on Unix generates KeyboardInterrupt
# Ctrl-Z on Windows generates EOFError
except (KeyboardInterrupt, EOFError):
# Force stop any running ninja builds.
if self._current_build:
self._current_build.terminate()
_exit_due_to_interrupt()
def _path_matches(self, path: Path) -> bool:
"""Returns true if path matches according to the watcher patterns"""
return not any(path.match(x) for x in self.ignore_patterns) and any(
path.match(x) for x in self.patterns
)
def dispatch(self, event) -> None:
# There isn't any point in triggering builds on new directory creation.
# It's the creation or modification of files that indicate something
# meaningful enough changed for a build.
if event.is_directory:
return
# Collect paths of interest from the event.
paths: List[str] = []
if hasattr(event, 'dest_path'):
paths.append(os.fsdecode(event.dest_path))
if event.src_path:
paths.append(os.fsdecode(event.src_path))
for raw_path in paths:
_LOG.debug('File event: %s', raw_path)
# Check whether Git cares about any of these paths.
for path in (Path(p).resolve() for p in paths):
if not git_ignored(path) and self._path_matches(path):
self._handle_matched_event(path)
return
def _handle_matched_event(self, matching_path: Path) -> None:
if self.matching_path is None:
self.matching_path = matching_path
log_message = f'File change detected: {os.path.relpath(matching_path)}'
if self.restart_on_changes:
if self.fullscreen_enabled and self.watch_app:
self.watch_app.rebuild_on_filechange()
self.debouncer.press(f'{log_message} Triggering build...')
else:
_LOG.info('%s ; not rebuilding', log_message)
def _clear_screen(self) -> None:
if self.fullscreen_enabled:
return
print('\033c', end='') # TODO(pwbug/38): Not Windows compatible.
sys.stdout.flush()
# Implementation of DebouncedFunction.run()
#
# Note: This will run on the timer thread created by the Debouncer, rather
# than on the main thread that's watching file events. This enables the
# watcher to continue receiving file change events during a build.
def run(self) -> None:
"""Run all the builds in serial and capture pass/fail for each."""
# Clear the screen and show a banner indicating the build is starting.
self._clear_screen()
if self.fullscreen_enabled:
self.create_result_message()
_LOG.info(
_COLOR.green(
'Watching for changes. Ctrl-d to exit; enter to rebuild'
)
)
else:
for line in pw_cli.branding.banner().splitlines():
_LOG.info(line)
_LOG.info(
_COLOR.green(
' Watching for changes. Ctrl-C to exit; enter to rebuild'
)
)
if self.matching_path:
_LOG.info('')
_LOG.info('Change detected: %s', self.matching_path)
self._clear_screen()
num_builds = len(self.project_builder)
_LOG.info('Starting build with %d directories', num_builds)
if self.project_builder.default_logfile:
_LOG.info(
'%s: %s',
_COLOR.yellow('Logging to'),
self.project_builder.default_logfile.resolve(),
)
env = os.environ.copy()
# Force colors in Pigweed subcommands run through the watcher.
env['PW_USE_COLOR'] = '1'
# Force Ninja to output ANSI colors
env['CLICOLOR_FORCE'] = '1'
# Reset status messages
for cfg in self.project_builder:
cfg.reset_status()
self.create_result_message()
for i, cfg in enumerate(self.project_builder, 1):
self.run_recipe(i, cfg, env)
def run_recipe(self, index: int, cfg: BuildRecipe, env) -> None:
num_builds = len(self.project_builder)
index_message = f'[{index}/{num_builds}]'
log_build_recipe_start(
index_message, self.project_builder, cfg, logger=_LOG
)
self.project_builder.run_build(
cfg,
env,
index_message=index_message,
)
log_build_recipe_finish(
index_message,
self.project_builder,
cfg,
logger=_LOG,
)
self.create_result_message()
def create_result_message(self):
"""Update the prompt_toolkit formatted build result message."""
if not self.fullscreen_enabled:
return
self.result_message = []
first_building_target_found = False
for cfg in self.project_builder:
# Add the status
if cfg.status.passed():
self.result_message.append(
(
'class:theme-fg-green',
'OK'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
)
elif cfg.status.failed():
self.result_message.append(
(
'class:theme-fg-red',
'Failed'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
)
# NOTE: This condition assumes each build dir is run in serial
elif first_building_target_found:
self.result_message.append(
('', ''.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH))
)
else:
first_building_target_found = True
self.result_message.append(
(
'class:theme-fg-yellow',
'Building'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
)
# Add the build directory
self.result_message.append(('', f' {cfg.display_name}\n'))
def execute_command(
self,
command: list,
env: dict,
recipe: BuildRecipe,
# pylint: disable=unused-argument
*args,
**kwargs,
# pylint: enable=unused-argument
) -> bool:
"""Runs a command with a blank before/after for visual separation."""
self.status_message = (
'class:theme-fg-yellow',
'Building'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
if self.fullscreen_enabled:
return self._execute_command_watch_app(command, env, recipe)
if self.separate_logfiles:
return execute_command_with_logging(
command, env, recipe, logger=recipe.log
)
if self.use_logfile:
return execute_command_with_logging(
command, env, recipe, logger=_LOG
)
print()
self._current_build = subprocess.Popen(
command, env=env, errors='replace'
)
returncode = self._current_build.wait()
print()
recipe.status.return_code = returncode
return returncode == 0
def _execute_command_watch_app(
self,
command: list,
env: dict,
recipe: BuildRecipe,
) -> bool:
"""Runs a command with and outputs the logs."""
if not self.watch_app:
return False
def new_line_callback(recipe: BuildRecipe) -> None:
self.current_build_step = recipe.status.current_step
self.current_build_percent = recipe.status.percent
self.current_build_errors = recipe.status.error_count
if self.watch_app:
self.watch_app.redraw_ui()
desired_logger = _LOG
if self.separate_logfiles:
desired_logger = recipe.log
result = execute_command_with_logging(
command,
env,
recipe,
logger=desired_logger,
line_processed_callback=new_line_callback,
)
return result
# Implementation of DebouncedFunction.cancel()
def cancel(self) -> bool:
if self.restart_on_changes:
self._current_build.terminate()
self._current_build.wait()
return True
return False
# Implementation of DebouncedFunction.on_complete()
def on_complete(self, cancelled: bool = False) -> None:
# First, use the standard logging facilities to report build status.
if cancelled:
self.status_message = (
'',
'Cancelled'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
_LOG.error('Finished; build was interrupted')
elif all(recipe.status.passed() for recipe in self.project_builder):
self.status_message = (
'class:theme-fg-green',
'Succeeded'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
_LOG.info('Finished; all successful')
else:
self.status_message = (
'class:theme-fg-red',
'Failed'.rjust(_FULLSCREEN_STATUS_COLUMN_WIDTH),
)
_LOG.info('Finished; some builds failed')
# Show individual build results for fullscreen app
if self.fullscreen_enabled:
self.create_result_message()
# For non-fullscreen pw watch
else:
# Show a more distinct colored banner.
self.project_builder.print_build_summary(
cancelled=cancelled, logger=_LOG
)
if self.watch_app:
self.watch_app.redraw_ui()
self.matching_path = None
# Implementation of DebouncedFunction.on_keyboard_interrupt()
def on_keyboard_interrupt(self) -> NoReturn:
_exit_due_to_interrupt()
def _exit(code: int) -> NoReturn:
# Note: The "proper" way to exit is via observer.stop(), then
# running a join. However it's slower, so just exit immediately.
#
# Additionally, since there are several threads in the watcher, the usual
# sys.exit approach doesn't work. Instead, run the low level exit which
# kills all threads.
os._exit(code) # pylint: disable=protected-access
def _exit_due_to_interrupt() -> NoReturn:
# To keep the log lines aligned with each other in the presence of
# a '^C' from the keyboard interrupt, add a newline before the log.
print('')
_LOG.info('Got Ctrl-C; exiting...')
_exit(0)
def _exit_due_to_inotify_watch_limit():
# Show information and suggested commands in OSError: inotify limit reached.
_LOG.error(
'Inotify watch limit reached: run this in your terminal if '
'you are in Linux to temporarily increase inotify limit. \n'
)
_LOG.info(
_COLOR.green(
' sudo sysctl fs.inotify.max_user_watches=' '$NEW_LIMIT$\n'
)
)
_LOG.info(
' Change $NEW_LIMIT$ with an integer number, '
'e.g., 20000 should be enough.'
)
_exit(0)
def _exit_due_to_inotify_instance_limit():
# Show information and suggested commands in OSError: inotify limit reached.
_LOG.error(
'Inotify instance limit reached: run this in your terminal if '
'you are in Linux to temporarily increase inotify limit. \n'
)
_LOG.info(
_COLOR.green(
' sudo sysctl fs.inotify.max_user_instances=' '$NEW_LIMIT$\n'
)
)
_LOG.info(
' Change $NEW_LIMIT$ with an integer number, '
'e.g., 20000 should be enough.'
)
_exit(0)
def _exit_due_to_pigweed_not_installed():
# Show information and suggested commands when pigweed environment variable
# not found.
_LOG.error(
'Environment variable $PW_ROOT not defined or is defined '
'outside the current directory.'
)
_LOG.error(
'Did you forget to activate the Pigweed environment? '
'Try source ./activate.sh'
)
_LOG.error(
'Did you forget to install the Pigweed environment? '
'Try source ./bootstrap.sh'
)
_exit(1)
# Go over each directory inside of the current directory.
# If it is not on the path of elements in directories_to_exclude, add
# (directory, True) to subdirectories_to_watch and later recursively call
# Observer() on them.
# Otherwise add (directory, False) to subdirectories_to_watch and later call
# Observer() with recursion=False.
def minimal_watch_directories(to_watch: Path, to_exclude: Iterable[Path]):
"""Determine which subdirectory to watch recursively"""
try:
to_watch = Path(to_watch)
except TypeError:
assert False, "Please watch one directory at a time."
# Reformat to_exclude.
directories_to_exclude: List[Path] = [
to_watch.joinpath(directory_to_exclude)
for directory_to_exclude in to_exclude
if to_watch.joinpath(directory_to_exclude).is_dir()
]
# Split the relative path of directories_to_exclude (compared to to_watch),
# and generate all parent paths needed to be watched without recursion.
exclude_dir_parents = {to_watch}
for directory_to_exclude in directories_to_exclude:
parts = list(Path(directory_to_exclude).relative_to(to_watch).parts)[
:-1
]
dir_tmp = to_watch
for part in parts:
dir_tmp = Path(dir_tmp, part)
exclude_dir_parents.add(dir_tmp)
# Go over all layers of directory. Append those that are the parents of
# directories_to_exclude to the list with recursion==False, and others
# with recursion==True.
for directory in exclude_dir_parents:
dir_path = Path(directory)
yield dir_path, False
for item in Path(directory).iterdir():
if (
item.is_dir()
and item not in exclude_dir_parents
and item not in directories_to_exclude
):
yield item, True
def get_common_excludes() -> List[Path]:
"""Find commonly excluded directories, and return them as a [Path]"""
exclude_list: List[Path] = []
typical_ignored_directories: List[str] = [
'.environment', # Legacy bootstrap-created CIPD and Python venv.
'.presubmit', # Presubmit-created CIPD and Python venv.
'.git', # Pigweed's git repo.
'.mypy_cache', # Python static analyzer.
'.cargo', # Rust package manager.
'environment', # Bootstrap-created CIPD and Python venv.
'out', # Typical build directory.
]
# Preset exclude list for Pigweed's upstream directories.
pw_root_dir = Path(os.environ['PW_ROOT'])
exclude_list.extend(
pw_root_dir / ignored_directory
for ignored_directory in typical_ignored_directories
)
# Preset exclude for common downstream project structures.
#
# If watch is invoked outside of the Pigweed root, exclude common
# directories.
pw_project_root_dir = Path(os.environ['PW_PROJECT_ROOT'])
if pw_project_root_dir != pw_root_dir:
exclude_list.extend(
pw_project_root_dir / ignored_directory
for ignored_directory in typical_ignored_directories
)
# Check for and warn about legacy directories.
legacy_directories = [
'.cipd', # Legacy CIPD location.
'.python3-venv', # Legacy Python venv location.
]
found_legacy = False
for legacy_directory in legacy_directories:
full_legacy_directory = pw_root_dir / legacy_directory
if full_legacy_directory.is_dir():
_LOG.warning(
'Legacy environment directory found: %s',
str(full_legacy_directory),
)
exclude_list.append(full_legacy_directory)
found_legacy = True
if found_legacy:
_LOG.warning(
'Found legacy environment directory(s); these ' 'should be deleted'
)
return exclude_list
def _simple_docs_server(
address: str, port: int, path: Path
) -> Callable[[], None]:
class Handler(http.server.SimpleHTTPRequestHandler):
def __init__(self, *args, **kwargs):
super().__init__(*args, directory=path, **kwargs)
# Disable logs to stdout
def log_message(
self, format: str, *args # pylint: disable=redefined-builtin
) -> None:
return
def simple_http_server_thread():
with socketserver.TCPServer((address, port), Handler) as httpd:
httpd.serve_forever()
return simple_http_server_thread
def _httpwatcher_docs_server(
address: str, port: int, path: Path
) -> Callable[[], None]:
def httpwatcher_thread():
# Disable logs from httpwatcher and deps
logging.getLogger('httpwatcher').setLevel(logging.CRITICAL)
logging.getLogger('tornado').setLevel(logging.CRITICAL)
httpwatcher.watch(path, host=address, port=port)
return httpwatcher_thread
def _serve_docs(
build_dir: Path,
docs_path: Path,
address: str = '127.0.0.1',
port: int = 8000,
) -> None:
address = '127.0.0.1'
docs_path = build_dir.joinpath(docs_path.joinpath('html'))
if httpwatcher is not None:
_LOG.info('Using httpwatcher. Docs will reload when changed.')
server_thread = _httpwatcher_docs_server(address, port, docs_path)
else:
_LOG.info(
'Using simple HTTP server. Docs will not reload when changed.'
)
_LOG.info('Install httpwatcher and restart for automatic docs reload.')
server_thread = _simple_docs_server(address, port, docs_path)
# Spin up server in a new thread since it blocks
threading.Thread(None, server_thread, 'pw_docs_server').start()
def watch_logging_init(log_level: int, fullscreen: bool) -> None:
# Logging setup
if not fullscreen:
pw_cli.log.install(
level=log_level,
use_color=True,
hide_timestamp=False,
)
return
watch_logfile = pw_console.python_logging.create_temp_log_file(
prefix=__package__
)
pw_cli.log.install(
level=logging.DEBUG,
use_color=True,
hide_timestamp=False,
log_file=watch_logfile,
)
pw_console.python_logging.setup_python_logging(
last_resort_filename=watch_logfile
)
def watch_setup( # pylint: disable=too-many-locals
project_builder: ProjectBuilder,
# NOTE: The following args should have defaults matching argparse. This
# allows use of watch_setup by other project build scripts.
patterns: str = WATCH_PATTERN_DELIMITER.join(WATCH_PATTERNS),
ignore_patterns_string: str = '',
exclude_list: Optional[List[Path]] = None,
restart: bool = True,
serve_docs: bool = False,
serve_docs_port: int = 8000,
serve_docs_path: Path = Path('docs/gen/docs'),
fullscreen: bool = False,
banners: bool = True,
logfile: Optional[Path] = None,
separate_logfiles: bool = False,
# pylint: disable=unused-argument
default_build_targets: Optional[List[str]] = None,
build_directories: Optional[List[str]] = None,
build_system_commands: Optional[List[str]] = None,
run_command: Optional[List[str]] = None,
jobs: Optional[int] = None,
keep_going: bool = False,
colors: bool = True,
debug_logging: bool = False,
# pylint: enable=unused-argument
# pylint: disable=too-many-arguments
) -> Tuple[PigweedBuildWatcher, List[Path]]:
"""Watches files and runs Ninja commands when they change."""
watch_logging_init(
log_level=project_builder.default_log_level, fullscreen=fullscreen
)
_LOG.info('Starting Pigweed build watcher')
# Get pigweed directory information from environment variable PW_ROOT.
if os.environ['PW_ROOT'] is None:
_exit_due_to_pigweed_not_installed()
pw_root = Path(os.environ['PW_ROOT']).resolve()
if Path.cwd().resolve() not in [pw_root, *pw_root.parents]:
_exit_due_to_pigweed_not_installed()
build_recipes = project_builder.build_recipes
# Preset exclude list for pigweed directory.
if not exclude_list:
exclude_list = []
exclude_list += get_common_excludes()
# Add build directories to the exclude list.
exclude_list.extend(
cfg.build_dir.resolve()
for cfg in build_recipes
if isinstance(cfg.build_dir, Path)
)
for i, build_recipe in enumerate(build_recipes, 1):
_LOG.info('Will build [%d/%d]: %s', i, len(build_recipes), build_recipe)
_LOG.debug('Patterns: %s', patterns)
if serve_docs:
_serve_docs(
build_recipes[0].build_dir, serve_docs_path, port=serve_docs_port
)
# Ignore the user-specified patterns.
ignore_patterns = (
ignore_patterns_string.split(WATCH_PATTERN_DELIMITER)
if ignore_patterns_string
else []
)
event_handler = PigweedBuildWatcher(
project_builder=project_builder,
patterns=patterns.split(WATCH_PATTERN_DELIMITER),
ignore_patterns=ignore_patterns,
restart=restart,
fullscreen=fullscreen,
banners=banners,
use_logfile=bool(logfile),
separate_logfiles=bool(separate_logfiles),
)
project_builder.execute_command = event_handler.execute_command
return event_handler, exclude_list
def watch(
event_handler: PigweedBuildWatcher,
exclude_list: List[Path],
):
"""Watches files and runs Ninja commands when they change."""
# Try to make a short display path for the watched directory that has
# "$HOME" instead of the full home directory. This is nice for users
# who have deeply nested home directories.
path_to_log = str(Path().resolve()).replace(str(Path.home()), '$HOME')
try:
# It can take awhile to configure the filesystem watcher, so have the
# message reflect that with the "...". Run inside the try: to
# gracefully handle the user Ctrl-C'ing out during startup.
_LOG.info('Attaching filesystem watcher to %s/...', path_to_log)
# Observe changes for all files in the root directory. Whether the
# directory should be observed recursively or not is determined by the
# second element in subdirectories_to_watch.
observers = []
for path, rec in minimal_watch_directories(Path.cwd(), exclude_list):
observer = Observer()
observer.schedule(
event_handler,
str(path),
recursive=rec,
)
observer.start()
observers.append(observer)
event_handler.debouncer.press('Triggering initial build...')
for observer in observers:
while observer.is_alive():
observer.join(1)
# Ctrl-C on Unix generates KeyboardInterrupt
# Ctrl-Z on Windows generates EOFError
except (KeyboardInterrupt, EOFError):
_exit_due_to_interrupt()
except OSError as err:
if err.args[0] == _ERRNO_INOTIFY_LIMIT_REACHED:
_exit_due_to_inotify_watch_limit()
if err.errno == errno.EMFILE:
_exit_due_to_inotify_instance_limit()
raise err
def run_watch(
event_handler: PigweedBuildWatcher,
exclude_list: List[Path],
prefs: Optional[WatchAppPrefs] = None,
fullscreen: bool = False,
) -> None:
"""Start pw_watch."""
if not prefs:
prefs = WatchAppPrefs(load_argparse_arguments=add_parser_arguments)
if fullscreen:
watch_thread = Thread(
target=watch,
args=(event_handler, exclude_list),
daemon=True,
)
watch_thread.start()
watch_app = WatchApp(
event_handler=event_handler,
prefs=prefs,
)
event_handler.watch_app = watch_app
watch_app.run()
else:
watch(event_handler, exclude_list)
def main() -> None:
"""Watch files for changes and rebuild."""
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
parser = add_parser_arguments(parser)
args = parser.parse_args()
prefs = WatchAppPrefs(load_argparse_arguments=add_parser_arguments)
prefs.apply_command_line_args(args)
build_recipes = create_build_recipes(prefs)
env = pw_cli.env.pigweed_environment()
if env.PW_EMOJI:
charset = EMOJI_CHARSET
else:
charset = ASCII_CHARSET
project_builder = ProjectBuilder(
build_recipes=build_recipes,
jobs=args.jobs,
banners=args.banners,
keep_going=args.keep_going,
colors=args.colors,
charset=charset,
separate_build_file_logging=args.separate_logfiles,
root_logfile=args.logfile,
root_logger=_LOG,
log_level=logging.DEBUG if args.debug_logging else logging.INFO,
)
event_handler, exclude_list = watch_setup(project_builder, **vars(args))
run_watch(
event_handler,
exclude_list,
prefs=prefs,
fullscreen=args.fullscreen,
)
if __name__ == '__main__':
main()