Revert "Add GBase64Encoder and Decoder"

This reverts commit b2c11516e2.
This commit is contained in:
Matthias Clasen 2024-05-05 14:58:43 -04:00
parent b2c11516e2
commit 64cd43029e
8 changed files with 0 additions and 483 deletions

View File

@ -1,135 +0,0 @@
/* GIO - GLib Input, Output and Streaming Library
*
* Copyright © 2009 Red Hat, Inc.
* Copyright © 2010 Christian Persch
*
* 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., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* Author: Alexander Larsson <alexl@redhat.com>
* Christian Persch <chpe@gnome.org>
*/
#include "config.h"
#include "gbase64decoder.h"
#include <string.h>
#include <glib.h>
#include "gioerror.h"
#include "glibintl.h"
#include "gioenums.h"
#include "gioenumtypes.h"
/**
* GBase64Decoder:
*
* `GBase64Decoder` is an implementation of `GConverter` that
* converts data from base64 encoding.
*/
struct _GBase64Decoder
{
GObject parent_instance;
int state;
guint save;
};
struct _GBase64DecoderClass
{
GObjectClass parent_class;
};
static void
g_base64_decoder_reset (GConverter *converter)
{
GBase64Decoder *decoder = G_BASE64_DECODER (converter);
decoder->state = 0;
decoder->save = 0;
}
static GConverterResult
g_base64_decoder_convert (GConverter *converter,
const void *inbuf,
gsize inbuf_size,
void *outbuf,
gsize outbuf_size,
GConverterFlags flags,
gsize *bytes_read,
gsize *bytes_written,
GError **error)
{
GBase64Decoder *decoder = G_BASE64_DECODER (converter);
if (outbuf_size < ((inbuf_size / 4) * 3 + 3))
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NO_SPACE,
"Not enough space in dest");
return G_CONVERTER_ERROR;
}
*bytes_read = inbuf_size;
*bytes_written = g_base64_decode_step (inbuf, inbuf_size, outbuf,
&decoder->state, &decoder->save);
if (flags & G_CONVERTER_FLUSH)
return G_CONVERTER_FLUSHED;
if (*bytes_read == inbuf_size && (flags & G_CONVERTER_INPUT_AT_END))
return G_CONVERTER_FINISHED;
return G_CONVERTER_CONVERTED;
}
static void
g_base64_decoder_iface_init (GConverterIface *iface)
{
iface->convert = g_base64_decoder_convert;
iface->reset = g_base64_decoder_reset;
}
G_DEFINE_TYPE_WITH_CODE (GBase64Decoder, g_base64_decoder, G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (G_TYPE_CONVERTER,
g_base64_decoder_iface_init))
static void
g_base64_decoder_init (GBase64Decoder *decoder)
{
decoder->state = 0;
decoder->save = 0;
}
static void
g_base64_decoder_class_init (GBase64DecoderClass *klass)
{
}
/**
* g_base64_decoder_new:
*
* Creates a new `GBase64Decoder`.
*
* Returns: a new `GBase64Decoder`
*
* Since: 2.82
*/
GConverter *
g_base64_decoder_new (void)
{
return g_object_new (G_TYPE_BASE64_DECODER, NULL);
}

View File

@ -1,42 +0,0 @@
/* GIO - GLib Input, Output and Streaming Library
*
* Copyright (C) 2009 Red Hat, Inc.
*
* 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., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* Author: Alexander Larsson <alexl@redhat.com>
* Christian Persch <chpe@gnome.org>
*/
#pragma once
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
#error "Only <gio/gio.h> can be included directly."
#endif
#include <gio/gconverter.h>
G_BEGIN_DECLS
#define G_TYPE_BASE64_DECODER (g_base64_decoder_get_type ())
GIO_AVAILABLE_IN_2_82
G_DECLARE_FINAL_TYPE (GBase64Decoder, g_base64_decoder, G, BASE64_DECODER, GObject)
GIO_AVAILABLE_IN_2_82
GConverter *g_base64_decoder_new (void);
G_END_DECLS

View File

@ -1,232 +0,0 @@
/* GIO - GLib Input, Output and Streaming Library
*
* Copyright © 2009 Red Hat, Inc.
* Copyright © 2010 Christian Persch
*
* 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., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* Author: Alexander Larsson <alexl@redhat.com>
* Christian Persch <chpe@gnome.org>
*/
#include "config.h"
#include "gbase64encoder.h"
#include <string.h>
#include <glib.h>
#include "glib.h"
#include "gioerror.h"
#include "glibintl.h"
#include "gioenums.h"
#include "gioenumtypes.h"
#define BASE64_ENCODING_OUTPUT_SIZE(len, break_lines) \
(((len) / 3 + 1) * 4 + 4 + ((break_lines) ? ((((len) / 3 + 1) * 4 + 4) / 72 + 1) : 0))
/**
* GBase64Encoder:
*
* GBase64Encoder is an implementation of `GConverter` that
* converts data to base64 encoding.
*/
struct _GBase64Encoder
{
GObject parent_instance;
gboolean break_lines;
int state[2];
};
enum {
PROP_0,
PROP_BREAK_LINES
};
static void
g_base64_encoder_reset (GConverter *converter)
{
GBase64Encoder *encoder = G_BASE64_ENCODER (converter);
encoder->state[0] = encoder->state[1] = 0;
}
static GConverterResult
g_base64_encoder_convert (GConverter *converter,
const void *inbuf,
gsize inbuf_size,
void *outbuf,
gsize outbuf_size,
GConverterFlags flags,
gsize *bytes_read,
gsize *bytes_written,
GError **error)
{
GBase64Encoder *encoder = G_BASE64_ENCODER (converter);
if (inbuf_size == 0 || (flags & G_CONVERTER_FLUSH))
{
if (outbuf_size < (encoder->break_lines ? 5 : 4))
{
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NO_SPACE,
"Need more output space");
return G_CONVERTER_ERROR;
}
*bytes_read = 0;
*bytes_written = g_base64_encode_close (encoder->break_lines, outbuf,
&encoder->state[0],
&encoder->state[1]);
if (flags & G_CONVERTER_FLUSH)
return G_CONVERTER_FLUSHED;
if (flags & G_CONVERTER_INPUT_AT_END)
return G_CONVERTER_FINISHED;
return G_CONVERTER_CONVERTED;
}
if (outbuf_size < BASE64_ENCODING_OUTPUT_SIZE (inbuf_size, encoder->break_lines))
{
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NO_SPACE,
"Need more output space");
return G_CONVERTER_ERROR;
}
*bytes_read = inbuf_size;
*bytes_written = g_base64_encode_step (inbuf, inbuf_size,
encoder->break_lines,
outbuf,
&encoder->state[0],
&encoder->state[1]);
if (flags & G_CONVERTER_INPUT_AT_END)
return G_CONVERTER_FINISHED;
return G_CONVERTER_CONVERTED;
}
static void
g_base64_encoder_iface_init (GConverterIface *iface)
{
iface->convert = g_base64_encoder_convert;
iface->reset = g_base64_encoder_reset;
}
G_DEFINE_TYPE_WITH_CODE (GBase64Encoder, g_base64_encoder, G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (G_TYPE_CONVERTER,
g_base64_encoder_iface_init))
static void
g_base64_encoder_init (GBase64Encoder *encoder)
{
encoder->break_lines = FALSE;
encoder->state[0] = encoder->state[1] = 0;
}
static void
g_base64_encoder_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GBase64Encoder *encoder = G_BASE64_ENCODER (object);
switch (prop_id)
{
case PROP_BREAK_LINES:
encoder->break_lines = g_value_get_boolean (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
g_base64_encoder_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GBase64Encoder *encoder = G_BASE64_ENCODER (object);
switch (prop_id)
{
case PROP_BREAK_LINES:
g_value_set_boolean (value, encoder->break_lines);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
g_base64_encoder_class_init (GBase64EncoderClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->get_property = g_base64_encoder_get_property;
gobject_class->set_property = g_base64_encoder_set_property;
/**
* GBase64Encoder:break-lines:
*
* Whether to break lines.
*
* This is typically used when putting base64-encoded data in emails.
* It breaks the lines at 72 columns instead of putting all of the text on
* the same line. This avoids problems with long lines in the email system.
*/
g_object_class_install_property (gobject_class,
PROP_BREAK_LINES,
g_param_spec_boolean ("break-lines",
P_("Break lines"),
P_("Break lines"),
FALSE,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
}
/**
* g_base64_encoder_new:
* @break_lines: whether to break long lines
*
* Creates a new `GBase64Encoder`.
*
* Setting @break_lines to `TRUE` is typically used when putting
* base64-encoded data in emails. It breaks the lines at 72 columns
* instead of putting all of the text on the same line. This avoids
* problems with long lines in the email system.
*
* Returns: a new `GBase64Encoder`
*
* Since: 2.82
*/
GConverter *
g_base64_encoder_new (gboolean break_lines)
{
return g_object_new (G_TYPE_BASE64_ENCODER,
"break-lines", break_lines,
NULL);
}

View File

@ -1,42 +0,0 @@
/* GIO - GLib Input, Output and Streaming Library
*
* Copyright (C) 2009 Red Hat, Inc.
*
* 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., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* Author: Alexander Larsson <alexl@redhat.com>
* Christian Persch <chpe@gnome.org>
*/
#pragma once
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
#error "Only <gio/gio.h> can be included directly."
#endif
#include <gio/gconverter.h>
G_BEGIN_DECLS
#define G_TYPE_BASE64_ENCODER (g_base64_encoder_get_type ())
GIO_AVAILABLE_IN_2_82
G_DECLARE_FINAL_TYPE (GBase64Encoder, g_base64_encoder, G, BASE64_ENCODER, GObject)
GIO_AVAILABLE_IN_2_82
GConverter *g_base64_encoder_new (gboolean break_lines);
G_END_DECLS

View File

@ -36,8 +36,6 @@
#include <gio/gapplicationcommandline.h>
#include <gio/gasyncinitable.h>
#include <gio/gasyncresult.h>
#include <gio/gbase64decoder.h>
#include <gio/gbase64encoder.h>
#include <gio/gbufferedinputstream.h>
#include <gio/gbufferedoutputstream.h>
#include <gio/gbytesicon.h>

View File

@ -35,8 +35,6 @@ typedef struct _GAppLaunchContext GAppLaunchContext;
typedef struct _GAppInfo GAppInfo; /* Dummy typedef */
typedef struct _GAsyncResult GAsyncResult; /* Dummy typedef */
typedef struct _GAsyncInitable GAsyncInitable;
typedef struct _GBase64Decoder GBase64Decoder;
typedef struct _GBase64Encoder GBase64Encoder;
typedef struct _GBufferedInputStream GBufferedInputStream;
typedef struct _GBufferedOutputStream GBufferedOutputStream;
typedef struct _GCancellable GCancellable;

View File

@ -480,8 +480,6 @@ gio_base_sources = files(
'gasynchelper.c',
'gasyncinitable.c',
'gasyncresult.c',
'gbase64decoder.c',
'gbase64encoder.c',
'gbufferedinputstream.c',
'gbufferedoutputstream.c',
'gbytesicon.c',

View File

@ -47,9 +47,6 @@ static gboolean decompress = FALSE;
static gboolean compress = FALSE;
static gboolean gzip = FALSE;
static gboolean fallback = FALSE;
static gboolean base64_decode = FALSE;
static gboolean base64_encode = FALSE;
static gboolean base64_break_lines = FALSE;
static GOptionEntry entries[] = {
{"decompress", 0, 0, G_OPTION_ARG_NONE, &decompress, "decompress", NULL},
@ -58,9 +55,6 @@ static GOptionEntry entries[] = {
{"from-charset", 0, 0, G_OPTION_ARG_STRING, &from_charset, "from charset", NULL},
{"to-charset", 0, 0, G_OPTION_ARG_STRING, &to_charset, "to charset", NULL},
{"fallback", 0, 0, G_OPTION_ARG_NONE, &fallback, "use fallback", NULL},
{"from-base64", 0, 0, G_OPTION_ARG_NONE, &base64_decode, "decode from Base-64", NULL},
{"to-base64", 0, 0, G_OPTION_ARG_NONE, &base64_encode, "encode to Base-64", NULL},
{"break-lines", 0, 0, G_OPTION_ARG_NONE, &base64_break_lines, "break lines in Base-64", NULL},
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &locations, "locations", NULL},
G_OPTION_ENTRY_NULL
};
@ -106,16 +100,6 @@ cat (GFile * file)
return;
}
if (base64_decode)
{
GInputStream *old;
conv = (GConverter *)g_base64_decoder_new();
old = in;
in = (GInputStream *) g_converter_input_stream_new (in, conv);
g_object_unref (conv);
g_object_unref (old);
}
if (decompress)
{
GInputStream *old;
@ -177,16 +161,6 @@ cat (GFile * file)
g_object_unref (in_file_info);
}
if (base64_encode)
{
GInputStream *old;
conv = (GConverter *)g_base64_encoder_new(base64_break_lines);
old = in;
in = (GInputStream *) g_converter_input_stream_new (in, conv);
g_object_unref (conv);
g_object_unref (old);
}
while (1)
{
res =