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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
|
/* gap_gve_misc_util.c
*
* GAP video encoder tool procedures
* - filehandling
* - GAP filename (framename) handling
*
*/
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* revision history:
* version 1.2.1a; 2004.05.14 hof: created
*/
/* SYTEM (UNIX) includes */
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <string.h>
#include <glib/gstdio.h>
/* GIMP includes */
#include "gtk/gtk.h"
/* #include "libgimp/stdplugins-intl.h" */
#include "libgimp/gimp.h"
#include "gap_image.h"
#include "gap_libgapbase.h"
#include "gap_gve_misc_util.h"
/*************************************************************
* TOOL FUNCTIONS *
*************************************************************/
/* --------------------------
* gap_gve_misc_get_ainfo
* --------------------------
* get animinfo using
* a PDB call to the corresponding GAP Base Functionality.
* - check if the directory, where the the given image's filename resides as file
* has more frames with equal basename and extension.
* fill the ainfo structure with information
* about the first and last framenumber and number of frames (frame_cnt)
*/
void
gap_gve_misc_get_ainfo(gint32 image_ID, GapGveEncAInfo *ainfo)
{
static char *l_called_proc = "plug_in_gap_get_animinfo";
GimpParam *return_vals;
int nreturn_vals;
gint32 dummy_layer_id;
dummy_layer_id = gap_image_get_any_layer(image_ID);
return_vals = gimp_run_procedure (l_called_proc,
&nreturn_vals,
GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE,
GIMP_PDB_IMAGE, image_ID,
GIMP_PDB_DRAWABLE, dummy_layer_id,
GIMP_PDB_END);
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
{
ainfo->first_frame_nr = return_vals[1].data.d_int32;
ainfo->last_frame_nr = return_vals[2].data.d_int32;
ainfo->curr_frame_nr = return_vals[3].data.d_int32;
ainfo->frame_cnt = return_vals[4].data.d_int32;
g_snprintf(ainfo->basename, sizeof(ainfo->basename), "%s", return_vals[5].data.d_string);
g_snprintf(ainfo->extension, sizeof(ainfo->extension), "%s", return_vals[6].data.d_string);
ainfo->framerate = return_vals[7].data.d_float;
gimp_destroy_params(return_vals, nreturn_vals);
return;
}
gimp_destroy_params(return_vals, nreturn_vals);
printf("Error: PDB call of %s failed, image_ID: %d\n", l_called_proc, (int)image_ID);
} /* end gap_gve_misc_get_ainfo */
/* ---------------------------------
* p_gap_build_enc_status_filename
* ---------------------------------
* build the filename that is used for communication
* the encoder status between the GIMP-GAP master videoencoder and the
* video encoder plug-in (that typically runs in a separate process)
*/
static char *
p_gap_build_enc_status_filename(gint32 master_encoder_id)
{
char *filename;
char *buf;
buf = g_strdup_printf("gap_master_videoencoder_progress_%d", master_encoder_id);
filename = g_build_filename(gimp_directory(), buf, NULL);
g_free(buf);
return (filename);
} /* end p_gap_build_enc_status_filename */
/* ---------------------------------------
* p_gap_build_enc_cancel_request_filename
* ---------------------------------------
* build the filename that is used to indicate cancel a running video encoder process.
* (if this file exists cancel request is TRUE)
*/
static char *
p_gap_build_enc_cancel_request_filename(gint32 master_encoder_id)
{
char *filename;
char *buf;
buf = g_strdup_printf("gap_master_videoencoder_cancel_%d", master_encoder_id);
filename = g_build_filename(gimp_directory(), buf, NULL);
g_free(buf);
return (filename);
} /* end p_gap_build_enc_cancel_request_filename */
/* -----------------------------------------------
* p_get_number_at_end_of_string
* -----------------------------------------------
* return number at end of the specified string
* return -1 in case the string does not end with a number
*/
static gint32
p_get_number_at_end_of_string(const char *name)
{
gint32 number;
number = -1;
if (name)
{
gint32 idx;
idx = strlen(name) -1;
while(idx >= 0)
{
if((name[idx] >= '0') && (name[idx] <= '9'))
{
number = atol(&name[idx]);
}
else
{
break;
}
idx--;
}
}
return (number);
} /* end p_get_number_at_end_of_string */
/* -----------------------------------------------
* p_gap_delete_old_communication_files
* -----------------------------------------------
* delete older communication files (if there are any)
* this kind of cleanup tries to remove old comminication files
* that may be still there
* if a previous call to the master video encoder crashed or was killed.
*/
static void
p_gap_delete_old_communication_files()
{
GDir *l_dirp;
const gchar *l_entry;
const char *l_directory;
#define SECONDS_OF_ONE_HOUR 3600
l_directory = gimp_directory();
l_dirp = g_dir_open( l_directory, 0, NULL );
if(l_dirp)
{
gint32 l_ref_mtime;
l_ref_mtime = gap_base_get_current_time();
while ( (l_entry = g_dir_read_name( l_dirp )) != NULL )
{
if(gap_debug)
{
printf("delete_old_communication_files: l_entry:%s\n", l_entry);
}
if (strncmp(l_entry, "gap_master_videoencoder_", strlen("gap_master_videoencoder_")) == 0)
{
char *l_filename;
gint32 l_mtime;
gint32 l_diff_time;
gint32 l_pid;
gint32 l_delete_flag;
l_delete_flag = FALSE;
l_filename = g_build_filename(l_directory, l_entry, NULL);
l_pid = p_get_number_at_end_of_string(l_entry);
l_mtime = gap_file_get_mtime(l_filename);
l_diff_time = l_ref_mtime - l_mtime;
if(l_pid >= 0)
{
/* note: detection of a not-running process works only on unix systems */
if(!gap_base_is_pid_alive(l_pid))
{
l_delete_flag = TRUE; /* delete commounication files immediate when refered process is not running */
}
else
{
/* assume old communication file when it did not change in the last hour
* (for NON unix operating systems)
*/
if (l_diff_time > SECONDS_OF_ONE_HOUR)
{
l_delete_flag = TRUE; /* delete commounication files immediate when refered process is not running */
}
}
}
if (l_delete_flag == TRUE)
{
if(gap_debug)
{
printf("DELETE file: %s l_ref_mtime:%d l_mtime:%d diff:%d l_pid:%d\n"
, l_filename
, (int)l_ref_mtime
, (int)l_mtime
, (int)l_diff_time
, (int)l_pid
);
}
g_remove(l_filename);
}
g_free(l_filename);
}
}
g_dir_close( l_dirp );
}
} /* end p_gap_delete_old_communication_files */
/* ---------------------------------------
* p_private_cleanup_GapGveMasterEncoder
* ---------------------------------------
* cleanup (remove communication files)
* typically called by the master videoencoder when encoding has finished.
*/
static void
p_private_cleanup_GapGveMasterEncoder(gint32 master_encoder_id)
{
char *filename;
filename = p_gap_build_enc_cancel_request_filename(master_encoder_id);
if(g_file_test(filename, G_FILE_TEST_EXISTS))
{
g_remove(filename);
}
g_free(filename);
filename = p_gap_build_enc_status_filename(master_encoder_id);
if(g_file_test(filename, G_FILE_TEST_EXISTS))
{
g_remove(filename);
}
g_free(filename);
} /* end p_private_cleanup_GapGveMasterEncoder */
/* ---------------------------------------
* gap_gve_misc_cleanup_GapGveMasterEncoder
* ---------------------------------------
* cleanup (remove communication files)
* typically called by the master videoencoder when encoding has finished.
*/
void
gap_gve_misc_cleanup_GapGveMasterEncoder(gint32 master_encoder_id)
{
p_private_cleanup_GapGveMasterEncoder(master_encoder_id);
p_gap_delete_old_communication_files();
} /* end gap_gve_misc_cleanup_GapGveMasterEncoder */
/* ------------------------------------------
* gap_gve_misc_initGapGveMasterEncoderStatus
* ------------------------------------------
* This pocedure is typically called at start of video encoding
*/
void
gap_gve_misc_initGapGveMasterEncoderStatus(GapGveMasterEncoderStatus *encStatus
, gint32 master_encoder_id, gint32 total_frames)
{
p_private_cleanup_GapGveMasterEncoder(master_encoder_id);
encStatus->master_encoder_id = master_encoder_id;
encStatus->total_frames = total_frames;
encStatus->frames_processed = 0;
encStatus->frames_encoded = 0;
encStatus->frames_copied_lossless = 0;
encStatus->current_pass = 0;
encStatus->pidOfRunningEncoder = 0;
gap_gve_misc_do_master_encoder_progress(encStatus);
}
/* ------------------------------------------
* p_write_encoder_status
* ------------------------------------------
* write current encoder status to binary file
* (the file is used for communication between the encoder process
* and the master videoencoder GUI process)
*/
static void
p_write_encoder_status(GapGveMasterEncoderStatus *encStatus)
{
FILE *fp;
char *filename;
filename = p_gap_build_enc_status_filename(encStatus->master_encoder_id);
if(gap_debug)
{
printf("p_write_encoder_status: frames_processed:%d, PID:%d filename:%s\n"
, (int) encStatus->frames_processed
, (int) gap_base_getpid()
, filename
);
}
fp = g_fopen(filename, "wb");
if(fp)
{
fwrite(encStatus, sizeof(GapGveMasterEncoderStatus), 1, fp);
fclose(fp);
}
g_free(filename);
}
/* ------------------------------------------
* p_read_encoder_status
* ------------------------------------------
* read current encoder status from binary file
* (the file is used for communication between the encoder process
* and the master videoencoder GUI process)
*/
static void
p_read_encoder_status(GapGveMasterEncoderStatus *encStatus)
{
FILE *fp;
char *filename;
gint32 master_encoder_id;
master_encoder_id = encStatus->master_encoder_id;
filename = p_gap_build_enc_status_filename(master_encoder_id);
fp = g_fopen(filename, "rb");
if(fp)
{
GapGveMasterEncoderStatus encBuffer;
fread(&encBuffer, sizeof(GapGveMasterEncoderStatus), 1, fp);
fclose(fp);
if(master_encoder_id == encBuffer.master_encoder_id)
{
memcpy(encStatus, &encBuffer, sizeof(GapGveMasterEncoderStatus));
}
else
{
printf("p_read_encoder_status: ERROR unexpected contetent in communication filename:%s\n PID:%d id expected: %d but found: %d\n"
, filename
, (int) gap_base_getpid()
, (int) master_encoder_id
, (int) encBuffer.master_encoder_id
);
}
if(gap_debug)
{
printf("p_read_encoder_status: frames_processed:%d, PID:%d filename:%s\n"
, (int) encStatus->frames_processed
, (int) gap_base_getpid()
, filename
);
}
}
else
{
printf("p_read_encoder_status: ERROR cold not open communication filename:%s PID:%d\n"
, filename
, (int) gap_base_getpid()
);
}
g_free(filename);
}
/* ----------------------------------------
* gap_gve_misc_do_master_encoder_progress
* ----------------------------------------
* This pocedure is typically called in video encoder plug-ins
* to report the current encoding status.
* (including the process id of the encoder plug-in)
*/
void
gap_gve_misc_do_master_encoder_progress(GapGveMasterEncoderStatus *encStatus)
{
if(encStatus)
{
encStatus->pidOfRunningEncoder = gap_base_getpid();
p_write_encoder_status(encStatus);
}
}
/* ---------------------------------------------
* gap_gve_misc_is_master_encoder_cancel_request
* ---------------------------------------------
* This pocedure is typically called in video encoder plug-ins
* to query for cancel request (Cancel button pressed in the master encoder)
*/
gboolean
gap_gve_misc_is_master_encoder_cancel_request(GapGveMasterEncoderStatus *encStatus)
{
gboolean cancelRequest;
char *filename;
cancelRequest = FALSE;
filename = p_gap_build_enc_cancel_request_filename(encStatus->master_encoder_id);
if(g_file_test(filename, G_FILE_TEST_EXISTS))
{
cancelRequest = TRUE;
}
g_free(filename);
return (cancelRequest);
}
/* -----------------------------------------
* gap_gve_misc_get_master_encoder_progress
* -----------------------------------------
* This pocedure is typically called in the master encoder dialog
* to get the status of the running video encoder plug-in.
*/
void
gap_gve_misc_get_master_encoder_progress(GapGveMasterEncoderStatus *encStatus)
{
p_read_encoder_status(encStatus);
return;
}
/* ----------------------------------------------
* gap_gve_misc_set_master_encoder_cancel_request
* ----------------------------------------------
* This pocedure is typically called in the master video encoder
* to request the already started video encoder plug-in to terminate.
* (the request is indicated by creating a file with a special name,
* its content is just comment and not relevant)
*/
void
gap_gve_misc_set_master_encoder_cancel_request(GapGveMasterEncoderStatus *encStatus, gboolean cancelRequest)
{
FILE *fp;
char *filename;
filename = p_gap_build_enc_cancel_request_filename(encStatus->master_encoder_id);
fp = g_fopen(filename, "w");
if(fp)
{
fprintf(fp, "GAP videoencoder CANCEL requested\n");
fclose(fp);
}
g_free(filename);
}
|