Sha256: 8747758d63d5e00e668e3bea4e7dbd7af2517e6d2286a797f52a2381efa740ce

Contents?: true

Size: 1.81 KB

Versions: 26

Compression:

Stored size: 1.81 KB

Contents

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
 *  Copyright (C) 2011  Ruby-GNOME2 Project Team
 *  Copyright (C) 2005  Masao Mutoh
 *
 *  This library 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.1 of the License, or (at your option) any later version.
 *
 *  This library 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 library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *  MA  02110-1301  USA
 */

#include "rbgprivate.h"

#define RG_TARGET_NAMESPACE mShell

static VALUE
rg_s_parse(G_GNUC_UNUSED VALUE self, VALUE command_line)
{
    gint argc;
    gchar **argv;
    GError *error = NULL;

    if (!g_shell_parse_argv(RVAL2CSTR(command_line), &argc, &argv, &error))
        RAISE_GERROR(error);

    return STRV2RVAL_FREE(argv);
}

static VALUE
rg_s_quote(G_GNUC_UNUSED VALUE self, VALUE unquoted_string)
{
    return CSTR2RVAL_FREE(g_shell_quote(RVAL2CSTR(unquoted_string)));
}

static VALUE
rg_s_unquote(G_GNUC_UNUSED VALUE self, VALUE quoted_string)
{
    GError *error = NULL;
    gchar *str = g_shell_unquote(RVAL2CSTR(quoted_string), &error);
    if (str == NULL)
        RAISE_GERROR(error);

    return CSTR2RVAL_FREE(str);
}

void
Init_glib_shell(void)
{
    VALUE RG_TARGET_NAMESPACE = rb_define_module_under(rbg_mGLib(), "Shell");

    RG_DEF_SMETHOD(parse, 1);
    RG_DEF_SMETHOD(quote, 1);
    RG_DEF_SMETHOD(unquote, 1);
}

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
glib2-4.2.5 ext/glib2/rbglib_shell.c
glib2-4.2.4 ext/glib2/rbglib_shell.c
glib2-4.2.3 ext/glib2/rbglib_shell.c
glib2-4.2.2 ext/glib2/rbglib_shell.c
glib2-4.2.1 ext/glib2/rbglib_shell.c
glib2-4.2.0 ext/glib2/rbglib_shell.c
glib2-4.1.9 ext/glib2/rbglib_shell.c
glib2-4.1.8 ext/glib2/rbglib_shell.c
glib2-4.1.7 ext/glib2/rbglib_shell.c
glib2-4.1.6 ext/glib2/rbglib_shell.c
glib2-4.1.5 ext/glib2/rbglib_shell.c
glib2-4.1.4 ext/glib2/rbglib_shell.c
glib2-4.1.3 ext/glib2/rbglib_shell.c
glib2-4.1.2 ext/glib2/rbglib_shell.c
glib2-4.1.1 ext/glib2/rbglib_shell.c
glib2-4.1.0 ext/glib2/rbglib_shell.c
glib2-4.0.9 ext/glib2/rbglib_shell.c
glib2-4.0.8 ext/glib2/rbglib_shell.c
glib2-4.0.7 ext/glib2/rbglib_shell.c
glib2-4.0.6 ext/glib2/rbglib_shell.c