web-dev-qa-db-ja.com

プロセスIDからX11ウィンドウを取得する方法は?

Linuxでは、私のC++アプリケーションはfork()とexecv()を使用してOpenOfficeの複数のインスタンスを起動し、PowerPointのスライドショーを表示しています。この部分は機能します。

次に、OpenOfficeウィンドウをディスプレイ上の特定の場所に移動できるようにしたいと思います。 XMoveResizeWindow()関数でそれを行うことができますが、インスタンスごとにウィンドウを見つける必要があります。

各インスタンスのプロセスIDがあります。そこからX11ウィンドウを見つけるにはどうすればよいですか?


[〜#〜] update [〜#〜]-アンディの提案のおかげで、私はこれを中止しました。 Stack Overflowコミュニティと共有するコードをここに投稿します。

残念ながら、Open Officeは_NET_WM_PIDプロパティを設定していないようですので、これは最終的に私の問題を解決しませんが、質問に答えます。

// Attempt to identify a window by name or attribute.
// by Adam Pierce <[email protected]>

#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <iostream>
#include <list>

using namespace std;

class WindowsMatchingPid
{
public:
    WindowsMatchingPid(Display *display, Window wRoot, unsigned long pid)
        : _display(display)
        , _pid(pid)
    {
    // Get the PID property atom.
        _atomPID = XInternAtom(display, "_NET_WM_PID", True);
        if(_atomPID == None)
        {
            cout << "No such atom" << endl;
            return;
        }

        search(wRoot);
    }

    const list<Window> &result() const { return _result; }

private:
    unsigned long  _pid;
    Atom           _atomPID;
    Display       *_display;
    list<Window>   _result;

    void search(Window w)
    {
    // Get the PID for the current Window.
        Atom           type;
        int            format;
        unsigned long  nItems;
        unsigned long  bytesAfter;
        unsigned char *propPID = 0;
        if(Success == XGetWindowProperty(_display, w, _atomPID, 0, 1, False, XA_CARDINAL,
                                         &type, &format, &nItems, &bytesAfter, &propPID))
        {
            if(propPID != 0)
            {
            // If the PID matches, add this window to the result set.
                if(_pid == *((unsigned long *)propPID))
                    _result.Push_back(w);

                XFree(propPID);
            }
        }

    // Recurse into child windows.
        Window    wRoot;
        Window    wParent;
        Window   *wChild;
        unsigned  nChildren;
        if(0 != XQueryTree(_display, w, &wRoot, &wParent, &wChild, &nChildren))
        {
            for(unsigned i = 0; i < nChildren; i++)
                search(wChild[i]);
        }
    }
};

int main(int argc, char **argv)
{
    if(argc < 2)
        return 1;

    int pid = atoi(argv[1]);
    cout << "Searching for windows associated with PID " << pid << endl;

// Start with the root window.
    Display *display = XOpenDisplay(0);

    WindowsMatchingPid match(display, XDefaultRootWindow(display), pid);

// Print the result.
    const list<Window> &result = match.result();
    for(list<Window>::const_iterator it = result.begin(); it != result.end(); it++)
        cout << "Window #" << (unsigned long)(*it) << endl;

    return 0;
}
51
Adam Pierce

これを行う唯一の方法は、探しているものが見つかるまでウィンドウのツリーをたどることです。トラバースは難しくありません(例が必要な場合は、xwininfo.cを見て、xwininfo -root -treeの動作を確認してください)。

しかし、あなたが探しているウィンドウをどのように特定しますか? いくつか アプリケーションは、_NET_WM_PIDというウィンドウプロパティを設定します。

私はOpenOffice isがそのプロパティを設定するアプリケーションの1つ(ほとんどのGnomeアプリと同様)であると信じているので、あなたは幸運です。

22
andy

/ proc/PID/environにWINDOWIDという変数が含まれているかどうかを確認します

12
hoho

パーティーに少し遅れました。ただし、2004年にHarald Welteが、LD_PRELOADを介してXCreateWindow()呼び出しをラップし、プロセスIDを_NET_WM_PIDに格納するコードスニペットを投稿しました。これにより、作成された各ウィンドウにPIDエントリがあることを確認できます。

http://www.mail-archive.com/[email protected]/msg05806.html

10
Raphael Wimmer

xdotoolをインストールしてみてください:

#!/bin/bash
# --any and --name present only as a work-around, see: https://github.com/jordansissel/xdotool/issues/14
ids=$(xdotool search --any --pid "$1" --name "dummy")

多くのIDを取得します。私はこれを使用して、プログラムseturgentで長いコマンドを実行したときに、ターミナルウィンドウを緊急に設定します。 xdotoolから取得したすべてのIDをループ処理し、それらに対してseturgentを実行します。

3
Gauthier

良い方法はありません。私が見る唯一の本当のオプションは、次のとおりです。

  1. プロセスのアドレス空間を調べて、接続情報とウィンドウIDを見つけることができます。
  2. Netstatまたはlsofまたはipcsを使用して接続をXserverにマップし、(どういうわけか!少なくともrootが必要です)接続情報を調べてそれらを見つけることができます。
  3. インスタンスを生成するときは、別のウィンドウがマップされるまで待機し、それが正しいウィンドウであると想定して、 `移動します。
2
wnoise

各インスタンスのプロセスIDを持っていますか? OOoでの私の経験は、OOoの2番目のインスタンスを実行しようとすると、OOoの最初のインスタンスと単に対話し、追加のファイルを開くように指示することでした。

Xのメッセージ送信機能を使用して、ウィンドウを適切に要求する必要があると思います。 OOoがそのカバーリングをどこかに文書化することを願っています。

1
Tanktalus

Pythonを使用している場合、私は方法を見つけました ここ 、アイデアは BurntSushi からのものです

アプリケーションを起動した場合、xpropへの呼び出しを減らすことができるcmd文字列を知っている必要があります。常にすべてのxidをループして、pidが目的のpidと同じかどうかを確認できます。

import subprocess
import re

import struct
import xcffib as xcb
import xcffib.xproto

def get_property_value(property_reply):
    assert isinstance(property_reply, xcb.xproto.GetPropertyReply)

    if property_reply.format == 8:
        if 0 in property_reply.value:
            ret = []
            s = ''
            for o in property_reply.value:
                if o == 0:
                    ret.append(s)
                    s = ''
                else:
                    s += chr(o)
        else:
            ret = str(property_reply.value.buf())

        return ret
    Elif property_reply.format in (16, 32):
        return list(struct.unpack('I' * property_reply.value_len,
                                  property_reply.value.buf()))

    return None

def getProperty(connection, ident, propertyName):

    propertyType = eval(' xcb.xproto.Atom.%s' % propertyName)

    try:
        return connection.core.GetProperty(False, ident, propertyType,
                                        xcb.xproto.GetPropertyType.Any,
                                        0, 2 ** 32 - 1)
    except:
        return None


c = xcb.connect()
root = c.get_setup().roots[0].root

_NET_CLIENT_LIST = c.core.InternAtom(True, len('_NET_CLIENT_LIST'),
                                     '_NET_CLIENT_LIST').reply().atom


raw_clientlist = c.core.GetProperty(False, root, _NET_CLIENT_LIST,
                                    xcb.xproto.GetPropertyType.Any,
                                    0, 2 ** 32 - 1).reply()

clientlist = get_property_value(raw_clientlist)

cookies = {}

for ident in clientlist:
    wm_command = getProperty(c, ident, 'WM_COMMAND')
    cookies[ident] = (wm_command)

xids=[]

for ident in cookies:
    cmd = get_property_value(cookies[ident].reply())
    if cmd and spref in cmd:
        xids.append(ident)

for xid in xids:
    pid = subprocess.check_output('xprop -id %s _NET_WM_PID' % xid, Shell=True)
    pid = re.search('(?<=\s=\s)\d+', pid).group()

    if int(pid) == self.pid:
        print 'found pid:', pid
        break

print 'your xid:', xid
0
Shuman

私はいくつかの最新のC++機能を使用してOPのコードを再実装する自由を取りました。同じ機能を維持しますが、少し読みやすいと思います。また、ベクトル挿入がスローされてもリークしません。

// Attempt to identify a window by name or attribute.
// originally written by Adam Pierce <[email protected]>
// revised by Dario Pellegrini <[email protected]>

#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <iostream>
#include <vector>


std::vector<Window> pid2windows(pid_t pid, Display* display, Window w) {
  struct implementation {
    struct FreeWrapRAII {
      void * data;
      FreeWrapRAII(void * data): data(data) {}
      ~FreeWrapRAII(){ XFree(data); }
    };

    std::vector<Window> result;
    pid_t pid;
    Display* display;
    Atom atomPID;

    implementation(pid_t pid, Display* display): pid(pid), display(display) {
      // Get the PID property atom
      atomPID = XInternAtom(display, "_NET_WM_PID", True);
      if(atomPID == None) {
        throw std::runtime_error("pid2windows: no such atom");
      }
    }

    std::vector<Window> getChildren(Window w) {
      Window    wRoot;
      Window    wParent;
      Window   *wChild;
      unsigned  nChildren;
      std::vector<Window> children;
      if(0 != XQueryTree(display, w, &wRoot, &wParent, &wChild, &nChildren)) {
        FreeWrapRAII tmp( wChild );
        children.insert(children.end(), wChild, wChild+nChildren);
      }
      return children;
    }

    void emplaceIfMatches(Window w) {
      // Get the PID for the given Window
      Atom           type;
      int            format;
      unsigned long  nItems;
      unsigned long  bytesAfter;
      unsigned char *propPID = 0;
      if(Success == XGetWindowProperty(display, w, atomPID, 0, 1, False, XA_CARDINAL,
                                       &type, &format, &nItems, &bytesAfter, &propPID)) {
        if(propPID != 0) {
          FreeWrapRAII tmp( propPID );
          if(pid == *reinterpret_cast<pid_t*>(propPID)) {
            result.emplace_back(w);
          }
        }
      }
    }

    void recurse( Window w) {
      emplaceIfMatches(w);
      for (auto & child: getChildren(w)) {
        recurse(child);
      }
    }

    std::vector<Window> operator()( Window w ) {
      result.clear();
      recurse(w);
      return result;
    }
  };
  //back to pid2windows function
  return implementation{pid, display}(w);
}

std::vector<Window> pid2windows(const size_t pid, Display* display) {
  return pid2windows(pid, display, XDefaultRootWindow(display));
}


int main(int argc, char **argv) {
  if(argc < 2)
    return 1;

  int pid = atoi(argv[1]);
  std::cout << "Searching for windows associated with PID " << pid << std::endl;

  // Start with the root window.
  Display *display = XOpenDisplay(0);
  auto res = pid2windows(pid, display);

  // Print the result.
  for( auto & w: res) {
    std::cout << "Window #" << static_cast<unsigned long>(w) << std::endl;
  }

  XCloseDisplay(display);
  return 0;
}
0
DarioP