+2009-06-15 Marcus Brinkmann <marcus@g10code.de>
+
+ * gpgme.h.in (gpgme_result_ref, gpgme_result_unref): Add
+ prototypes.
+ * gpgme.def, libgpgme.vers (gpgme_result_ref, gpgme_result_unref):
+ Add these.
+ * context.h (struct ctx_op_data): Add member "references".
+ * gpgme.c (gpgme_result_ref, gpgme_result_unref): New functions.
+ (_gpgme_release_result): Use gpgme_result_unref.
+ * op-support.c (_gpgme_op_data_lookup): Initialize references.
+
2009-06-12 Werner Koch <wk@g10code.com>
* gpgme-w32spawn.c (translate_get_from_file): Parse optional spawn
struct ctx_op_data
{
/* The next element in the linked list, or NULL if this is the last
- element. */
+ element. Used by op data structures linked into a context. */
struct ctx_op_data *next;
/* The type of the hook data, which can be used by a routine to
/* The hook that points to the operation data. */
void *hook;
+
+ /* The number of outstanding references. */
+ int references;
};
typedef struct ctx_op_data *ctx_op_data_t;
}
+void
+gpgme_result_ref (void *result)
+{
+ struct ctx_op_data *data = result - sizeof (struct ctx_op_data);
+
+ if (! result)
+ return;
+
+ data->references++;
+}
+
+
+void
+gpgme_result_unref (void *result)
+{
+ struct ctx_op_data *data = result - sizeof (struct ctx_op_data);
+
+ if (! result)
+ return;
+
+ if (--data->references == 0)
+ {
+ if (data->cleanup)
+ (*data->cleanup) (data->hook);
+ free (data);
+ }
+}
+
+
void
_gpgme_release_result (gpgme_ctx_t ctx)
{
while (data)
{
struct ctx_op_data *next_data = data->next;
- if (data->cleanup)
- (*data->cleanup) (data->hook);
- free (data);
+ data->next = NULL;
+ gpgme_result_unref (data->hook);
data = next_data;
}
ctx->op_data = NULL;
/* This function provides access to the internal read function; it is
- normally not used. */
+ normally not used. */
ssize_t
gpgme_io_read (int fd, void *buffer, size_t count)
{
gpgme_io_read @136
gpgme_io_write @137
+ gpgme_release_ref @138
+ gpgme_release_unref @139
; END
available. */
gpgme_error_t gpgme_engine_check_version (gpgme_protocol_t proto);
+\f
+void gpgme_result_ref (void *result);
+void gpgme_result_unref (void *result);
+
\f
/* Deprecated types. */
typedef gpgme_ctx_t GpgmeCtx _GPGME_DEPRECATED;
gpgme_io_read;
gpgme_io_write;
-
+
+ gpgme_result_ref;
+ gpgme_result_unref;
};
data->type = type;
data->cleanup = cleanup;
data->hook = (void *) (((char *) data) + sizeof (struct ctx_op_data));
+ data->references = 1;
ctx->op_data = data;
}
*hook = data->hook;