Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gltrace_support.h 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // -*- c++ -*- (emacs c++ mode)
  2. /*
  3. * Copyright (C) 2006 Thomas Sondergaard All Rights Reserved.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included
  13. * in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  19. * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  20. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. */
  22. #ifndef GLTRACE_SUPPORT_H
  23. #define GLTRACE_SUPPORT_H
  24. #include <string>
  25. #include <iostream>
  26. #include <memory>
  27. namespace gltrace {
  28. const int MAX_STACKFRAMES = 100;
  29. /// Returns the stack trace of the current thread
  30. std::string getStackTrace(int count = MAX_STACKFRAMES, int first = 0);
  31. std::ostream &timeNow(std::ostream &os);
  32. struct logstream : public std::ostream {
  33. /// Opens a logstream - if filename is null, stderr will be used
  34. logstream(const char *filename = 0);
  35. private:
  36. std::auto_ptr<std::ofstream> file_os;
  37. };
  38. struct Config {
  39. bool logCalls;
  40. bool checkErrors;
  41. bool logTime;
  42. logstream log;
  43. Config();
  44. };
  45. extern Config config;
  46. } // namespace gltrace
  47. #define GLTRACE_LOG(x) \
  48. { if (config.logTime) config.log << timeNow << ": "; config.log << x << "\n"; }
  49. #endif // GLTRACE_SUPPORT_H