summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.trafficinfo.dbus-java/src/main/java/org/freedesktop/dbus/bin/Caller.java
blob: ecd6002fc5409eb6797b755c3a55d50ec9458d39 (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
75
76
77
78
79
80
81
82
83
/*
   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 java.lang.reflect.Constructor;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.Vector;
import java.io.File;
import org.freedesktop.dbus.BusAddress;
import org.freedesktop.dbus.Error;
import org.freedesktop.dbus.Marshalling;
import org.freedesktop.dbus.Message;
import org.freedesktop.dbus.MethodCall;
import org.freedesktop.dbus.Transport;
import cx.ath.matthew.debug.Debug;

public class Caller
{
   @SuppressWarnings("unchecked")
   public static void main(String[] args) 
   {
      try { 
         if (Debug.debug) {
            Debug.setHexDump(true);
            Debug.loadConfig(new File("debug.conf"));
         }
         if (args.length < 4)  {
            System.out.println ("Syntax: Caller <dest> <path> <interface> <method> [<sig> <args>]");
            System.exit(1);
         }
         String addr = System.getenv("DBUS_SESSION_BUS_ADDRESS");
         BusAddress address = new BusAddress(addr);
         Transport conn = new Transport(address);

         Message m = new MethodCall("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "Hello", (byte) 0, null);;
         conn.mout.writeMessage(m);

         if ("".equals(args[2])) args[2] = null;
         if (args.length == 4) 
            m = new MethodCall(args[0], args[1], args[2], args[3], (byte) 0, null);
         else {
            Vector<Type> lts = new Vector<Type>();
            Marshalling.getJavaType(args[4],lts, -1);
            Type[] ts = lts.toArray(new Type[0]);
            Object[] os = new Object[args.length-5];
            for (int i = 5; i < args.length; i++) {
               if (ts[i-5] instanceof Class) {
                  try {
                     Constructor c = ((Class) ts[i-5]).getConstructor(String.class);
                     os[i-5] = c.newInstance(args[i]);
                  } catch (Exception e) {
                     os[i-5] = args[i];
                  }
               } else
                  os[i-5] = args[i];
            }
            m = new MethodCall(args[0], args[1], args[2], args[3], (byte) 0, args[4], os);
         }
         long serial = m.getSerial();
         conn.mout.writeMessage(m);
         do {
            m = conn.min.readMessage();
         } while (serial != m.getReplySerial());
         if (m instanceof Error) ((Error) m).throwException();
         else {
            Object[] os = m.getParameters();
            System.out.println(Arrays.deepToString(os));
         }
      } catch (Exception e) {
         System.out.println (e.getClass().getSimpleName()+": "+e.getMessage());
         System.exit(1);
      }
   }
}