u3_error.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * u3-tool - U3 USB stick manager
  3. * Copyright (C) 2007 Daviedev, daviedev@users.sourceforge.net
  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 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. */
  19. #include "u3_error.h"
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <stdarg.h>
  23. #include <string.h>
  24. char *u3_error_msg(u3_handle_t *device) {
  25. return device->err_msg;
  26. }
  27. void u3_set_error(u3_handle_t *device, const char *fmt, ...) {
  28. va_list ap;
  29. va_start(ap, fmt);
  30. vsnprintf(device->err_msg, U3_MAX_ERROR_LEN, fmt, ap);
  31. device->err_msg[U3_MAX_ERROR_LEN-1] = '\0';
  32. va_end(ap);
  33. }
  34. void u3_prepend_error(u3_handle_t *device, const char *fmt, ...) {
  35. va_list ap;
  36. char *old_msg;
  37. old_msg = strdup(device->err_msg);
  38. if (old_msg == NULL) return;
  39. va_start(ap, fmt);
  40. vsnprintf(device->err_msg, U3_MAX_ERROR_LEN, fmt, ap);
  41. device->err_msg[U3_MAX_ERROR_LEN-1] = '\0';
  42. va_end(ap);
  43. strncat(device->err_msg, ": ",
  44. U3_MAX_ERROR_LEN - strlen(device->err_msg) - 1);
  45. strncat(device->err_msg, old_msg,
  46. U3_MAX_ERROR_LEN - strlen(device->err_msg) - 1);
  47. free(old_msg);
  48. }