Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to stop file copying
Forum Updated to NodeBB v4.3 + New Features

How to stop file copying

Scheduled Pinned Locked Moved Unsolved General and Desktop
19 Posts 5 Posters 1.0k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • JoeCFDJ JoeCFD

    @VRonin I did this with buffer size. However, QFile close() call takes very long. It turns out that the copied data is cached at first. In closing, QFile flushes the data to the disk. Tried to flush after each buffer write and no success. Stop still does not work. May take a look at how QSaveFile works.

    Christian EhrlicherC Online
    Christian EhrlicherC Online
    Christian Ehrlicher
    Lifetime Qt Champion
    wrote on last edited by
    #10

    @JoeCFD said in How to stop file copying:

    In closing, QFile flushes the data to the disk.

    It's not QFile but the OS.

    Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
    Visit the Qt Academy at https://academy.qt.io/catalog

    JoeCFDJ 1 Reply Last reply
    1
    • Christian EhrlicherC Christian Ehrlicher

      @JoeCFD said in How to stop file copying:

      In closing, QFile flushes the data to the disk.

      It's not QFile but the OS.

      JoeCFDJ Offline
      JoeCFDJ Offline
      JoeCFD
      wrote on last edited by
      #11

      @Christian-Ehrlicher True. It seems it is not doable on Linux to make a progress bar or stop in the middle of copying when file size is big. Just tested a transfer of a file with size 260MB with rsync. Caching time is less than 1s. But flushing takes more than 1 minute.

      jsulmJ 1 Reply Last reply
      0
      • JoeCFDJ JoeCFD

        @Christian-Ehrlicher True. It seems it is not doable on Linux to make a progress bar or stop in the middle of copying when file size is big. Just tested a transfer of a file with size 260MB with rsync. Caching time is less than 1s. But flushing takes more than 1 minute.

        jsulmJ Offline
        jsulmJ Offline
        jsulm
        Lifetime Qt Champion
        wrote on last edited by
        #12

        @JoeCFD said in How to stop file copying:

        It seems it is not doable on Linux to make a progress bar

        It is doable if you implement it manually (instead of using QFile::copy()). I mean: read the original file in blocks and write each block to the new file. Between each block you can update the progress bar.

        https://forum.qt.io/topic/113070/qt-code-of-conduct

        JoeCFDJ 1 Reply Last reply
        2
        • jsulmJ jsulm

          @JoeCFD said in How to stop file copying:

          It seems it is not doable on Linux to make a progress bar

          It is doable if you implement it manually (instead of using QFile::copy()). I mean: read the original file in blocks and write each block to the new file. Between each block you can update the progress bar.

          JoeCFDJ Offline
          JoeCFDJ Offline
          JoeCFD
          wrote on last edited by JoeCFD
          #13

          @jsulm I did it with some source code in QFile::copy(). No help. Flushing happens when close() is called. This is how copy works on Linux.
          char block[ 131072 ];
          qint64 total_read{ 0 };

                      while ( false == source_file.atEnd() ) {
                          qint64 read_in = source_file.read( block, sizeof( block ) );
                          if ( read_in <= 0 ) {
                              break;
                          }
          
                          total_read += read_in;
                          if ( read_in != destination_file.write( block, read_in ) ) {
                              break;
                          }
          
                          value += read_in / 1024.0;
                          progress_dialog.setValue( static_cast< int >( value ) );
          
                          if ( true == progress_dialog.wasCanceled() ) {
                              break;
                          }
                      }
          
                      source_file.close();
                      destination_file.close();
          
          Christian EhrlicherC jsulmJ JonBJ 3 Replies Last reply
          0
          • JoeCFDJ JoeCFD

            @jsulm I did it with some source code in QFile::copy(). No help. Flushing happens when close() is called. This is how copy works on Linux.
            char block[ 131072 ];
            qint64 total_read{ 0 };

                        while ( false == source_file.atEnd() ) {
                            qint64 read_in = source_file.read( block, sizeof( block ) );
                            if ( read_in <= 0 ) {
                                break;
                            }
            
                            total_read += read_in;
                            if ( read_in != destination_file.write( block, read_in ) ) {
                                break;
                            }
            
                            value += read_in / 1024.0;
                            progress_dialog.setValue( static_cast< int >( value ) );
            
                            if ( true == progress_dialog.wasCanceled() ) {
                                break;
                            }
                        }
            
                        source_file.close();
                        destination_file.close();
            
            Christian EhrlicherC Online
            Christian EhrlicherC Online
            Christian Ehrlicher
            Lifetime Qt Champion
            wrote on last edited by
            #14

            @JoeCFD said in How to stop file copying:

            This is how copy works on Linux.

            On every os where the caching is not explicitly disabled (which is not by default) - that's what a cache is for.

            Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
            Visit the Qt Academy at https://academy.qt.io/catalog

            1 Reply Last reply
            0
            • JoeCFDJ JoeCFD

              @jsulm I did it with some source code in QFile::copy(). No help. Flushing happens when close() is called. This is how copy works on Linux.
              char block[ 131072 ];
              qint64 total_read{ 0 };

                          while ( false == source_file.atEnd() ) {
                              qint64 read_in = source_file.read( block, sizeof( block ) );
                              if ( read_in <= 0 ) {
                                  break;
                              }
              
                              total_read += read_in;
                              if ( read_in != destination_file.write( block, read_in ) ) {
                                  break;
                              }
              
                              value += read_in / 1024.0;
                              progress_dialog.setValue( static_cast< int >( value ) );
              
                              if ( true == progress_dialog.wasCanceled() ) {
                                  break;
                              }
                          }
              
                          source_file.close();
                          destination_file.close();
              
              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #15

              @JoeCFD said in How to stop file copying:

              Flushing happens when close() is called

              I did not say the opposite, I was talking about progress bar...

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              JoeCFDJ 1 Reply Last reply
              0
              • JoeCFDJ JoeCFD

                @jsulm I did it with some source code in QFile::copy(). No help. Flushing happens when close() is called. This is how copy works on Linux.
                char block[ 131072 ];
                qint64 total_read{ 0 };

                            while ( false == source_file.atEnd() ) {
                                qint64 read_in = source_file.read( block, sizeof( block ) );
                                if ( read_in <= 0 ) {
                                    break;
                                }
                
                                total_read += read_in;
                                if ( read_in != destination_file.write( block, read_in ) ) {
                                    break;
                                }
                
                                value += read_in / 1024.0;
                                progress_dialog.setValue( static_cast< int >( value ) );
                
                                if ( true == progress_dialog.wasCanceled() ) {
                                    break;
                                }
                            }
                
                            source_file.close();
                            destination_file.close();
                
                JonBJ Offline
                JonBJ Offline
                JonB
                wrote on last edited by JonB
                #16

                @JoeCFD
                I don't understand what you are saying. Yes, flushing happens when close() is called. Yes that can take a while. In particular it depends what the device is, and how much buffering is going on in memory. Which you may be able to affect/change, e.g. via some system configuration.

                If you are saying you want more time spent during the copying and less time spent at the end of the copying, try using Linux man sync(2). That's what you need to flush. You will probably want to call int syncfs(int fd); on the file descriptor you are copying to. Don't know how/whether you get to that from Qt, have a look through QFile, or you can use level 2 Linux calls to do the whole file copy. The syncfs() call needs to go inside your loop.

                You should see a noticeable effect of syncing especially if you use a slow device like a USB stick.

                1 Reply Last reply
                2
                • jsulmJ jsulm

                  @JoeCFD said in How to stop file copying:

                  Flushing happens when close() is called

                  I did not say the opposite, I was talking about progress bar...

                  JoeCFDJ Offline
                  JoeCFDJ Offline
                  JoeCFD
                  wrote on last edited by
                  #17

                  @jsulm If flushing takes more time than write, progress bar display does not make a lot of sense.

                  JonBJ 1 Reply Last reply
                  0
                  • JoeCFDJ JoeCFD

                    @jsulm If flushing takes more time than write, progress bar display does not make a lot of sense.

                    JonBJ Offline
                    JonBJ Offline
                    JonB
                    wrote on last edited by JonB
                    #18

                    @JoeCFD
                    That is true, and there are many apps which are guilty of this. How many of them reach 100% fairly quickly and then sit there for ages? I'm looking at you, Microsoft, in particular!

                    Other than trying to calculate what the residue will be at the end, and allowing for that during your progress, do try the syncing, I think this will give you more accuracy. P.S. Don't do the sync too frequently. If you write one byte at a time and sync between each your operation will be slow! :) Your block is ~128K, that might be fine.

                    JoeCFDJ 1 Reply Last reply
                    0
                    • JonBJ JonB

                      @JoeCFD
                      That is true, and there are many apps which are guilty of this. How many of them reach 100% fairly quickly and then sit there for ages? I'm looking at you, Microsoft, in particular!

                      Other than trying to calculate what the residue will be at the end, and allowing for that during your progress, do try the syncing, I think this will give you more accuracy. P.S. Don't do the sync too frequently. If you write one byte at a time and sync between each your operation will be slow! :) Your block is ~128K, that might be fine.

                      JoeCFDJ Offline
                      JoeCFDJ Offline
                      JoeCFD
                      wrote on last edited by
                      #19

                      @JonB WIll check it out. Thanks.

                      1 Reply Last reply
                      0

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved