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. Multiple requests in the same method
Forum Updated to NodeBB v4.3 + New Features

Multiple requests in the same method

Scheduled Pinned Locked Moved Solved General and Desktop
24 Posts 3 Posters 5.6k Views 3 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.
  • Chris KawaC Offline
    Chris KawaC Offline
    Chris Kawa
    Lifetime Qt Champion
    wrote on last edited by
    #12

    Depending on the api of that service looping over pages is also easy. Just don't think about looping in terms of c++ for.
    It's more like:

    void requestFirstPage(); //makes a request and connects to parsePage()
    void parsePage();// parses page, if there's more pages makes another request and connects co parsePage() again, otherwise emits some finishing signal
    
    1 Reply Last reply
    0
    • M Offline
      M Offline
      Mr Gisa
      wrote on last edited by
      #13

      What about the result list, I should put it as a member of the class or emit it together with the signal?

      1 Reply Last reply
      0
      • Chris KawaC Offline
        Chris KawaC Offline
        Chris Kawa
        Lifetime Qt Champion
        wrote on last edited by
        #14

        If you're getting results as you make more requests you'll need a member anyway to store them. After that either make a finishing signal something like searchFinished(const QStringList& results) or just searchFinished() and another method like QStringList searchResults() const so the caller can retrieve results. Or you can combine both, whatever you like more.

        If you want to update some ui with the results in realtime you could also add a signal like searchResultsAvailable after each request processed so the caller can show partial results as they come.

        1 Reply Last reply
        3
        • M Offline
          M Offline
          Mr Gisa
          wrote on last edited by
          #15

          Amazing amazing, thank you for making me see this in a whole new way. I will be playing with this in order to learn more.

          1 Reply Last reply
          0
          • M Offline
            M Offline
            Mr Gisa
            wrote on last edited by
            #16

            @Chris-Kawa I was playing around and I have two questions:

            1 - Is it better for me to connect with the QNetworkAccessManager finished in order to send the QNetworkReply to another method such as processJson or I can have one QNetworkReply pointer member and reuse that for other requests?

            2 - What about error handling for each step?

            1 Reply Last reply
            0
            • Chris KawaC Offline
              Chris KawaC Offline
              Chris Kawa
              Lifetime Qt Champion
              wrote on last edited by Chris Kawa
              #17

              The answer to both questions is "whatever you want or will integrate nicely with the rest of your code".
              To give it a little more substance:

              1 - It's generally suggested to use single QNAM instance. Since you mentioned you can have multiple requests in flight at the same time connecting to the QNAM's finished signal might be inconvenient. You would have to somehow distinguish which series of requests it is and which "stage" of it it is. That's of course doable. You could for example do something like this:

              auto response = qnam.get(request);
              response->setProperty("request_type", foo); //foo could be an enum indicating login, logout, search etc.
              response->setProperty("request_stage", bar); // bar could be an enum indicating json retrieval or the following request
              

              and then in the slot connected to QNAM's finished(QNetworkReply*) signal you could check these properties and do a big "switch". This would work but can get kinda messy as those switches tend to grow over time and gather unrelated functionalities.

              Another approach is to connect not to the QNAM's finished signal but to the response's finished signal. This way you can "string" the requests together and you don't have to do a big switch to see which one it is. every method knows what it receives and can start the next stage.
              To get the response object you can use a little lambda on connection site:

              void Searcher::search(const QString& what)
              {
                 auto reply = qnam.get( /* build the request from what*/ );
                 connect(reply, &QNetworkReply::finished, [=]{ processJson(reply); });
              }
              
              void Searcher::processJson(QNetworkReply* reply) { ... }
              

              Or, if you want to spare yourself the lambda, you can also do it like this:

              void Searcher::search(const QString& what)
              {
                 auto reply = qnam.get( /* build the request from what*/ );
                 connect(reply, &QNetworkReply::finished, this, &Searcher::processJson);
              }
              
              void Searcher::processJson()
              {
                 auto reply =  qobject_cast<QNetworkReply*>(sender());
                 ...
              }
              

              Some people will tell you that sender() is bad and you shouldn't use it (even the docs says that), but if you keep methods that use it private I consider that internal piping and a valid use for sender(). It is considered bad because you never know how the slot is called if it's public, but if it's private you, as the designer of the class should know and be responsible for calling it right.
              Anyway, lambda or not, this is one way to do it.

              2 - That one is pretty simple really. Apart from connecting to finished signal of the reply connect also to the error and sslErrors (if you use https). If you don't care what particular error happened just emit searchFinished with an empty list of results. If you do care (e.g. want to show some message to the user) instead of emitting searchFinished you could emit something like searchFailed(QString& reason) or you could add another param to the searchFinished signal e.g. an enum that would indicate what type of error occurred or a message string where empty string would indicate a successful search and non-empty would contain the error message.

              1 Reply Last reply
              2
              • M Offline
                M Offline
                Mr Gisa
                wrote on last edited by
                #18

                @Chris-Kawa So in this case I can use the same QNetworkReply with another request right? But where do I delete the reply? I see in the docs that they usually call deleteLater in the finish slot, if I want to reuse the reply where to delete it?

                1 Reply Last reply
                0
                • Chris KawaC Offline
                  Chris KawaC Offline
                  Chris Kawa
                  Lifetime Qt Champion
                  wrote on last edited by
                  #19

                  You can't reuse a reply. A new reply object is created by QNAM and returned to you by each call to get(), post() etc.
                  You can store and reuse a pointer to it but IMO this can lead to bugs if you mix up your requests. I wouldn't recommend that. It's better to just connect to what you need and be done with it.

                  You can call deleteLater in the slot connected to finished(). As said before - you can't reuse the reply object, just the pointer to it and this is the trouble I mentioned - it's easy to mess up and delete the wrong thing or at the wrong time. I'd suggest not to store it at all and rely on either function param or sender() in the slot connected to finished() signal.

                  M 1 Reply Last reply
                  1
                  • Chris KawaC Chris Kawa

                    You can't reuse a reply. A new reply object is created by QNAM and returned to you by each call to get(), post() etc.
                    You can store and reuse a pointer to it but IMO this can lead to bugs if you mix up your requests. I wouldn't recommend that. It's better to just connect to what you need and be done with it.

                    You can call deleteLater in the slot connected to finished(). As said before - you can't reuse the reply object, just the pointer to it and this is the trouble I mentioned - it's easy to mess up and delete the wrong thing or at the wrong time. I'd suggest not to store it at all and rely on either function param or sender() in the slot connected to finished() signal.

                    M Offline
                    M Offline
                    Mr Gisa
                    wrote on last edited by
                    #20

                    @Chris-Kawa Thank you very much

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      Mr Gisa
                      wrote on last edited by
                      #21

                      @Chris-Kawa Playing around I noticed that I needed extra information on my search method, two more arguments as QString. The thing is that I will be needing that two extra arguments later in another method/slot.

                      More or less like this:

                      search > processJson > processProducts

                      I will need the extra arguments in the processProducts.

                      The option I thought was:

                      1 - store the values passed to search in a member and get later in another method.

                      Is there a better alternative for that?

                      1 Reply Last reply
                      0
                      • Chris KawaC Offline
                        Chris KawaC Offline
                        Chris Kawa
                        Lifetime Qt Champion
                        wrote on last edited by
                        #22

                        If one instance of your class does only one search at a time then sounds like a reasonable thing to store the extra state as members. No point in complicating things.

                        1 Reply Last reply
                        0
                        • M Offline
                          M Offline
                          Mr Gisa
                          wrote on last edited by
                          #23

                          Yes, it will be one search per instance, because I will create a QTabWidget and each QWidget of the tab will have an instance of the Searcher. I mean, the new tab will be created after the user fills a line edit and click on the search button.

                          1 Reply Last reply
                          0
                          • M Offline
                            M Offline
                            Mr Gisa
                            wrote on last edited by Mr Gisa
                            #24

                            @Chris-Kawa I have a few more questions:

                            The searcher will also be a downloader.

                            The idea behind this application is that the user can search for a product and the product will appear in a tree view. I will explain the tree view.

                            I want to do something like this:

                            1 - The user fills a line edit with the product he wants to search and press the search button.
                            2 - A new tab will be created in the QTabWidget with a tree view and an instance of the Searcher.
                            3 - When the search is done and Searcher emits a signal that the search is done I want to display the results in a tree view.
                            4 - The results that Searcher will return is a collection of Products, a struct with a few information such as the name, color and other information, but the most important one, it will have a link to a zip file.
                            5 - I want to create a button on the tree view that is called Download in each Product which contains the zip link.
                            6 - When the user clicks on that button I want to download that zip file and get the file names and put as children to the download clicked item on the tree view.

                            For me its kinda complicated, any ideas of what I can do to archive that?

                            0_1525652398920_de747c9f-def5-48cc-bb49-41ac06971d2c-image.png

                            The Product B has a zip link so it will have a download button on the tree view. Imagine that the user clicked on the button, it downloaded the zip file, got its the file names and put as children for ProductB.

                            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