1

我是套接字的新手,并试图通过 GJS/Gio 中的一些套接字编程工作并碰壁创建 GLib.Source 来处理从套接字接收。相关代码(我认为)是:

const DeviceChannel = new Lang.Class({
    Name: "DeviceChannel",

    _init: function (device) {
        this.device = device;

        this.connection = null;
        this.inStream = null;
        this.outStream = null;
        this.socket = null;
        this.sock_source = 0;
    },

    open: function () {
        let client = new Gio.SocketClient();

        this.addr = new Gio.InetSocketAddress({
            address: this.device.tcpHost,
            port: this.device.tcpPort
        });

        let conn = client.connect_async(
            this.addr,
            null,
            Lang.bind(this, this.opened)
        );
    },

    opened: function (client, res) {
        this.connection = client.connect_finish(res);

        // Streams
        this.inStream = new Gio.DataInputStream({
            base_stream: this.connection.get_input_stream()
        });

        this.outStream = new Gio.DataOutputStream({
            base_stream: this.connection.get_output_stream()
        });

        // Socket
        this.socket = this.connection.get_socket();
        this.socket.set_option(6, 4, 10);   // TCP_KEEPIDLE
        this.socket.set_option(6, 5, 5);    // TCP_KEEPINTVL
        this.socket.set_option(6, 6, 3);    // TCP_KEEPCNT
        this.socket.set_keepalive(true);

        this.sock_source = this.socket.create_source(GLib.IOCondition.IN, null);
        this.sock_source.set_callback(Lang.bind(this, this._io_ready));
        this.sock_source.attach(null);
    },

    _io_ready: function (condition) {
        return true;
    }
});

一切顺利,直到this.sock_source.set_callback()我收到错误时打电话:

(JSConnect:15118): Gjs-WARNING **: JS ERROR: TypeError: this.sock_source is null
DeviceChannel<.opened@application.js:184:9
wrapper@resource:///org/gnome/gjs/modules/lang.js:178:22
@application.js:427:2

Gio.Socket.create_source()在代码的另一部分调用了另一个套接字(尽管是 UDP),它工作正常。调用create_source()本身不会引发任何错误(即使我使用 运行我的脚本)并且文档G_MESSAGES_DEBUG=all中没有提到该函数曾经返回,所以我对自己做错了什么感到困惑。null

编辑:

这里有 3 年的评论说:

这不起作用,因为1) Socket.create_source 在 typelib 中不存在,因为它在 Glib/gio/gsocket.c 中标记为 (skip)

但我认为这不再正确,因为我在我的 UDP 套接字上创建了一个源,尽管该套接字是“手工制作”的,而不是使用Gio.SocketClient().

4

1 回答 1

1

您可能无意中调用了该Gio.DatagramBased.create_source()方法。查看源代码,这g_socket_create_source()最终会调用,但会先进行一些检查,null如果检查失败则返回。以下是检查:https ://github.com/GNOME/glib/blob/master/gio/gsocket.c#L1114

它看起来是一个小错误,该方法将简单地返回null,甚至不会从check_datagram_based().

于 2017-09-09T22:16:48.530 回答