gsl_err__stream.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* err/stream.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. #include "gsl__config.h"
  20. #include <stddef.h>
  21. #include <stdlib.h>
  22. #include <stdio.h>
  23. #include "gsl_errno.h"
  24. #include "gsl_message.h"
  25. FILE * gsl_stream = NULL ;
  26. gsl_stream_handler_t * gsl_stream_handler = NULL;
  27. void
  28. gsl_stream_printf (const char *label, const char *file, int line,
  29. const char *reason)
  30. {
  31. if (gsl_stream == NULL)
  32. {
  33. gsl_stream = stderr;
  34. }
  35. if (gsl_stream_handler)
  36. {
  37. (*gsl_stream_handler) (label, file, line, reason);
  38. return;
  39. }
  40. fprintf (gsl_stream, "gsl: %s:%d: %s: %s\n", file, line, label, reason);
  41. }
  42. gsl_stream_handler_t *
  43. gsl_set_stream_handler (gsl_stream_handler_t * new_handler)
  44. {
  45. gsl_stream_handler_t * previous_handler = gsl_stream_handler;
  46. gsl_stream_handler = new_handler;
  47. return previous_handler;
  48. }
  49. FILE *
  50. gsl_set_stream (FILE * new_stream)
  51. {
  52. FILE * previous_stream;
  53. if (gsl_stream == NULL) {
  54. gsl_stream = stderr;
  55. }
  56. previous_stream = gsl_stream;
  57. gsl_stream = new_stream;
  58. return previous_stream;
  59. }