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 510 511 512 513 514 515 516 517 518 519 520 521 522
|
/* gap_base.c
* 1997.11.01 hof (Wolfgang Hofer)
*
* GAP ... Gimp Animation Plugins
*
* basic GAP types and utility procedures
*
*/
/* 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:
* 2.5.0 2009.03.07 hof: created
*/
#include "config.h"
/* SYSTEM (UNIX) includes */
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <signal.h> /* for kill */
#ifdef HAVE_SYS_TIMES_H
#include <sys/times.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <glib/gstdio.h>
/* GIMP includes */
#include "gtk/gtk.h"
#include "libgimp/gimp.h"
#include "libgimpwidgets/gimpwidgetstypes.h"
#include "libgimpwidgets/gimpwidgets.h"
#ifdef G_OS_WIN32
#include <io.h>
# ifndef S_ISDIR
# define S_ISDIR(m) ((m) & _S_IFDIR)
# endif
# ifndef S_ISREG
# define S_ISREG(m) ((m) & _S_IFREG)
# endif
#endif
#ifdef G_OS_WIN32
#include <process.h> /* For _getpid() */
#endif
/* GAP includes */
#include "gap_base.h"
extern int gap_debug; /* ==0 ... dont print debug infos */
/* -----------------------------
* gap_base_shorten_filename
* -----------------------------
* resulting string is built from prefix filename and suffix
* filename will be shortened when
* prefix + " " + filename + " " + suffix
* is longer then max_chars.
* examples:
* gap_base_shorten_filenam("prefix", "this_is_a_very_long_filename", NULL, 20)
* returns: "prefix ...g_filename"
*
* gap_base_shorten_filenam("prefix", "shortname", NULL, 20)
* returns: "prefix shortname"
*
* the caller is responsible to g_free the returned string
*/
char *
gap_base_shorten_filename(const char *prefix
,const char *filename
,const char *suffix
,gint32 max_chars
)
{
gint len_prefix;
gint len_fname;
const char *pfx;
char *fnam;
char *ret_string;
len_prefix = 0;
len_fname = 0;
ret_string = NULL;
pfx = prefix;
if(prefix)
{
len_prefix = strlen(prefix);
if((len_prefix + 10) > max_chars)
{
pfx = NULL;
len_prefix = 0;
}
else
{
len_prefix++; /* for the space between prefix and fname */
}
}
if(filename)
{
fnam = NULL;
if(suffix)
{
fnam = g_strdup_printf("%s %s", filename, suffix);
}
else
{
fnam = g_strdup(filename);
}
len_fname = strlen(fnam);
if((len_fname + len_prefix) <= max_chars)
{
if(pfx)
{
ret_string = g_strdup_printf("%s %s"
,pfx
,fnam
);
}
else
{
ret_string = g_strdup_printf("%s"
,fnam
);
}
}
else
{
gint fname_idx;
gint len_rest;
len_rest = (max_chars - len_prefix - 3);
fname_idx = len_fname - len_rest;
if(pfx)
{
ret_string = g_strdup_printf("%s ...%s"
,pfx
,&fnam[fname_idx]
);
}
else
{
ret_string = g_strdup_printf("...%s"
,&fnam[fname_idx]
);
}
}
g_free(fnam);
return (ret_string);
}
ret_string = g_strdup(prefix);
return(ret_string);
} /* end gap_base_shorten_filename */
/* -----------------------------
* gap_base_strdup_add_underscore
* -----------------------------
* duplicates the specifed string and if last character is no underscore add one at end.
* the caller is responsible to g_free the result after usage.
*/
char *
gap_base_strdup_add_underscore(char *name)
{
int l_len;
char *l_str;
if(name == NULL)
{
return(g_strdup("\0"));
}
l_len = strlen(name);
l_str = g_malloc(l_len+2);
strcpy(l_str, name);
if(l_len > 0)
{
if (name[l_len-1] != '_')
{
l_str[l_len ] = '_';
l_str[l_len +1 ] = '\0';
}
}
return(l_str);
}
/* -----------------------------
* gap_base_strdup_del_underscore
* -----------------------------
* duplicates the specifed string and delete the last character
* if it is the underscore
* the caller is responsible to g_free the result after usage.
*/
char *
gap_base_strdup_del_underscore(char *name)
{
int l_len;
char *l_str;
if(name == NULL)
{
return(g_strdup("\0"));
}
l_len = strlen(name);
l_str = g_strdup(name);
if(l_len > 0)
{
if (l_str[l_len-1] == '_')
{
l_str[l_len -1 ] = '\0';
}
}
return(l_str);
}
/* --------------------------------------------------------
* gap_base_dup_filename_and_replace_extension_by_underscore
* --------------------------------------------------------
* returns a duplicate of the specified filename where the extension
* (.xcf .jpg ...) is cut off and rplaced by the underscore character.
* example: filename = "image_000001.xcf"
* returns "image_000001_"
*
* the caller is responsible to g_free the result after usage.
*/
char *
gap_base_dup_filename_and_replace_extension_by_underscore(const char *filename)
{
int l_len;
int l_idx;
char *l_str;
char *l_nameWithUnderscore;
if(filename == NULL)
{
return (g_strdup("_"));
}
l_len = strlen(filename);
l_str = g_strdup(filename);
/* cut off the trailing .extension */
for(l_idx = l_len -1; l_idx >= 0; l_idx--)
{
if (l_str[l_idx] == '.')
{
l_str[l_idx] = '\0';
break;
}
}
/* add underscore (if not already there) */
l_nameWithUnderscore = gap_base_strdup_add_underscore(l_str);
g_free(l_str);
return (l_nameWithUnderscore);
} /* end gap_base_dup_filename_and_replace_extension_by_underscore */
/* --------------------------------
* gap_base_fprintf_gdouble
* --------------------------------
* print prefix and gdouble value to file
* (always use "." as decimalpoint, independent of LOCALE language settings)
*/
void
gap_base_fprintf_gdouble(FILE *fp, gdouble value, gint digits, gint precision_digits, const char *pfx)
{
gchar l_dbl_str[G_ASCII_DTOSTR_BUF_SIZE];
gchar l_fmt_str[20];
gint l_len;
g_snprintf(l_fmt_str, sizeof(l_fmt_str), "%%.%df", (int)precision_digits);
g_ascii_formatd(l_dbl_str, sizeof(l_dbl_str), l_fmt_str, value);
fprintf(fp, "%s", pfx);
/* make leading blanks */
l_len = strlen(l_dbl_str) - (digits + 1 + precision_digits);
while(l_len < 0)
{
fprintf(fp, " ");
l_len++;
}
fprintf(fp, "%s", l_dbl_str);
} /* end gap_base_fprintf_gdouble */
/* ============================================================================
* gap_base_sscan_flt_numbers
* ============================================================================
* scan the blank separated buffer for 2 integer and 13 float numbers.
* always use "." as decimalpoint in the float numbers regardless to LANGUAGE settings
* return a counter that tells how many numbers were scanned successfully
*/
gint
gap_base_sscan_flt_numbers(gchar *buf
, gdouble *farr
, gint farr_max
)
{
gint l_cnt;
gchar *nptr;
gchar *endptr;
l_cnt =0;
nptr = buf;
while(l_cnt < farr_max)
{
endptr = nptr;
farr[l_cnt] = g_ascii_strtod(nptr, &endptr);
if(nptr == endptr)
{
break; /* pointer was not advanced because no valid floatnumber was scanned */
}
nptr = endptr;
l_cnt++; /* count successful scans */
}
return (l_cnt);
} /* end gap_base_sscan_flt_numbers */
/* --------------------------------
* gap_base_check_tooltips
* --------------------------------
* check and enable/disable tooltips according to global gimprc settings
*/
gboolean
gap_base_check_tooltips(gboolean *old_state)
{
char *value_string;
gboolean new_state;
gboolean changed;
new_state = TRUE;
changed = TRUE;
value_string = gimp_gimprc_query("show-tooltips");
if(value_string != NULL)
{
if (strcmp(value_string, "no") == 0)
{
new_state = FALSE;
}
}
if (old_state != NULL)
{
if(*old_state == new_state)
{
changed = FALSE;
}
}
if (changed == TRUE)
{
if(new_state == TRUE)
{
gimp_help_enable_tooltips ();
}
else
{
gimp_help_disable_tooltips ();
}
}
return (new_state);
} /* end gap_base_check_tooltips */
/* -----------------------------------------
* gap_base_get_gimprc_int_value
* -----------------------------------------
* get integer configuration value for the keyname gimprc_option_name from the gimprc file.
* returns the configure value in constaint to the specified range
* (between min_value and max_value)
* the specified default_value is returned in case the gimprc
* has no entry for the specified gimprc_option_name.
*/
gint32
gap_base_get_gimprc_int_value (const char *gimprc_option_name
, gint32 default_value, gint32 min_value, gint32 max_value)
{
char *value_string;
gint32 value;
value = default_value;
value_string = gimp_gimprc_query(gimprc_option_name);
if(value_string)
{
value = atol(value_string);
g_free(value_string);
}
return (CLAMP(value, min_value, max_value));
} /* end p_get_gimprc_int_value */
/* -----------------------------------------
* gap_base_get_gimprc_gboolean_value
* -----------------------------------------
*/
gboolean
gap_base_get_gimprc_gboolean_value (const char *gimprc_option_name
, gboolean default_value)
{
char *value_string;
gboolean value;
value = default_value;
value_string = gimp_gimprc_query(gimprc_option_name);
if(value_string)
{
value = FALSE;
if((*value_string == 'y') || (*value_string == 'Y'))
{
value = FALSE;
}
g_free(value_string);
}
return (value);
} /* end gap_base_get_gimprc_gboolean_value */
/* --------------------------------
* gap_base_getpid
* --------------------------------
* get process id of the current process
*/
gint32
gap_base_getpid(void)
{
return ((gint32)getpid());
}
/* --------------------------------
* gap_base_is_pid_alive
* --------------------------------
* return TRUE if the process with the specified pid
* is alive.
* WARNING:
* there is no implementation for the WINDOWS operating system
* where the return value is always TRUE.
*/
gboolean
gap_base_is_pid_alive(gint32 pid)
{
#ifndef G_OS_WIN32
/* for UNIX */
/* kill with signal 0 checks only if the process is alive (no signal is sent)
* returns 0 if alive, 1 if no process with given pid found.
*/
if (0 == kill(pid, 0))
{
return(TRUE);
}
return (FALSE);
#else
/* hof: dont know how to check on Windows
* assume that process is always alive
* (therefore on Windows locks will not be cleared
* automatically after crashes of the locking process)
*/
return(TRUE);
#endif
}
/* --------------------------------
* gap_base_get_current_time
* --------------------------------
* get curent system time in utc timecode
*/
gint32
gap_base_get_current_time(void)
{
return ((gint32)time(0));
}
|