Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unzip progress bars #3545

Merged
merged 11 commits into from Oct 8, 2018
Merged

Unzip progress bars #3545

merged 11 commits into from Oct 8, 2018

Conversation

jgsogo
Copy link
Contributor

@jgsogo jgsogo commented Sep 13, 2018

I've tried to introduce it in the less invasive way possible.

Example output doing a conan install boost/1.68.0@conan/stable:

Changelog: Feature: Progress bars for files unzipping.

image

@ghost ghost assigned jgsogo Sep 13, 2018
@ghost ghost added the stage: review label Sep 13, 2018
@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 13, 2018

This is the less invasive way to introduce tqdm for decompressing jobs, but if we are going to adopt tqdm everywhere maybe there are better ways to go.

@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 13, 2018

BTW, we have to investigate the 17.6MB vs 16.8M file sizes 😕

@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 13, 2018

I'm thinking about forwarding all unknown attributes/methods to the underlying self._fileobj, or inheriting from io.FileIO and override just the save method... do you think it is a clean approach?

@memsharded
Copy link
Member

Mb difference might be if using SI or not.

@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 13, 2018

Given the output here, I'm sure we have to disable progress bars on CI systems, too much noise (use tqdm(..., disable=True))

from tqdm import tqdm
from contextlib import contextmanager

TIMEOUT_BEAT_SECONDS = 30
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to make this value configurable? It is used to print a heartbeat character instead of the progress bar. Which value to use?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If that is for the "dot" being printed every few seconds, both for the user and CI not aborting, I would say hardcode it by now, to something that makes sense from a UI perspective (every 10 seconds?)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the "dot" being printed only if not output.is_terminal, so tipically it will be shown in CI and tests.

@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 13, 2018

Using the ConanOutput class, it seems that tqdm can't get information about the console size (in fact there is no method in our class to retrieve it), and it is using some kind of default size:

image

@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 13, 2018

There is a bug (py2) in this version of tqdm, output shows the following:;

Exception KeyError: KeyError(<weakref at 0x7f5cd8944fc8; to 'tqdm' at 0x7f5cd8a1c650>,) in <bound method tqdm.__del__ of Decompressing conan_export.tgz: 18.0B [00:00, 5.84kB/s]> ignored

Issue reported here: tqdm/tqdm#549 (PR ongoing: tqdm/tqdm#607)

Solution: may downgrade to a working version; or I think that catching the exception, closing the pb and re-raising it could work (in the open_binary function):

@chengs
Copy link

chengs commented Sep 14, 2018

@jgsogo, I am a developer of tqdm, let's wait for my PR to be merged. Currently, if you use py2 with tqdm, tqdm v4.20 should be fine (or v4.19)

Catching this exception (in tqdm>=4.21) might be tricky.

Copy link
Member

@memsharded memsharded left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks pretty good. Are the py2 issues with the tqdm lib already solved, is that PR already merged and released?

@@ -29,6 +29,7 @@
from conans.util.env_reader import get_env
from conans.search.search import filter_packages
from conans.client.cmd.uploader import UPLOAD_POLICY_SKIP
from conans.util import progress_bar as pb
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I'd prefer the full progress_bar, explicit name.


def __init__(self, fileobj, output, desc=None):
pb_kwargs = self.tqdm_defaults.copy()
self.ori_output = output
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make ori_output private?

TIMEOUT_BEAT_CHARACTER = '.'


class BinaryFileWrapper(object):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A class name more descriptive of its purpose, like ProgressBarFileReader

@jgsogo
Copy link
Contributor Author

jgsogo commented Sep 20, 2018

About the py2 issue, @chengs' PR is pending yet. Maybe we should downgrade the tqdm version in order to test this progress bar in the next release.

@lasote lasote added this to the 1.9 milestone Sep 24, 2018
@jgsogo jgsogo removed this from the 1.9 milestone Sep 25, 2018
@jgsogo jgsogo added this to the 1.8 milestone Sep 25, 2018
@lasote lasote changed the title POC for progress bars using tqdm Unzip progress bars Sep 25, 2018
@jgsogo jgsogo removed their assignment Sep 27, 2018
self._pb = tqdm(total=self.tell(), desc=desc, file=output, **pb_kwargs)
self.seek(0)

def seek(self, *args, **kwargs):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should it implement other fileojb methods, e.g. fileno?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi! This is just a proof of concept (to see if someone reports a weird behavior in CI or interactive). The implementation will be far more complete (following this idea: #3608), but probably it will remain only for binary files (files opened in binary mode) as this is the type of content be have to deal with in Conan.

@lasote lasote merged commit c9e833f into conan-io:develop Oct 8, 2018
@ghost ghost removed the stage: review label Oct 8, 2018
@jgsogo jgsogo deleted the issue/3543 branch October 8, 2018 10:11
grisumbras pushed a commit to grisumbras/conan that referenced this pull request Dec 27, 2018
* POC for progress bars using tqdm

* remove unused imports

* add seek function

* support only binary read, add a contextmanager to better control flow

* remove unused argument

* new line in non-terminal progress bar

* global var for the timeout char

* remove invalid file

* flush has no params

* more meaninful names to classes and variables

* downgrade tqdm to 4.20 to avoid error message
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[POC] Check tqdm progress bars
5 participants