RESOLVED INVALID Bug 89886
[Qt][NRWT] Fix determine_full_port_name()
https://bugs.webkit.org/show_bug.cgi?id=89886
Summary [Qt][NRWT] Fix determine_full_port_name()
Csaba Osztrogonác
Reported 2012-06-25 08:52:40 PDT
Now it returns with qt-linux, qt-win or qt-mac. It is absolutely incorrect. I think valid full port names should be: (leaves of the port graph) - qt-5.0-wk1 - qt-5.0-wk2 - qt-4.8
Attachments
Patch (4.54 KB, patch)
2012-07-25 19:08 PDT, Rafael Brandao
no flags
work in progress (7.34 KB, patch)
2012-08-10 01:19 PDT, Balazs Ankes
no flags
work in progress patch (8.92 KB, patch)
2012-08-10 08:29 PDT, Balazs Ankes
no flags
patch (9.87 KB, patch)
2012-08-22 08:33 PDT, Balazs Ankes
ossy: review-
ossy: commit-queue-
Rafael Brandao
Comment 1 2012-07-24 08:33:33 PDT
I've worked on this but forgot to upload a wip patch. But as we're going to remove qt-4.8 from trunk very soon, we will no longer need to identify the version of qt on the qt port name, and this will change a lot on my patch. So I will just wait until qt-4.8 to be removed to continue on this, or if anyone else wants to do it, feel free to do so. :)
Balazs Ankes
Comment 2 2012-07-25 05:00:08 PDT
Could you upload that patch, please?
Rafael Brandao
Comment 3 2012-07-25 19:08:31 PDT
Created attachment 154522 [details] Patch wip patch. it will change a lot when qt-4.8 get removed.
Balazs Ankes
Comment 4 2012-08-10 01:19:29 PDT
Created attachment 157667 [details] work in progress The unittests are working.
Balazs Ankes
Comment 5 2012-08-10 08:29:58 PDT
Created attachment 157737 [details] work in progress patch I removed the qt-4.8 specific lines from qt.py and qt_unittest.py. What else should we do in relation to qt-4.8 removal?
Rafael Brandao
Comment 6 2012-08-10 09:08:34 PDT
Comment on attachment 157737 [details] work in progress patch View in context: https://bugs.webkit.org/attachment.cgi?id=157737&action=review LGTM, but this is an informal review. Maybe you should get some feedback from dpranke. > Tools/Scripts/webkitpy/layout_tests/port/qt.py:57 > + #print("host: " + str(host) + " options: " + str(options) + " port_name " + str(port_name)) You can remove this comment line. :-) > Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py:140 > + port._version = "qt-5.0-wk2" This looks wrong, you're setting a private member of port outside it. Not sure of how you should do though, maybe modifying our make_port() to handle this by default, or maybe passing a parameter on it?
Balazs Ankes
Comment 7 2012-08-22 08:33:10 PDT
Created attachment 159944 [details] patch I made the suggested modifications. Could somebody take a look at the patch?
Peter Gal
Comment 8 2012-08-22 08:43:15 PDT
View in context: https://bugs.webkit.org/attachment.cgi?id=159944&action=review > Tools/Scripts/webkitpy/layout_tests/port/qt.py:57 > + version = cls.qt_version(host.executive) Why do we need the version here? > Tools/Scripts/webkitpy/layout_tests/port/qt.py:59 > + port_name = '' No need for this line. The lines below will set the port_name in this function. > Tools/Scripts/webkitpy/layout_tests/port/qt.py:110 > + version = 'qt-5.0-wk2' Why is this the same as the port_name returned by the determine_full_port_name function? Shouldn't this be simply '5.0'?
Dirk Pranke
Comment 9 2012-08-22 12:46:18 PDT
Either I don't understand this change or there is some confusion over what the port_name is supposed to capture. the full port name is supposed to be able to uniquely identify the full baseline search path. It looks like this is not the case with this path, i.e., if I specify "qt-5.0-wk1" then I may get the apple, win or, linux baselines depending on which platform I'm running on. Is that correct? It is okay for "qt-5.0-wk1" to be accepted as a shorthand for "figure out which platform I'm on", but that would be *input* to determine_full_port_name, not output. Also, are you intentionally getting rid of qt-4.8 here (or is this already unsupported)?
Dirk Pranke
Comment 10 2012-08-22 13:18:28 PDT
following a conversation w/ rafaelbrando on #irc, maybe it'll be helpful for to give a little more context about the design here ... The basic idea is that some tools (like garden-o-matic) need a way to be able to ensure a very specific configuration for a port, one that uniquely specifies all of the various attributes we care about (implementation, operation system, os version, wk1/wk2, release/debug etc.) In particular, we care the most about the attributes that will affect what baseline_search_path() is used. The theory behind determine_full_port_name is that we hand that routine a string (and an optional options argument) and can get a string back out that will uniquely determine that configuration, so when the outputted string is handed to port.__init__(), the code doesn't need to look at anything else to determine behavior (i.e., we don't check and should ignore what operating system we're running on, because we might need to be able to construct a mac qt port even if we're running on linux). [ Note that at the moment no port implements this theory completely, because no port encodes release/debug in the full port name, and the code probably wouldn't even work right if we tried. This is okay, because we don't have different baseline search paths for release vs. debug ]. So, it's okay fot "qt-5.0-wk1" to be *input* to determine full port name, (this basically says use qt 5.0, not 4.8, and use wk2, not wk2, but pick the os you're running on) but hence not output. Note that determine_full_port_name() is *only* used by the port factory to figure out what to pass to the port constructor. It should determine what port.name() returns. However, the port.name() by itself should not be used to determine anything else about the port's behavior; there are separate methods to determine behavior, like baseline_platform_dir(), baseline_version_dir(), version(), operating_system(), configuration(), etc. Once the port is constructed, callers should just use port.name() for debugging ...
Rafael Brandao
Comment 11 2012-08-22 13:25:32 PDT
(In reply to comment #10) > following a conversation w/ rafaelbrando on #irc, maybe it'll be helpful for to give a little more context about the design here ... > > The basic idea is that some tools (like garden-o-matic) need a way to be able to ensure a very specific configuration for a port, one that uniquely specifies all of the various attributes we care about (implementation, operation system, os version, wk1/wk2, release/debug etc.) In particular, we care the most about the attributes that will affect what baseline_search_path() is used. > > The theory behind determine_full_port_name is that we hand that routine a string (and an optional options argument) and can get a string back out that will uniquely determine that configuration, so when the outputted string is handed to port.__init__(), the code doesn't need to look at anything else to determine behavior (i.e., we don't check and should ignore what operating system we're running on, because we might need to be able to construct a mac qt port even if we're running on linux). > > [ Note that at the moment no port implements this theory completely, because no port encodes release/debug in the full port name, and the code probably wouldn't even work right if we tried. This is okay, because we don't have different baseline search paths for release vs. debug ]. > > So, it's okay fot "qt-5.0-wk1" to be *input* to determine full port name, (this basically says use qt 5.0, not 4.8, and use wk2, not wk2, but pick the os you're running on) but hence not output. > > Note that determine_full_port_name() is *only* used by the port factory to figure out what to pass to the port constructor. It should determine what port.name() returns. However, the port.name() by itself should not be used to determine anything else about the port's behavior; there are separate methods to determine behavior, like baseline_platform_dir(), baseline_version_dir(), version(), operating_system(), configuration(), etc. Once the port is constructed, callers should just use port.name() for debugging ... This clarifies a lot! Thanks. I think we've been on the wrong approach here. We should use "qt-{version}-{wk1,wk2}-{platform}-{release,debug}" for determine_full_port_name() and then we would need to change how we use the port name on those separated methods you've talked about (baseline paths, configurations, etc). Ossy, Balazs, what do you think?
Dirk Pranke
Comment 12 2012-08-22 13:37:29 PDT
I probably wouldn't do the "-{release,debug}" part, since no other port does. Also, I meant to note that one could (and some have) argue that using strings for this is a bad design. In part I agree, and this is partially what the TestConfiguration object was intended to do, but it turns out that strings have some advantages, and TestConfigurations have their own disadvantages ...
Simon Hausmann
Comment 13 2012-08-23 00:19:49 PDT
Comment on attachment 159944 [details] patch Would it perhaps make sense to keep this code around a little longer until qtwebkit-2.3 is out or stops merging from trunk? (this is an open question :) the alternative is that I just try to find commits like these and revert them in the branch to continue to be able to run the layout tests)
Csaba Osztrogonác
Comment 14 2012-11-21 06:10:31 PST
Comment on attachment 159944 [details] patch It is so obsolete. We will fix it later.
Jocelyn Turcotte
Comment 15 2014-02-03 03:21:29 PST
=== Bulk closing of Qt bugs === If you believe that this bug report is still relevant for a non-Qt port of webkit.org, please re-open it and remove [Qt] from the summary. If you believe that this is still an important QtWebKit bug, please fill a new report at https://bugreports.qt-project.org and add a link to this issue. See http://qt-project.org/wiki/ReportingBugsInQt for additional guidelines.
Note You need to log in before you can comment on or make changes to this bug.