1
- """
2
- mbed CMSIS-DAP debugger
3
- Copyright (c) 2017 ARM Limited
4
-
5
- Licensed under the Apache License, Version 2.0 (the "License");
6
- you may not use this file except in compliance with the License.
7
- You may obtain a copy of the License at
8
-
9
- http://www.apache.org/licenses/LICENSE-2.0
10
-
11
- Unless required by applicable law or agreed to in writing, software
12
- distributed under the License is distributed on an "AS IS" BASIS,
13
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- See the License for the specific language governing permissions and
15
- limitations under the License.
16
- """
1
+ # pyOCD debugger
2
+ # Copyright (c) 2017-2018 Arm Limited
3
+ # SPDX-License-Identifier: Apache-2.0
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
17
16
18
17
import os
19
18
import sys
20
19
import logging
21
20
22
21
log = logging .getLogger ('progress' )
23
22
24
- ## @brief Base progress report class.
25
- #
26
- # This base class implements the logic but no output.
27
23
class ProgressReport (object ):
24
+ """!
25
+ @brief Base progress report class.
26
+
27
+ This base class implements the logic but no output.
28
+ """
28
29
def __init__ (self , file = None ):
29
30
self ._file = file or sys .stdout
30
31
self .prev_progress = 0
@@ -71,12 +72,15 @@ def _update(self, progress):
71
72
def _finish (self ):
72
73
raise NotImplemented ()
73
74
74
- ## @brief Progress report subclass for TTYs.
75
- #
76
- # The progress bar is fully redrawn onscreen as progress is updated to give the
77
- # impression of animation.
78
75
class ProgressReportTTY (ProgressReport ):
79
- # These width constants can't be changed yet without changing the code below to match.
76
+ """!
77
+ @brief Progress report subclass for TTYs.
78
+
79
+ The progress bar is fully redrawn onscreen as progress is updated to give the
80
+ impression of animation.
81
+ """
82
+
83
+ ## These width constants can't be changed yet without changing the code below to match.
80
84
WIDTH = 20
81
85
82
86
def _update (self , progress ):
@@ -89,13 +93,16 @@ def _finish(self):
89
93
self .done = True
90
94
self ._file .write ("\n " )
91
95
92
- ## @brief Progress report subclass for non-TTY output.
93
- #
94
- # A simpler progress bar is used than for the TTY version. Only the difference between
95
- # the previous and current progress is drawn for each update, making the output suitable
96
- # for piping to a file or similar output.
97
96
class ProgressReportNoTTY (ProgressReport ):
98
- # These width constants can't be changed yet without changing the code below to match.
97
+ """!
98
+ @brief Progress report subclass for non-TTY output.
99
+
100
+ A simpler progress bar is used than for the TTY version. Only the difference between
101
+ the previous and current progress is drawn for each update, making the output suitable
102
+ for piping to a file or similar output.
103
+ """
104
+
105
+ ## These width constants can't be changed yet without changing the code below to match.
99
106
WIDTH = 40
100
107
101
108
def _start (self ):
@@ -116,14 +123,17 @@ def _finish(self):
116
123
self ._file .write ("]\n " )
117
124
self ._file .flush ()
118
125
119
- ## @brief Progress printer factory.
120
- #
121
- # This factory function checks whether the output file is a TTY, and instantiates the
122
- # appropriate subclass of ProgressReport.
123
- #
124
- # @param file The output file. Optional. If not provided, or if set to None, then sys.stdout
125
- # will be used automatically.
126
126
def print_progress (file = None ):
127
+ """!
128
+ @brief Progress printer factory.
129
+
130
+ This factory function checks whether the output file is a TTY, and instantiates the
131
+ appropriate subclass of ProgressReport.
132
+
133
+ @param file The output file. Optional. If not provided, or if set to None, then sys.stdout
134
+ will be used automatically.
135
+ """
136
+
127
137
if file is None :
128
138
file = sys .stdout
129
139
try :
0 commit comments