loudmouth/lm-simple-io.c
author Mikael Berthe <mikael@lilotux.net>
Sun, 04 Dec 2011 13:57:00 +0100
changeset 624 a94013a4555d
parent 607 e2bd14357c9a
child 690 7ccf2113ec5f
permissions -rw-r--r--
Fix some gcc warnings

/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * Copyright (C) 2008 Imendio AB
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <config.h>

#include "lm-marshal.h"
#include "lm-xmpp-writer.h"
#include "lm-simple-io.h"

#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), LM_TYPE_SIMPLE_IO, LmSimpleIOPriv))

typedef struct LmSimpleIOPriv LmSimpleIOPriv;
struct LmSimpleIOPriv {
    gint my_prop;
};

static void     simple_io_finalize            (GObject           *object);
static void     simple_io_writer_iface_init   (LmXmppWriterIface *iface);
static void     simple_io_get_property        (GObject           *object,
                                               guint              param_id,
                                               GValue            *value,
                                               GParamSpec        *pspec);
static void     simple_io_set_property        (GObject           *object,
                                               guint              param_id,
                                               const GValue      *value,
                                               GParamSpec        *pspec);
static void     simple_io_send_message        (LmXmppWriter      *writer,
                                               LmMessage         *message);
static void     simple_io_send_text           (LmXmppWriter      *writer,
                                               const gchar       *buf,
                                               gsize              len);

G_DEFINE_TYPE_WITH_CODE (LmSimpleIO, lm_simple_io, G_TYPE_OBJECT,
                         G_IMPLEMENT_INTERFACE (LM_TYPE_XMPP_WRITER,
                                                simple_io_writer_iface_init))

enum {
    PROP_0,
    PROP_MY_PROP
};

static void
lm_simple_io_class_init (LmSimpleIOClass *class)
{
    GObjectClass *object_class = G_OBJECT_CLASS (class);

    object_class->finalize     = simple_io_finalize;
    object_class->get_property = simple_io_get_property;
    object_class->set_property = simple_io_set_property;

    g_object_class_install_property (object_class,
                                     PROP_MY_PROP,
                                     g_param_spec_string ("my-prop",
                                                          "My Prop",
                                                          "My Property",
                                                          NULL,
                                                          G_PARAM_READWRITE));

    g_type_class_add_private (object_class, sizeof (LmSimpleIOPriv));
}

static void
lm_simple_io_init (LmSimpleIO *simple_io)
{
    (void) GET_PRIV (simple_io);
}

static void
simple_io_finalize (GObject *object)
{
    (void) GET_PRIV (object);

    (G_OBJECT_CLASS (lm_simple_io_parent_class)->finalize) (object);
}

static void
simple_io_writer_iface_init (LmXmppWriterIface *iface)
{
    iface->send_message = simple_io_send_message;
    iface->send_text    = simple_io_send_text;
}

static void
simple_io_get_property (GObject    *object,
                        guint       param_id,
                        GValue     *value,
                        GParamSpec *pspec)
{
    LmSimpleIOPriv *priv;

    priv = GET_PRIV (object);

    switch (param_id) {
    case PROP_MY_PROP:
        g_value_set_int (value, priv->my_prop);
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    };
}

static void
simple_io_set_property (GObject      *object,
                        guint         param_id,
                        const GValue *value,
                        GParamSpec   *pspec)
{
    LmSimpleIOPriv *priv;

    priv = GET_PRIV (object);

    switch (param_id) {
    case PROP_MY_PROP:
        priv->my_prop = g_value_get_int (value);
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    };
}

static void
simple_io_send_message (LmXmppWriter *writer, LmMessage *message)
{
}

static void
simple_io_send_text (LmXmppWriter *writer,
                     const gchar  *buf,
                     gsize         len)
{
}