Beispiel #1
0
        public static void utc_eldbus_introspect_p()
        {
            var conn = new eldbus.Connection(eldbus.Connection.Type.System);

            var obj = new eldbus.Object(conn, DBusBus, DBusPath);

            IntPtr timeout        = IntPtr.Zero;
            int    messageCapture = 0;
            bool   isSuccess      = false;

            eldbus.MessageDelegate objectMessageCb = delegate(eldbus.Message msg, eldbus.Pending p)
            {
                try
                {
                    if (timeout != IntPtr.Zero)
                    {
                        ecore_timer_del(timeout);
                        timeout = IntPtr.Zero;
                    }

                    string errname;
                    string errmsg;

                    if (messageCapture == 5)
                    {
                        if (!msg.GetError(out errname, out errmsg))
                        {
                            string txt;
                            if (msg.Get(out txt))
                            {
                                if (!String.IsNullOrEmpty(txt))
                                {
                                    isSuccess = true;
                                }
                            }
                        }
                    }
                }
                finally
                {
                    ecore_main_loop_quit();
                }
            };

            eldbus.Pending pending = obj.Introspect(objectMessageCb);

            AssertEquals(pending.GetMethod(), "Introspect");

            timeout = ecore_timer_add(2.0, GetEcoreLoopClose(), IntPtr.Zero);
            Assert(timeout != IntPtr.Zero);

            messageCapture = 5;

            ecore_main_loop_begin();

            Assert(isSuccess, "Method Introspect is not call");

            obj.Dispose();
            conn.Dispose();
        }
Beispiel #2
0
        public static void MessageCbWrapper(IntPtr data, IntPtr msg_hdl, IntPtr pending_hdl)
        {
            MessageDelegate dlgt = Marshal.GetDelegateForFunctionPointer(data, typeof(MessageDelegate)) as MessageDelegate;

            if (dlgt == null)
            {
                Eina.Log.Error("Eldbus: invalid delegate pointer from Eldbus_Message_Cb");
                return;
            }

            eldbus.Message msg;
            eldbus.Pending pending;

            try
            {
                msg     = new eldbus.Message(msg_hdl, false);
                pending = new eldbus.Pending(pending_hdl, false);
            }
            catch (Exception e)
            {
                Eina.Log.Error("Eldbus: could not convert Eldbus_Message_Cb parameters. Exception: " + e.ToString());
                return;
            }

            try
            {
                dlgt(msg, pending);
            }
            catch (Exception e)
            {
                Eina.Log.Error("Eldbus: Eldbus_Message_Cb delegate error. Exception: " + e.ToString());
            }
        }
Beispiel #3
0
        public static void utc_eldbus_introspect_p()
        {
            var app  = Efl.App.AppMain;
            var conn = new eldbus.Connection(eldbus.Connection.Type.Session);

            var obj = new eldbus.Object(conn, DBusBus, DBusPath);

            int  messageCapture = 0;
            bool isSuccess      = false;

            eldbus.MessageDelegate objectMessageCb = delegate(eldbus.Message msg, eldbus.Pending p)
            {
                try
                {
                    string errname;
                    string errmsg;

                    if (messageCapture == 5)
                    {
                        if (!msg.GetError(out errname, out errmsg))
                        {
                            string txt;
                            if (msg.Get(out txt))
                            {
                                if (!String.IsNullOrEmpty(txt))
                                {
                                    isSuccess = true;
                                }
                            }
                        }
                    }
                }
                finally
                {
                    app.Quit(0);
                }
            };

            eldbus.Pending pending = obj.Introspect(objectMessageCb);

            AssertEquals(pending.GetMethod(), "Introspect");

            var timer = new Efl.LoopTimer(app, 2.0);

            timer.TimerTickEvent += (object sender, EventArgs e) => {
                app.Quit(0);
            };

            messageCapture = 5;

            app.Begin();

            Assert(isSuccess, "Method Introspect is not call");

            timer.Dispose();
            obj.Dispose();
            conn.Dispose();
        }
Beispiel #4
0
        private static void ActivableList(eldbus.MessageDelegate messageCb)
        {
            isSuccess = false;

            var conn = new eldbus.Connection(eldbus.Connection.Type.System);

            eldbus.Pending pending = conn.ActivableList(messageCb);

            timeout = ecore_timer_add(2.0, GetEcoreLoopClose(), IntPtr.Zero);
            Assert(timeout != IntPtr.Zero);

            ecore_main_loop_begin();

            Assert(isSuccess, "Method ListActivatableNames is not call");

            conn.Dispose();
        }
Beispiel #5
0
        private static void ActivatableList(eldbus.MessageDelegate messageCb)
        {
            isSuccess = false;

            var app  = Efl.App.AppMain;
            var conn = new eldbus.Connection(eldbus.Connection.Type.Session);

            eldbus.Pending pending = conn.ActivatableList(messageCb);

            AssertEquals(pending.GetMethod(), "ListActivatableNames");

            var timer = new Efl.LoopTimer(app, 2.0);

            timer.TimerTickEvent += (object sender, EventArgs e) => {
                app.Quit(0);
            };

            app.Begin();

            Assert(isSuccess, "Method ListActivatableNames is not call");

            timer.Dispose();
            conn.Dispose();
        }
Beispiel #6
0
        public static void utc_eldbus_object_send_info_get_p()
        {
            var app  = Efl.App.AppMain;
            var conn = new eldbus.Connection(eldbus.Connection.Type.Session);

            var obj = new eldbus.Object(conn, DBusBus, DBusPath);

            string busFromObject = obj.GetBusName();

            AssertEquals(DBusBus, busFromObject);

            string pathFromObject = obj.GetPath();

            AssertEquals(DBusPath, pathFromObject);

            obj.Ref();
            obj.Unref();

            {
                var connectionFromObj = obj.GetConnection();
                Assert(conn.Handle == connectionFromObj.Handle);
                connectionFromObj.Dispose();
            }

            int  messageCapture = 0;
            bool isSuccess      = false;

            eldbus.MessageDelegate objectMessageCb = delegate(eldbus.Message msg, eldbus.Pending p)
            {
                try
                {
                    string errname;
                    string errmsg;

                    if (messageCapture == 5)
                    {
                        if (!msg.GetError(out errname, out errmsg))
                        {
                            string txt;
                            if (msg.Get(out txt))
                            {
                                if (!String.IsNullOrEmpty(txt))
                                {
                                    isSuccess = true;
                                }
                            }
                        }
                    }
                }
                finally
                {
                    app.Quit(0);
                }
            };

            var methodName = "GetId";
            var message    = obj.NewMethodCall(DBusInterface, methodName);

            eldbus.Pending pending = obj.Send(message, objectMessageCb, -1);

            AssertEquals(pending.GetMethod(), methodName);

            var timer = new Efl.LoopTimer(app, 2.0);

            timer.TimerTickEvent += (object sender, EventArgs e) => {
                app.Quit(0);
            };

            messageCapture = 5;

            app.Begin();

            Assert(isSuccess, $"Method {methodName} is not call");

            timer.Dispose();
            message.Dispose();
            obj.Dispose();
            conn.Dispose();
        }
Beispiel #7
0
        public static void utc_eldbus_message_info_data_get_p()
        {
            isSuccess = false;

            var app  = Efl.App.AppMain;
            var conn = new eldbus.Connection(eldbus.Connection.Type.Session);

            string methodName = "GetId";

            eldbus.Message msg = eldbus.Message.NewMethodCall(DBusBus, DBusPath, DBusInterface, methodName);

            string interfaceMsg = msg.GetInterface();

            AssertEquals(DBusInterface, interfaceMsg);

            string methodMsg = msg.GetMember();

            AssertEquals(methodName, methodMsg);

            string pathMsg = msg.GetPath();

            AssertEquals(DBusPath, pathMsg);

            eldbus.MessageDelegate messageMethodCb = delegate(eldbus.Message m, eldbus.Pending p)
            {
                try
                {
                    string errname, errmsg;
                    if (!m.GetError(out errname, out errmsg))
                    {
                        string txt;
                        if (m.Get(out txt))
                        {
                            if (!String.IsNullOrEmpty(txt))
                            {
                                if (m.GetSender() == DBusBus &&
                                    !String.IsNullOrEmpty(m.GetDestination()))
                                {
                                    isSuccess = true;
                                }
                            }
                        }
                    }
                }
                finally
                {
                    app.Quit(0);
                }
            };

            const int timeoutSendMs = 1000;

            eldbus.Pending pending = conn.Send(msg, messageMethodCb, timeoutSendMs);

            AssertEquals(pending.GetMethod(), methodName);

            var timer = new Efl.LoopTimer(app, 2.0);

            timer.TimerTickEvent += (object sender, EventArgs e) => {
                app.Quit(0);
            };

            app.Begin();

            Assert(isSuccess, $"Method {methodName} is not call");

            timer.Dispose();
            msg.Dispose();
            conn.Dispose();
        }
Beispiel #8
0
        public static void utc_eldbus_message_info_data_get_p()
        {
            isSuccess = false;

            var conn = new eldbus.Connection(eldbus.Connection.Type.System);

            string methodName = "GetId";

            eldbus.Message msg = eldbus.Message.NewMethodCall(DBusBus, DBusPath, DBusInterface, methodName);

            string interfaceMsg = msg.GetInterface();

            AssertEquals(DBusInterface, interfaceMsg);

            string methodMsg = msg.GetMember();

            AssertEquals(methodName, methodMsg);

            string pathMsg = msg.GetPath();

            AssertEquals(DBusPath, pathMsg);

            eldbus.MessageDelegate messageMethodCb = delegate(eldbus.Message m, eldbus.Pending p)
            {
                try
                {
                    if (timeout != IntPtr.Zero)
                    {
                        ecore_timer_del(timeout);
                        timeout = IntPtr.Zero;
                    }

                    string errname, errmsg;
                    if (!m.GetError(out errname, out errmsg))
                    {
                        string txt;
                        if (m.Get(out txt))
                        {
                            if (!String.IsNullOrEmpty(txt))
                            {
                                if (m.GetSender() == DBusBus &&
                                    !String.IsNullOrEmpty(m.GetDestination()))
                                {
                                    isSuccess = true;
                                }
                            }
                        }
                    }
                }
                finally
                {
                    ecore_main_loop_quit();
                }
            };

            const int timeoutSendMs = 1000;

            eldbus.Pending pending = conn.Send(msg, messageMethodCb, timeoutSendMs);

            AssertEquals(pending.GetMethod(), methodName);

            timeout = ecore_timer_add(2.0, GetEcoreLoopClose(), IntPtr.Zero);
            Assert(timeout != IntPtr.Zero);

            ecore_main_loop_begin();

            Assert(isSuccess, $"Method {methodName} is not call");

            msg.Dispose();
            conn.Dispose();
        }
Beispiel #9
0
        public static void utc_eldbus_object_send_info_get_p()
        {
            var conn = new eldbus.Connection(eldbus.Connection.Type.System);

            var obj = new eldbus.Object(conn, DBusBus, DBusPath);

            string busFromObject = obj.GetBusName();

            AssertEquals(DBusBus, busFromObject);

            string pathFromObject = obj.GetPath();

            AssertEquals(DBusPath, pathFromObject);

            obj.Ref();
            obj.Unref();

            {
                var connectionFromObj = obj.GetConnection();
                Assert(conn.Handle == connectionFromObj.Handle);
                connectionFromObj.Dispose();
            }

            IntPtr timeout        = IntPtr.Zero;
            int    messageCapture = 0;
            bool   isSuccess      = false;

            eldbus.MessageDelegate objectMessageCb = delegate(eldbus.Message msg, eldbus.Pending p)
            {
                try
                {
                    if (timeout != IntPtr.Zero)
                    {
                        ecore_timer_del(timeout);
                        timeout = IntPtr.Zero;
                    }

                    string errname;
                    string errmsg;

                    if (messageCapture == 5)
                    {
                        if (!msg.GetError(out errname, out errmsg))
                        {
                            string txt;
                            if (msg.Get(out txt))
                            {
                                if (!String.IsNullOrEmpty(txt))
                                {
                                    isSuccess = true;
                                }
                            }
                        }
                    }
                }
                finally
                {
                    ecore_main_loop_quit();
                }
            };

            var methodName = "GetId";
            var message    = obj.NewMethodCall(DBusInterface, methodName);

            eldbus.Pending pending = obj.Send(message, objectMessageCb, -1);

            AssertEquals(pending.GetMethod(), methodName);

            timeout = ecore_timer_add(2.0, GetEcoreLoopClose(), IntPtr.Zero);
            Assert(timeout != IntPtr.Zero);

            messageCapture = 5;

            ecore_main_loop_begin();

            Assert(isSuccess, $"Method {methodName} is not call");

            message.Dispose();
            obj.Dispose();
            conn.Dispose();
        }