Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Showing animated progress while loading large QML files
QtWS25 Last Chance

Showing animated progress while loading large QML files

Scheduled Pinned Locked Moved QML and Qt Quick
19 Posts 7 Posters 25.0k Views
  • 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.
  • P Offline
    P Offline
    pjoe
    wrote on 12 Jan 2011, 12:48 last edited by
    #1

    Hi,

    I asked this on the mailing list, but thought I might as well also post it here :)

    I'm working on a QML based app. where I dynamically load 'sub' applications or plugins at runtime. However when running on maemo, loading of all the QML files of such a sub-app. takes quite a long time (5-10 secs, enough for the end user to be annoyed), so I'm wondering if there is a way to at least show an animated loading screen while this is going on. I've tried a couple of things, but haven't really found a satisfying solution:

    • Wrap the QML in a Loader: This allows me to show a static loading screen, but as soon as I ask the loader to load the rest of the QML content, all animation is blocked while it's loading.
    • Load the QML in a background thread: This fails because the QML contains a lot of images which in turn creates QPixmaps, which doesn't work from another thread than the main ui thread :(

    I've done a number of things to speed up the actual loading itself, but I don't think I can get it much faster:

    • Prefetch the QML, i.e. have the QML engine load the same QML file so it caches the parsed version of the QML
    • Prefetch images, i.e. have the image loaded into QPixmapCache ahead of time

    Any help appreciated,

    -pjoe

    1 Reply Last reply
    0
    • P Offline
      P Offline
      pjoe
      wrote on 13 Jan 2011, 08:33 last edited by
      #2

      So far my best bet is to draw progress indication from a separate thread using opengl. I found this article on multithreaded opengl in Qt: http://doc.trolltech.com/qq/qq06-glimpsing.html#writingmultithreadedglapplications

      1 Reply Last reply
      0
      • A Offline
        A Offline
        andre
        wrote on 13 Jan 2011, 09:50 last edited by
        #3

        I am really wondering what's blocking the animations (GUI thread?) while loading. I am starting to think that this is a bug. Access to resources should be asynchronous, right?

        1 Reply Last reply
        0
        • K Offline
          K Offline
          krishkn
          wrote on 13 Jan 2011, 10:14 last edited by
          #4

          There is WorkerScript{} element which runs in a sperate thread other than main GUI thread.Just try to use tht,might help :)

          Regards,
          Krishkn

          1 Reply Last reply
          0
          • M Offline
            M Offline
            mohsen
            wrote on 13 Jan 2011, 10:26 last edited by
            #5

            try this http://doc.qt.nokia.com/4.7/qprogressdialog.html

            1 Reply Last reply
            0
            • P Offline
              P Offline
              pjoe
              wrote on 13 Jan 2011, 10:50 last edited by
              #6

              Thanks, I did try worker script .. it doesn't help :( The issue is that when loading the main QML content the whole ui thread is blocked, so it's not possible to do any screen updates. And because QML Image items use QPixmaps, the actual instantiation of the QML hierarchy can only be done in the ui thread.

              I should also note that the QML content is loaded from resource files, so it's not getting the data that's taking time, it's building the QML hieararchy (and to some extent creating pixmaps as part of that).

              I'll have a look at QProgressDialog, but it looks like it is also supposed to run in the main ui thread. If that's the case it again doesn't help here :(

              1 Reply Last reply
              0
              • 2 Offline
                2 Offline
                2beers
                wrote on 13 Jan 2011, 11:03 last edited by
                #7

                I have to say I come to the same problem. And WorkerScript doesn't help. Maybe it's a bug. you should fill a request at http://bugreports.qt.nokia.com

                1 Reply Last reply
                0
                • K Offline
                  K Offline
                  Kxyu
                  wrote on 13 Jan 2011, 11:04 last edited by
                  #8

                  well, I guess we need to see your code

                  1 Reply Last reply
                  0
                  • P Offline
                    P Offline
                    pjoe
                    wrote on 13 Jan 2011, 11:14 last edited by
                    #9

                    Here is the source I'm using for loading QML (I've removed some error handling and debug output for readablility). The time is spent in beginCreate() and completeCreate(), which creates the QML hierarchy and blocks the ui thread.

                    @void MyDeclarativeView::setSource(const QUrl& a_Url)
                    {
                    m_Url = a_Url;
                    if(m_Root)
                    {
                    delete m_Root;
                    m_Root = 0;
                    }
                    if(m_Component)
                    {
                    delete m_Component;
                    m_Component = 0;
                    }
                    if(!m_Url.isEmpty())
                    {
                    m_Component = new QDeclarativeComponent(engine(), m_Url, this);

                        QObject *obj = m_Component->beginCreate(rootContext());
                    
                        m_Component->completeCreate();
                    
                        if (QDeclarativeItem *declarativeItem = qobject_cast<QDeclarativeItem *>(obj))
                        {
                            m_Scene->addItem(declarativeItem);
                            m_Root = declarativeItem;
                        }
                    
                        if(m_Root)
                        {
                            QSize initial = rootObjectSize();
                            resize(initial);
                            scene()->setSceneRect(0, 0, initial.width(), initial.height());
                        }
                    }
                    

                    }@

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      mohsen
                      wrote on 14 Jan 2011, 05:07 last edited by
                      #10

                      have you tried QThread too? to implement you own "please wait" dialog?

                      1 Reply Last reply
                      0
                      • P Offline
                        P Offline
                        pjoe
                        wrote on 14 Jan 2011, 08:31 last edited by
                        #11

                        I've tried loading the QML in a background thread, however this fails because while creating Image items QML will create QPixmaps, which can only be done in the main ui thread :(

                        So what I thought was to make the progress indication in another thread, but this requires that this thread is able to actually update the display and the only solution I've found for that is using opengl, unless somebody know of a way to refresh the display from another thread without opengl.

                        1 Reply Last reply
                        0
                        • M Offline
                          M Offline
                          mohsen
                          wrote on 14 Jan 2011, 08:46 last edited by
                          #12

                          is your process running on a loop like "for" or "while"? then you should use QApplication::processEvents(); inside your loop.

                          1 Reply Last reply
                          0
                          • M Offline
                            M Offline
                            mohsen
                            wrote on 14 Jan 2011, 08:50 last edited by
                            #13

                            for making connection between threads you can use Signal and Slots but i prefer to implement a class inherited by QThread

                            1 Reply Last reply
                            0
                            • A Offline
                              A Offline
                              andre
                              wrote on 14 Jan 2011, 08:59 last edited by
                              #14

                              mohsen, that is of little use if the GUI thread is already blocked by a Qt function, as explained above.

                              pjoe, I think your openGL may be the only way to circumvent this limitation at the moment, other than hacking in the Qt code itself to see what the holdup is. The only other thing that pops into mind is to see if the scenegraph QML backend is mature enough for your needs. At the "DevDays session":http://qt.nokia.com/developer/learning/online/talks/developerdays2010/tech-talks/scene-graph-a-different-approach-to-graphics-in-qt, it was still very much a research project, but it was on the roadmap shown by the Qt CTO (much to the suprise of the author of the research project, by the way).

                              1 Reply Last reply
                              0
                              • P Offline
                                P Offline
                                pjoe
                                wrote on 14 Jan 2011, 09:41 last edited by
                                #15

                                As Andre noted, the whole ui thread is blocked during beginCreate and completeCreate, so queued signals or events won't arrive until the QML loading is completed.

                                I've read about qml-scenegraph, and I think it is definitely the long term solution, but as I understood it is currently based on a branch before 4.7.0, so probably not quite ready for production use ... yet.

                                Unfortunately I'm also facing the problem that opengl is currently broken on the final target system - I'm just using maemo for testing, the end product is running on a custom embedded linux device (also arm based, with opengl hw).

                                1 Reply Last reply
                                0
                                • A Offline
                                  A Offline
                                  andre
                                  wrote on 14 Jan 2011, 09:52 last edited by
                                  #16

                                  very hackishm & ugly workaround: spawn another process to display an animated overlay?
                                  Sound like a waste of resources, but if you really need it, it may be the escape you need.

                                  Sorry that scenegraph is not far enough for you yet, that does not really suprise me, but it was worth suggesting. There was an interesting demo in the session showing an 8-thread simultaneous rendering of a single QML scene. That was the first time I ever saw multi-threaded UI rendering using a single process...

                                  1 Reply Last reply
                                  0
                                  • P Offline
                                    P Offline
                                    pjoe
                                    wrote on 14 Jan 2011, 09:59 last edited by
                                    #17

                                    @Andre .. I believe that should work, thanks ... but I agree - rather ugly.

                                    The other thing I'm looking at is breaking up my QML content, so it can be loaded in several smaller steps instead (using Qt.createComponent / createObject). This should allow the main screen to show up faster and then I load further views afterwards one by one using a Timer, so I can do some progress update while it's loading.

                                    1 Reply Last reply
                                    0
                                    • M Offline
                                      M Offline
                                      mohsen
                                      wrote on 14 Jan 2011, 09:59 last edited by
                                      #18

                                      even not possible by second executable file?

                                      1 Reply Last reply
                                      0
                                      • L Offline
                                        L Offline
                                        LangstoniusRex
                                        wrote on 13 Feb 2012, 07:08 last edited by
                                        #19

                                        One way we have tackled this with our LinuxMCE control application was to:
                                        create subclass QObject with its own QDeclarative view as well as signals and logic needed for our splash
                                        Connected signals from the objects running in the different threads
                                        When the app transitions from its splash to the gui, we pass the original QObjects QDeclarativeView as a pointer so we can essentially use the same view..

                                        Or, at least I believe that whats happening. :)

                                        http://svn.linuxmce.org/trac.cgi/browser/branches/LinuxMCE-1004/src/qOrbiter/ if you are curious

                                        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