summaryrefslogtreecommitdiff
path: root/src/buildstream/_frontend/linuxapp.py
blob: 2cb8e2ec444a8c4164d65439b059b5504f9fcbb9 (plain)
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
#
#  Copyright (C) 2018 Codethink Limited
#
#  This program is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2 of the License, or (at your option) any later version.
#
#  This library is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library. If not, see <http://www.gnu.org/licenses/>.
#
#  Authors:
#        Tristan Van Berkom <tristan.vanberkom@codethink.co.uk>
import os

import click

from .app import App


# This trick is currently only supported on some terminals,
# avoid using it where it can cause garbage to be printed
# to the terminal.
#
def _osc_777_supported():

    term = os.environ.get("TERM")

    if term and (term.startswith("xterm") or term.startswith("vte")):

        # Since vte version 4600, upstream silently ignores
        # the OSC 777 without printing garbage to the terminal.
        #
        # For distros like Fedora who have patched vte, this
        # will trigger a desktop notification and bring attention
        # to the terminal.
        #
        vte_version = os.environ.get("VTE_VERSION")
        try:
            vte_version_int = int(vte_version)
        except (ValueError, TypeError):
            return False

        if vte_version_int >= 4600:
            return True

    return False


# A linux specific App implementation
#
class LinuxApp(App):
    def notify(self, title, text):

        # Currently we only try this notification method
        # of sending an escape sequence to the terminal
        #
        if _osc_777_supported():
            click.echo("\033]777;notify;{};{}\007".format(title, text), err=True)