| // Copyright 2017 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'dart:async'; |
| import 'dart:convert' show AsciiDecoder; |
| |
| import 'package:quiver/strings.dart'; |
| |
| import '../globals.dart'; |
| import 'context.dart'; |
| import 'io.dart' as io; |
| import 'platform.dart'; |
| |
| final AnsiTerminal _kAnsiTerminal = AnsiTerminal(); |
| |
| AnsiTerminal get terminal { |
| return (context == null || context[AnsiTerminal] == null) |
| ? _kAnsiTerminal |
| : context[AnsiTerminal]; |
| } |
| |
| enum TerminalColor { |
| red, |
| green, |
| blue, |
| cyan, |
| yellow, |
| magenta, |
| grey, |
| } |
| |
| class AnsiTerminal { |
| static const String bold = '\u001B[1m'; |
| static const String reset = '\u001B[0m'; |
| static const String clear = '\u001B[2J\u001B[H'; |
| |
| static const String red = '\u001b[31m'; |
| static const String green = '\u001b[32m'; |
| static const String blue = '\u001b[34m'; |
| static const String cyan = '\u001b[36m'; |
| static const String magenta = '\u001b[35m'; |
| static const String yellow = '\u001b[33m'; |
| static const String grey = '\u001b[1;30m'; |
| |
| static const Map<TerminalColor, String> _colorMap = <TerminalColor, String>{ |
| TerminalColor.red: red, |
| TerminalColor.green: green, |
| TerminalColor.blue: blue, |
| TerminalColor.cyan: cyan, |
| TerminalColor.magenta: magenta, |
| TerminalColor.yellow: yellow, |
| TerminalColor.grey: grey, |
| }; |
| |
| static String colorCode(TerminalColor color) => _colorMap[color]; |
| |
| bool supportsColor = platform.stdoutSupportsAnsi ?? false; |
| |
| String bolden(String message) { |
| assert(message != null); |
| if (!supportsColor || message.isEmpty) |
| return message; |
| final StringBuffer buffer = StringBuffer(); |
| for (String line in message.split('\n')) |
| buffer.writeln('$bold$line$reset'); |
| final String result = buffer.toString(); |
| // avoid introducing a new newline to the emboldened text |
| return (!message.endsWith('\n') && result.endsWith('\n')) |
| ? result.substring(0, result.length - 1) |
| : result; |
| } |
| |
| String color(String message, TerminalColor color) { |
| assert(message != null); |
| if (!supportsColor || color == null || message.isEmpty) |
| return message; |
| final StringBuffer buffer = StringBuffer(); |
| for (String line in message.split('\n')) |
| buffer.writeln('${_colorMap[color]}$line$reset'); |
| final String result = buffer.toString(); |
| // avoid introducing a new newline to the colored text |
| return (!message.endsWith('\n') && result.endsWith('\n')) |
| ? result.substring(0, result.length - 1) |
| : result; |
| } |
| |
| String clearScreen() => supportsColor ? clear : '\n\n'; |
| |
| set singleCharMode(bool value) { |
| final Stream<List<int>> stdin = io.stdin; |
| if (stdin is io.Stdin && stdin.hasTerminal) { |
| // The order of setting lineMode and echoMode is important on Windows. |
| if (value) { |
| stdin.echoMode = false; |
| stdin.lineMode = false; |
| } else { |
| stdin.lineMode = true; |
| stdin.echoMode = true; |
| } |
| } |
| } |
| |
| Stream<String> _broadcastStdInString; |
| |
| /// Return keystrokes from the console. |
| /// |
| /// Useful when the console is in [singleCharMode]. |
| Stream<String> get onCharInput { |
| _broadcastStdInString ??= io.stdin.transform(const AsciiDecoder(allowInvalid: true)).asBroadcastStream(); |
| return _broadcastStdInString; |
| } |
| |
| /// Prompts the user to input a character within the accepted list. |
| /// Reprompts if inputted character is not in the list. |
| /// |
| /// `prompt` is the text displayed prior to waiting for user input each time. |
| /// `defaultChoiceIndex`, if given, will be the character in `acceptedCharacters` |
| /// in the index given if the user presses enter without any key input. |
| /// `displayAcceptedCharacters` prints also the accepted keys next to the `prompt` if true. |
| /// |
| /// Throws a [TimeoutException] if a `timeout` is provided and its duration |
| /// expired without user input. Duration resets per key press. |
| Future<String> promptForCharInput( |
| List<String> acceptedCharacters, { |
| String prompt, |
| int defaultChoiceIndex, |
| bool displayAcceptedCharacters = true, |
| Duration timeout, |
| }) async { |
| assert(acceptedCharacters != null); |
| assert(acceptedCharacters.isNotEmpty); |
| List<String> charactersToDisplay = acceptedCharacters; |
| if (defaultChoiceIndex != null) { |
| assert(defaultChoiceIndex >= 0 && defaultChoiceIndex < acceptedCharacters.length); |
| charactersToDisplay = List<String>.from(charactersToDisplay); |
| charactersToDisplay[defaultChoiceIndex] = bolden(charactersToDisplay[defaultChoiceIndex]); |
| acceptedCharacters.add('\n'); |
| } |
| String choice; |
| singleCharMode = true; |
| while (isEmpty(choice) || choice.length != 1 || !acceptedCharacters.contains(choice)) { |
| if (isNotEmpty(prompt)) { |
| printStatus(prompt, emphasis: true, newline: false); |
| if (displayAcceptedCharacters) |
| printStatus(' [${charactersToDisplay.join("|")}]', newline: false); |
| printStatus(': ', emphasis: true, newline: false); |
| } |
| Future<String> inputFuture = onCharInput.first; |
| if (timeout != null) |
| inputFuture = inputFuture.timeout(timeout); |
| choice = await inputFuture; |
| printStatus(choice); |
| } |
| singleCharMode = false; |
| if (defaultChoiceIndex != null && choice == '\n') |
| choice = acceptedCharacters[defaultChoiceIndex]; |
| return choice; |
| } |
| } |