2013-07-14 20:40:58 +02:00
|
|
|
/*
|
|
|
|
* dictzip-input-stream.h: dictzip GIO stream reader
|
|
|
|
*
|
2020-09-02 16:27:45 +02:00
|
|
|
* Copyright (c) 2013, Přemysl Eric Janouch <p@janouch.name>
|
2013-07-14 20:40:58 +02:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
2018-06-24 05:23:31 +02:00
|
|
|
* purpose with or without fee is hereby granted.
|
2013-07-14 20:40:58 +02:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DICTZIP_INPUT_STREAM_H
|
|
|
|
#define DICTZIP_INPUT_STREAM_H
|
|
|
|
|
2015-02-26 23:26:52 +01:00
|
|
|
/// Random-access dictzip reader.
|
2013-07-14 20:40:58 +02:00
|
|
|
typedef struct dictzip_input_stream DictzipInputStream;
|
|
|
|
typedef struct dictzip_input_stream_class DictzipInputStreamClass;
|
|
|
|
typedef struct dictzip_input_stream_private DictzipInputStreamPrivate;
|
|
|
|
|
2015-02-26 23:26:52 +01:00
|
|
|
// GObject boilerplate.
|
2013-07-14 20:40:58 +02:00
|
|
|
#define DICTZIP_TYPE_INPUT_STREAM (dictzip_input_stream_get_type ())
|
|
|
|
#define DICTZIP_INPUT_STREAM(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), \
|
|
|
|
DICTZIP_TYPE_INPUT_STREAM, DictzipInputStream))
|
|
|
|
#define DICTZIP_IS_INPUT_STREAM(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
|
|
|
|
DICTZIP_TYPE_INPUT_STREAM))
|
|
|
|
#define DICTZIP_INPUT_STREAM_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), \
|
|
|
|
DICTZIP_TYPE_INPUT_STREAM, DictzipInputStreamClass))
|
|
|
|
#define DICTZIP_IS_INPUT_STREAM_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), \
|
|
|
|
DICTZIP_TYPE_INPUT_STREAM))
|
|
|
|
#define DICTZIP_INPUT_STREAM_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
|
|
|
|
DICTZIP_TYPE_INPUT_STREAM, DictzipInputStreamClass))
|
|
|
|
|
|
|
|
// --- Errors ------------------------------------------------------------------
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
DICTZIP_ERROR_NOT_SEEKABLE, //!< Underlying stream isn't seekable
|
|
|
|
DICTZIP_ERROR_INVALID_HEADER //!< Error occured while parsing header
|
|
|
|
} DictzipError;
|
|
|
|
|
|
|
|
#define DICTZIP_ERROR (dictzip_error_quark ())
|
|
|
|
|
|
|
|
GQuark dictzip_error_quark (void);
|
|
|
|
|
|
|
|
// --- DictzipInputStream ------------------------------------------------------
|
|
|
|
|
|
|
|
struct dictzip_input_stream
|
|
|
|
{
|
|
|
|
GFilterInputStream parent_instance;
|
|
|
|
DictzipInputStreamPrivate *priv;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dictzip_input_stream_class
|
|
|
|
{
|
|
|
|
GFilterInputStreamClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType dictzip_input_stream_get_type (void);
|
|
|
|
DictzipInputStream *dictzip_input_stream_new
|
|
|
|
(GInputStream *base_stream, GError **error);
|
|
|
|
GFileInfo *dictzip_input_stream_get_file_info (DictzipInputStream *self);
|
|
|
|
|
|
|
|
|
2015-02-26 23:26:52 +01:00
|
|
|
#endif // ! DICTZIP_INPUT_STREAM_H
|