Bug 175176 - Krunner does not execute the command when you type a match
Summary: Krunner does not execute the command when you type a match
Status: RESOLVED FIXED
Alias: None
Product: krunner
Classification: Plasma
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Plasma Bugs List
URL:
Keywords:
: 176439 177434 178134 179372 183474 184038 (view as bug list)
Depends on:
Blocks:
 
Reported: 2008-11-15 00:15 UTC by Armin
Modified: 2009-04-08 16:35 UTC (History)
16 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments
patch for workspace/krunner (2.12 KB, patch)
2009-01-26 01:34 UTC, Jacopo De Simoi
Details
patch for kdelibs/plasma (1.97 KB, patch)
2009-01-26 01:35 UTC, Jacopo De Simoi
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Armin 2008-11-15 00:15:01 UTC
Version:            (using Devel)
OS:                Linux
Installed from:    Compiled sources

An example would best describe the situation:

say, you bring up krunner and type 'gvim' and as expected it runs gvim perfectly.  But then you bring up krunner and again type 'gvim' while the krunner has this exact match in its history, and therefore when you press Enter, it won't execute it.  The workaround is to just type 'gvi' and then it autocompletes and the press Enter and then it runs it fine.  Or just type 'gvim ' (with a space at the end) and then it runs it just find.  But, the problem is when you type 'gvim' the second time, when you press Enter, it just doesn't do anything, you just have to use one of the workarounds!!

Also, as a side-note, I would like to see an option to disable history all-together!

Thank you for reading this and all of you and KDE 4.2 is ROCKING hard core!!! :D
Comment 1 Aaron J. Seigo 2008-12-01 02:42:15 UTC
*** Bug 176439 has been marked as a duplicate of this bug. ***
Comment 2 FiNeX 2008-12-20 21:02:41 UTC
*** Bug 178134 has been marked as a duplicate of this bug. ***
Comment 3 FiNeX 2009-01-05 01:03:02 UTC
*** Bug 177434 has been marked as a duplicate of this bug. ***
Comment 4 FiNeX 2009-01-05 01:03:36 UTC
*** Bug 179372 has been marked as a duplicate of this bug. ***
Comment 5 Dario Andres 2009-01-05 01:15:50 UTC
As stated in bug 179372 comment 5 I can reproduce this in current trunk. Now in this bug I see a proper way to reproduce it :)
Comment 6 Dario Andres 2009-01-10 13:37:25 UTC
May be bug 180241 related to this?
Comment 7 David Nolden 2009-01-19 03:09:22 UTC
Would be a great thing to fix before kde 4.2 release. To me it feels like it doesn't run the command I type exactly 50% of the times.
Comment 8 David Nolden 2009-01-19 14:11:34 UTC
After deleting my .kde4/share/config/krunnerrc, I'm not able to reproduce this any more. Unfortunately I forgot to back up the old config.
Comment 9 David Nolden 2009-01-19 14:29:47 UTC
Ok, after typing some other commands, it actually did happen again, so it probably isn't related to krunnerrc.
Comment 10 paalsteek 2009-01-21 08:41:15 UTC
Same problem here. Another workaround is to delete the last letter and retype it. Should be great to be fixed before 4.2.
Comment 11 Paweł Prażak 2009-01-24 17:21:36 UTC
Same problem here and all 3 workarounds working.
When I run krunner in konsole and type in for example kwrite, I have:
"QObject: Do not delete object, 'unnamed', during its event handler!" for every letter.
Comment 12 Michal Svoboda 2009-01-25 18:24:26 UTC
I must say I encounter the bug on daily basis now, so if you wanna have debugging requests for me, feel free.

Today I even encountered even worse behavior, that is, none of the workarounds worked. It simply did not run anything on ENTER no matter what I tried. Closing the window and opening it again got me back to the old buggy behavior, with the workarounds working.

This all suggests it really is some silly oversight with handling objects and/or memory.
Comment 13 Jacopo De Simoi 2009-01-26 01:33:14 UTC
Thanks to a long flight, I managed to come up with something.

The bug is originated in the following function:

workspace/krunner/interfaces/default/interface.cpp:432

void Interface::queryTextEdited(const QString &query)
{
[...]
        m_resultsScene->launchQuery(query);
        m_queryRunning = true;
[...]    
}

the variable m_queryRunning is always set to true after launching a query.
*BUT* in the case described in the bug report we have that the function launchQuery actually does not launch any queries since we have just queried the exact same term last time (the autocompleted string), therefore:

kdelibs/plasma/runnermanager.cpp:407

void RunnerManager::launchQuery(const QString &term, const QString &runnerName)
{
[...]
    if (d->context.query() == term) { //-----------RETURNS TRUE---------
        // we already are searching for this!
        return;
    }

Since it returns without launching a query, the following function will never be invoked:

workspace/krunner/interfaces/default/interface.cpp:460
void Interface::matchCountChanged(int count)
{
    m_queryRunning = false;
    [...]
 
therefore m_queryRunning is never reset to false and so:

workspace/krunner/interfaces/default/interface.cpp:423
void Interface::runDefaultResultItem()
{
    if (m_queryRunning) { //------- RETURNS TRUE!
        m_delayedRun = true;
    } else {
        run(m_resultsScene->defaultResultItem());
    }
}

and the command is not executed.

I came out with a patch which lets launchQuery return true or false depending on the fact that a query is launched or not. I attach the patch in two pieces: one for krunner, the other one for kdelibs, I didn't really know the best way to put them togheter. 
It shouldn't break anything but PLEASE CHECK, I really would like to see this bug fixed before 4.2.

(Also, this might well be unrelated but the patch seems to resolve an occasional crash that I noticed when typing an exact match (e.g. systemsettings), then hitting backspace to delete the last letter (and all matches disappear) and hitting return to run the command. This usually lead to a crash)
Comment 14 Jacopo De Simoi 2009-01-26 01:34:41 UTC
Created attachment 30614 [details]
patch for workspace/krunner
Comment 15 Jacopo De Simoi 2009-01-26 01:35:21 UTC
Created attachment 30615 [details]
patch for kdelibs/plasma
Comment 16 Jacopo De Simoi 2009-01-28 16:48:25 UTC
Has anybody checked out the patches I attached? Do they solve the problem for you as well?
Comment 17 Dario Andres 2009-01-30 00:01:19 UTC
@Jacopo: I just applied it and it seems to work OK, I will try it a little more. But I suppose we need aprooval from someone related to KRunner/Plasma
Good job :)
Comment 18 David Nolden 2009-02-01 13:07:20 UTC
Come on plasma devs, there is even a patch, what's going on with this?

This bug renders krunner one of the most frustrating app I've used for a long time(It's totally useless if it doesn't run the app).
Comment 19 Beat Wolf 2009-02-01 14:26:22 UTC
SVN commit 919611 by beatwolf:

allow krunner to launch applications that have been launched before.
BUG:175176


 M  +6 -5      runnermanager.cpp  
 M  +2 -2      runnermanager.h  


WebSVN link: http://websvn.kde.org/?view=rev&revision=919611
Comment 20 Beat Wolf 2009-02-01 14:32:42 UTC
SVN commit 919616 by beatwolf:

Allow krunner to run application that have already been launched from krunner
BUG:175176


 M  +1 -2      interface.cpp  
 M  +4 -4      resultscene.cpp  
 M  +2 -2      resultscene.h  


WebSVN link: http://websvn.kde.org/?view=rev&revision=919616
Comment 21 Beat Wolf 2009-02-01 15:06:40 UTC
Actually i'm sorry, had to revert the patch.
The patch is binary incompatible (for kdelibs). I try to come up with another solution of the problem, if there is one.
Comment 22 Beat Wolf 2009-02-01 15:29:45 UTC
SVN commit 919662 by beatwolf:

found a binary compatible way to do exactly the same as the previous patch.
BUG:175176



 M  +3 -2      interface.cpp  
 M  +6 -2      resultscene.cpp  
 M  +2 -2      resultscene.h  


WebSVN link: http://websvn.kde.org/?view=rev&revision=919662
Comment 23 Jacopo De Simoi 2009-02-01 16:09:00 UTC
(In reply to comment #22)
> SVN commit 919662 by beatwolf:
> 
> found a binary compatible way to do exactly the same as the previous patch.
> BUG:175176
> 
> 
> 
>  M  +3 -2      interface.cpp  
>  M  +6 -2      resultscene.cpp  
>  M  +2 -2      resultscene.h  
> 
> 
> WebSVN link: http://websvn.kde.org/?view=rev&revision=919662
> 

Much better, thanks!!
Btw,

bool temp = !(term.isEmpty() || m_runnerManager->query() == term);
  m_runnerManager->launchQuery(term, runner); 	    

why do you still call launchQuery if we already know it is not going to do anything?

 J
Comment 24 Beat Wolf 2009-02-01 16:14:05 UTC
good question.

From what i can see,it actually does stuff:

    if (d->runners.isEmpty()) {
        d->loadRunners();
    }

    if (term.isEmpty()) {
        reset();
        return;
    }

Since i did not write that code, and i'm not totaly sure about the implications of not calling the code, and it is not a performance critical code, i decided to call it anyway. good or bad?
    if (d->context.query() == term) {
        // we already are searching for this!
        return;
    }
Comment 25 Beat Wolf 2009-02-01 16:16:44 UTC
that was actually one code segment. I must have missclicked to write my text in the middle of it. Here the same code segment:

    if (d->runners.isEmpty()) {
        d->loadRunners();
    }

    if (term.isEmpty()) {
        reset();
        return;
    }

    if (d->context.query() == term) {
        // we already are searching for this!
        return;
    }
Comment 26 Jacopo De Simoi 2009-02-01 16:19:18 UTC
good point indeed.
do you mind backporting it to 4.2?

Thanks 

 -- J
Comment 27 Beat Wolf 2009-02-01 16:42:10 UTC
backported it
Comment 28 David Nolden 2009-02-01 18:00:52 UTC
Great, thanks. Seems to work very good.
Comment 29 Dario Andres 2009-02-12 00:17:14 UTC
*** Bug 184038 has been marked as a duplicate of this bug. ***
Comment 30 Jonathan Thomas 2009-02-15 16:02:58 UTC
*** Bug 183474 has been marked as a duplicate of this bug. ***
Comment 31 David Nolden 2009-03-04 01:02:52 UTC
Sorry I have to tell this, but in KDE 4.2 with recent opensuse development packages, I still experience the problem. Not as often as when I wrote last time into this bug, but still about 1/4 of the times.

So I guess there is still a problem that's not fixed?
Comment 32 Jacopo De Simoi 2009-03-04 01:07:13 UTC
does it have anything to do with the history this time? 
Could it be just the same as #181453 (which appears unrelated)?
Comment 33 David Nolden 2009-03-04 04:13:18 UTC
Ah yes that's exactly what I'm talking about, thanks.
Comment 34 Halla Rempt 2009-04-03 14:06:06 UTC
I'm afraid this really isn't fixed yet. With 4.2.2, I am seeing this behaviour a lot (as well as seeing no hit icons when entering an url I had previously entered until I've typed all of it).
Comment 35 Jacopo De Simoi 2009-04-03 16:55:42 UTC
(In reply to comment #34)
> I'm afraid this really isn't fixed yet. With 4.2.2, I am seeing this behaviour
> a lot 

Are you sure you're not hitting bug #181453 (fixed now, but not in time for 4.2.2)

> (as well as seeing no hit icons when entering an url I had previously
> entered until I've typed all of it).

What do you mean exactly by that? 
- If the url is in the browser history and you have the webrowser history runner enabled you should be able to see items (icons with an hourglass) also if you don't type the whole url
- If you see the url completed in gray, you can hit the right arrow key, or the end key (the TAB key also works, sometimes) to complete it without having to type it all over again. 

There used to be a bug which would automatically look for items matching the autocompleted (grey) string, and this has been fixed. If you are expecting this behaviour, I am afraid it's not there anymore.
Comment 36 Halla Rempt 2009-04-08 08:58:16 UTC
It's quite possible that it's the same thing as 181453 -- although it often happens that opening krunner for the second time and choosing the command again still doesn't do anything.

About the other behaviour: if this means that I have to press an extra key just to open an autocompleted url (like in KDE 3.5) then that is quite disappointing. 

In KDE 4.2.2, the behaviour of krunner is, I'm afraid, quite annoying all over. I often get kmahjong as first hit when searching for kmail -- kmail is autocompleted (but I didn't press end, tab or whatever yet), the first hit is kmahjong. I never ran that application -- it looks like krunner isn't taking my history into account.

Btw, the layout is again getting screwed up -- I know that's a different bug, and I think I've even reported that bug myself.
Comment 37 Jacopo De Simoi 2009-04-08 16:35:11 UTC
(In reply to comment #36)
> It's quite possible that it's the same thing as 181453 -- although it often
> happens that opening krunner for the second time and choosing the command again
> still doesn't do anything.

Ok, this indeed sounds different from 181453, but there are possibly lots of other ways to reproduce that bug.
 
> About the other behaviour: if this means that I have to press an extra key just
> to open an autocompleted url (like in KDE 3.5) then that is quite
> disappointing. 

Again, the previous behaviour was a bug rather than a feature; please note that this does not mean that this feature will not be implemented in the future. You are welcome to open a wish for that so that people can vote for it (and, personally, I will ;) ) and we can implement it with some grain of salt.

The previous behaviour had some nasty flaws: the bug was that that we were querying _only_ the autocompleted string, so that, for instance, if you mistyped once your favourite url like "www.kde.org\", you will not be able to run "www.kde.org" until that entry goes out of the history. Also, consider the case you have two legit apps (like {firefox,firefox-bin} or {quassel,quasselcore}) that share the first letters and you run first the longer one, there is no way you would be able to run the short one.  


> In KDE 4.2.2, the behaviour of krunner is, I'm afraid, quite annoying all over.
> I often get kmahjong as first hit when searching for kmail -- kmail is
> autocompleted (but I didn't press end, tab or whatever yet), the first hit is
> kmahjong. I never ran that application -- it looks like krunner isn't taking my
> history into account.

in fact, it does not. Again, please open a wish.

-- J