summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.trafficinfo.dbus-java/src/main/java/org/freedesktop/dbus/bin/ListDBus.java
blob: 93d4ad59f0073dec3cd39c80e00cadad8f53ac70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
   D-Bus Java Implementation
   Copyright (c) 2005-2006 Matthew Johnson

   This program is free software; you can redistribute it and/or modify it
   under the terms of either the GNU Lesser General Public License Version 2 or the
   Academic Free Licence Version 2.1.

   Full licence texts are included in the COPYING file with this program.
*/
package org.freedesktop.dbus.bin;

import org.freedesktop.DBus;
import org.freedesktop.dbus.DBusConnection;
import org.freedesktop.dbus.exceptions.DBusExecutionException;

/**
 * This class lists all the names currently connected on the bus
 */
public class ListDBus
{
   public static void syntax()
   {
      System.out.println("Syntax: ListDBus [--version] [-v] [--help] [-h] [--owners] [-o] [--uids] [-u] [--session] [-s] [--system] [-y]");
      System.exit(1);
   }
   public static void version()
   {
      System.out.println("Java D-Bus Version "+System.getProperty("Version"));
      System.exit(1);
   }
   public static void main(String args[]) throws Exception
   {
      boolean owners = false;
      boolean users = false;
      int connection = DBusConnection.SESSION;

      for (String a: args) 
         if ("--help".equals(a)) syntax();
         else if ("-h".equals(a)) syntax();
         else if ("--version".equals(a)) version();
         else if ("-v".equals(a)) version();
         else if ("-u".equals(a)) users = true;
         else if ("--uids".equals(a)) users = true;
         else if ("-o".equals(a)) owners = true;
         else if ("--owners".equals(a)) owners = true;
         else if ("--session".equals(a)) connection = DBusConnection.SESSION;
         else if ("-s".equals(a)) connection = DBusConnection.SESSION;
         else if ("--system".equals(a)) connection = DBusConnection.SYSTEM;
         else if ("-y".equals(a)) connection = DBusConnection.SYSTEM;
         else syntax();

      DBusConnection conn = DBusConnection.getConnection(connection);
      DBus dbus = conn.getRemoteObject("org.freedesktop.DBus", "/org/freedesktop/DBus", DBus.class);
      String[] names = dbus.ListNames();
      for (String s: names) {
         if (users)
            try {
               System.out.print(dbus.GetConnectionUnixUser(s)+"\t");
            } catch (DBusExecutionException DBEe) {
               System.out.print("\t");
            }
         System.out.print(s);
         if (!s.startsWith(":") && owners) {
            try {
               System.out.print("\t"+dbus.GetNameOwner(s));
            } catch (DBusExecutionException DBEe) {
            }
         }
         System.out.println();
      }
      conn.disconnect();
   }
}