Skip to content

Commit 269f734

Browse files
committedFeb 28, 2019
Progress doxy comment conversion.
1 parent fb0be50 commit 269f734

File tree

1 file changed

+47
-37
lines changed

1 file changed

+47
-37
lines changed
 

‎pyocd/utility/progress.py

+47-37
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
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.
1716

1817
import os
1918
import sys
2019
import logging
2120

2221
log = logging.getLogger('progress')
2322

24-
## @brief Base progress report class.
25-
#
26-
# This base class implements the logic but no output.
2723
class ProgressReport(object):
24+
"""!
25+
@brief Base progress report class.
26+
27+
This base class implements the logic but no output.
28+
"""
2829
def __init__(self, file=None):
2930
self._file = file or sys.stdout
3031
self.prev_progress = 0
@@ -71,12 +72,15 @@ def _update(self, progress):
7172
def _finish(self):
7273
raise NotImplemented()
7374

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.
7875
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.
8084
WIDTH = 20
8185

8286
def _update(self, progress):
@@ -89,13 +93,16 @@ def _finish(self):
8993
self.done = True
9094
self._file.write("\n")
9195

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.
9796
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.
99106
WIDTH = 40
100107

101108
def _start(self):
@@ -116,14 +123,17 @@ def _finish(self):
116123
self._file.write("]\n")
117124
self._file.flush()
118125

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.
126126
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+
127137
if file is None:
128138
file = sys.stdout
129139
try:

0 commit comments

Comments
 (0)