1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
/* pyiptcdata.c -- functions describiing a Data object
*
* Copyright 2007-2017 Ian Wienand <ian@wienand.org>
*
* 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 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.
*/
#include "pyiptcdata.h"
#include <errno.h>
/* use this to generally bail out if the file has been closed */
#define check_dataobject_open(data_obj) \
if (data_obj->state == CLOSED) { \
PyErr_SetString(PyExc_ValueError, "operation on closed dataset"); \
return NULL; \
}
#define TMP_TEMPLATE "pyiptcdata.XXXXXX"
/* allocate a new data object, with a blank list for dataset objects */
DataObject *
newDataObject(PyObject *arg)
{
DataObject *self;
self = PyObject_New(DataObject, &Data_Type);
if (self == NULL)
return NULL;
self->DataSet_list = PyList_New(0);
self->filename = NULL;
self->state = CLOSED;
if (self->DataSet_list == NULL)
return NULL;
return self;
}
static void
dealloc(DataObject *self)
{
/* free our memory from the iptc library */
iptc_data_unref(self->d);
self->d = NULL;
/* free ourself, as per Python tutorial */
Py_TYPE(self)->tp_free((PyObject*)self);
}
/* Data methods */
static PyObject *
get_datasets(DataObject *self, void *closure)
{
check_dataobject_open(self);
Py_INCREF(self->DataSet_list);
return self->DataSet_list;
}
static PyGetSetDef getseters[] = {
{"datasets", (getter)get_datasets,
(setter)NULL, "Get the datasets associated with this data object", NULL},
{NULL}
};
static PyObject *
add_dataset(DataObject *self, PyObject *args)
{
IptcRecord record;
IptcTag tag;
IptcDataSet *ds;
DataSetObject *dso;
if (!PyArg_ParseTuple(args, "(ii)", &record, &tag))
return NULL;
check_dataobject_open(self);
/* add the dataset via the IPTC library */
ds = iptc_dataset_new();
iptc_dataset_set_tag(ds, record, tag);
iptc_data_add_dataset(self->d, ds);
/* setup and append the new object to our list */
dso = newDataSetObject(ds);
dso->parent = self;
/* When a dataset is removed, it decrements the reference
* count on its parent. Thus when we add a dataset, we
* increase the parent reference count. */
Py_INCREF(self);
dso->state = VALID;
PyList_Append(self->DataSet_list, (PyObject *)dso);
return (PyObject*)dso;
}
static PyObject *
save(DataObject *self, PyObject *args, PyObject *keywds)
{
unsigned char *iptc_buf = NULL;
unsigned int iptc_len;
unsigned char old_ps3[PS3_BUFLEN];
unsigned char new_ps3[PS3_BUFLEN];
unsigned int old_ps3_len, new_ps3_len;
/* before we touch anything, make sure we have not been opened */
check_dataobject_open(self);
/* save() takes optional filename, default to current file */
char *arg_filename = PyBytes_AsString(self->filename);
static char *kwlist[] = {"filename", NULL};
if (!PyArg_ParseTupleAndKeywords(args, keywds, "|s", kwlist,
&arg_filename))
return NULL;
/* build temporary filename template with same directory */
int file_len = strlen(arg_filename);
char * tmp_filename = calloc(1, sizeof(TMP_TEMPLATE) + file_len + 1);
if (tmp_filename == NULL)
return NULL;
char * basename = strrchr(arg_filename, '/');
if (basename) {
int path_len = file_len - strlen(basename) + 1;
strncpy(tmp_filename, arg_filename, path_len);
}
strcat(tmp_filename, TMP_TEMPLATE);
FILE *infile, *outfile;
int outfile_fd;
/* open up the old file. */
infile = fopen (arg_filename, "r");
if (!infile) {
free(tmp_filename);
return PyErr_SetFromErrnoWithFilename(PyExc_IOError, arg_filename);
}
/* create a new temporary output file */
outfile_fd = mkstemp(tmp_filename);
if (!outfile_fd) {
fclose(infile);
free(tmp_filename);
return PyErr_SetFromErrno(PyExc_IOError);
}
/* open stream for temporary file */
outfile = fdopen(outfile_fd, "wx");
if (!outfile) {
fclose(infile);
free(tmp_filename);
return PyErr_SetFromErrno(PyExc_IOError);
}
/* read in old PS3 data. Other areas will therefore be
* retained */
old_ps3_len = iptc_jpeg_read_ps3(infile, old_ps3, PS3_BUFLEN);
if (old_ps3_len < 0) {
free(tmp_filename);
return NULL;
}
/* setup our iptc header */
/* The following two lines can hurt Picasa compatability, so they
* are commented out. */
//iptc_data_set_version (self->d, IPTC_IIM_VERSION);
//iptc_data_set_encoding_utf8 (d);
iptc_data_sort (self->d);
/* save our IPTC data to a new stream */
if (iptc_data_save(self->d, &iptc_buf, &iptc_len) < 0) {
free(tmp_filename);
return NULL;
}
/* now save that stream into a photoshop header */
new_ps3_len = iptc_jpeg_ps3_save_iptc(old_ps3, old_ps3_len,
iptc_buf, iptc_len, new_ps3, PS3_BUFLEN);
/* free up the data stream */
iptc_data_free_buf(self->d, iptc_buf);
/* now save this header into the actual jpeg. */
rewind(infile);
if (iptc_jpeg_save_with_ps3 (infile, outfile, new_ps3, new_ps3_len) < 0) {
free(tmp_filename);
fprintf (stderr, "Failed to save image\n");
return NULL;
}
fclose (infile);
fclose (outfile);
/* rename to the new image */
if (rename (tmp_filename, arg_filename) < 0) {
free(tmp_filename);
return PyErr_SetFromErrnoWithFilename(PyExc_IOError,
arg_filename);
}
free(tmp_filename);
Py_RETURN_NONE;
}
static PyObject *
close_it(DataObject *self, PyObject *args) {
int i;
/* check this is actually open */
check_dataobject_open(self)
Py_CLEAR(self->filename);
for(i=0 ; i < PyList_GET_SIZE(self->DataSet_list) ; i++)
{
DataSetObject *dso = (DataSetObject *)PyList_GetItem(self->DataSet_list, i);
/* We clear our reference on the dataset list, but
* they still have a reference back to us. Only once
* all these object have been done with will this
* object be de-allocated. */
Py_CLEAR(dso);
}
Py_CLEAR(self->DataSet_list);
self->state = CLOSED;
Py_RETURN_NONE;
}
static PyMethodDef methods[] = {
{"save", (PyCFunction)save, METH_VARARGS|METH_KEYWORDS,
PyDoc_STR("save([string filename]) -> None\n\n"
"Save data back (optionally to a different file).")},
{"close", (PyCFunction)close_it, METH_VARARGS,
PyDoc_STR("close() -> None\n\n"
"Close file (note, does not save!).")},
{"add_dataset", (PyCFunction)add_dataset, METH_VARARGS,
PyDoc_STR("add_dataset((int record, int tag)) -> DataSet\n\n"
"Add a new, empty, dataset with (record, tag) value.")},
{NULL, NULL}, /* sentinel */
};
PyTypeObject Data_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"iptcdatamodule.Data", /*tp_name*/
sizeof(DataObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
methods, /*tp_methods*/
0, /*tp_members*/
getseters, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
0, /*tp_init*/
0, /*tp_alloc*/
/* this is instantiated by the open function */
0, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
};
/* --------------------------------------------------------------------- */
|