~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to progs/tools/trace/gltrace_support.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
25
 
#include <string>
26
 
#include <iostream>
27
 
#include <memory>
28
 
 
29
 
namespace gltrace {
30
 
 
31
 
  const int MAX_STACKFRAMES = 100;
32
 
 
33
 
  /// Returns the stack trace of the current thread
34
 
  std::string getStackTrace(int count = MAX_STACKFRAMES, int first = 0);
35
 
  
36
 
  std::ostream &timeNow(std::ostream &os);
37
 
 
38
 
  struct logstream : public std::ostream {
39
 
    
40
 
    /// Opens a logstream - if filename is null, stderr will be used
41
 
    logstream(const char *filename = 0);
42
 
    
43
 
  private:
44
 
    std::auto_ptr<std::ofstream> file_os;
45
 
  };
46
 
 
47
 
  struct Config {
48
 
    bool logCalls;
49
 
    bool checkErrors;
50
 
    bool logTime;
51
 
    logstream log;
52
 
    
53
 
    Config();
54
 
  };
55
 
 
56
 
  extern Config config;
57
 
 
58
 
} // namespace gltrace
59
 
 
60
 
#define GLTRACE_LOG(x) \
61
 
   { if (config.logTime) config.log << timeNow << ": "; config.log << x << "\n"; }
62
 
 
63
 
#endif // GLTRACE_SUPPORT_H
64
 
 
65