2005-06-22 11:20:32 -07:00
|
|
|
/*
|
|
|
|
* mooterm/mootermvt.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004-2005 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* See COPYING file that comes with this distribution.
|
|
|
|
*/
|
|
|
|
|
2005-06-23 06:50:25 -07:00
|
|
|
#define MOOTERM_COMPILATION
|
|
|
|
#include "mooterm/mooterm-private.h"
|
2005-06-22 15:13:12 -07:00
|
|
|
#include "mooutils/moomarshals.h"
|
|
|
|
#include "mooutils/moocompat.h"
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
|
|
|
|
static void moo_term_vt_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void moo_term_vt_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void moo_term_vt_finalize (GObject *object);
|
|
|
|
|
|
|
|
|
|
|
|
/* MOO_TYPE_TERM_VT */
|
|
|
|
G_DEFINE_TYPE (MooTermVt, moo_term_vt, G_TYPE_OBJECT)
|
|
|
|
|
|
|
|
enum {
|
2005-06-22 15:13:12 -07:00
|
|
|
CHILD_DIED,
|
2005-06-22 11:20:32 -07:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_BUFFER
|
|
|
|
};
|
|
|
|
|
2005-06-22 15:13:12 -07:00
|
|
|
static guint signals[LAST_SIGNAL];
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
|
|
|
|
static void moo_term_vt_class_init (MooTermVtClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->set_property = moo_term_vt_set_property;
|
|
|
|
gobject_class->get_property = moo_term_vt_get_property;
|
|
|
|
gobject_class->finalize = moo_term_vt_finalize;
|
|
|
|
|
2005-06-22 15:13:12 -07:00
|
|
|
klass->set_size = NULL;
|
|
|
|
klass->fork_command = NULL;
|
2005-07-01 02:53:39 -07:00
|
|
|
klass->write = NULL;
|
2005-06-22 15:13:12 -07:00
|
|
|
klass->kill_child = NULL;
|
|
|
|
klass->child_died = NULL;
|
|
|
|
|
|
|
|
signals[CHILD_DIED] =
|
|
|
|
g_signal_new ("child-died",
|
|
|
|
G_OBJECT_CLASS_TYPE (gobject_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (MooTermVtClass, child_died),
|
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_BUFFER,
|
|
|
|
g_param_spec_object ("buffer",
|
|
|
|
"buffer",
|
|
|
|
"buffer",
|
|
|
|
MOO_TYPE_TERM_BUFFER,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void moo_term_vt_init (MooTermVt *vt)
|
|
|
|
{
|
|
|
|
vt->priv = g_new0 (MooTermVtPrivate, 1);
|
2005-07-01 02:53:39 -07:00
|
|
|
vt->priv->pending_write = g_queue_new ();
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void moo_term_vt_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MooTermVt *vt = MOO_TERM_VT (object);
|
|
|
|
|
|
|
|
if (vt->priv->buffer)
|
|
|
|
g_object_unref (vt->priv->buffer);
|
2005-06-23 06:50:25 -07:00
|
|
|
|
2005-07-01 02:53:39 -07:00
|
|
|
vt_flush_pending_write (vt);
|
|
|
|
g_queue_free (vt->priv->pending_write);
|
2005-06-23 06:50:25 -07:00
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
g_free (vt->priv);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (moo_term_vt_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void moo_term_vt_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MooTermVt *vt = MOO_TERM_VT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_BUFFER:
|
|
|
|
moo_term_vt_set_buffer (vt, g_value_get_object (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void moo_term_vt_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MooTermVt *vt = MOO_TERM_VT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_BUFFER:
|
|
|
|
g_value_set_object (value, vt->priv->buffer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void moo_term_vt_set_buffer (MooTermVt *vt,
|
|
|
|
MooTermBuffer *buffer)
|
|
|
|
{
|
|
|
|
if (vt->priv->buffer == buffer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (vt->priv->buffer)
|
|
|
|
g_object_unref (vt->priv->buffer);
|
|
|
|
vt->priv->buffer = buffer;
|
|
|
|
if (vt->priv->buffer)
|
|
|
|
g_object_ref (vt->priv->buffer);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (vt), "buffer");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MooTermBuffer *moo_term_vt_get_buffer (MooTermVt *vt)
|
|
|
|
{
|
|
|
|
return vt->priv->buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MooTermVt *moo_term_vt_new (void)
|
|
|
|
{
|
2005-06-22 15:13:12 -07:00
|
|
|
#ifdef __WIN32__
|
|
|
|
return g_object_new (MOO_TYPE_TERM_VT_WIN, NULL);
|
|
|
|
#else /* !__WIN32__ */
|
|
|
|
return g_object_new (MOO_TYPE_TERM_VT_UNIX, NULL);
|
|
|
|
#endif /* !__WIN32__ */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void moo_term_vt_set_size (MooTermVt *vt,
|
2005-07-06 09:39:02 -07:00
|
|
|
guint width,
|
|
|
|
guint height)
|
2005-06-22 15:13:12 -07:00
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_TERM_VT (vt));
|
|
|
|
MOO_TERM_VT_GET_CLASS(vt)->set_size (vt, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean moo_term_vt_fork_command (MooTermVt *vt,
|
|
|
|
const char *cmd,
|
|
|
|
const char *working_dir,
|
|
|
|
char **envp)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_TERM_VT (vt), FALSE);
|
|
|
|
return MOO_TERM_VT_GET_CLASS(vt)->fork_command (vt, cmd, working_dir, envp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void moo_term_vt_kill_child (MooTermVt *vt)
|
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_TERM_VT (vt));
|
|
|
|
MOO_TERM_VT_GET_CLASS(vt)->kill_child (vt);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-01 02:53:39 -07:00
|
|
|
void moo_term_vt_write (MooTermVt *vt,
|
2005-06-22 15:13:12 -07:00
|
|
|
const char *data,
|
|
|
|
gssize len)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
2005-06-22 15:13:12 -07:00
|
|
|
g_return_if_fail (MOO_IS_TERM_VT (vt));
|
2005-07-01 02:53:39 -07:00
|
|
|
MOO_TERM_VT_GET_CLASS(vt)->write (vt, data, len);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|