1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef BASE_LOCATION_H_
6 #define BASE_LOCATION_H_
11 #include "base/base_export.h"
12 #include "base/basictypes.h"
13 #include "base/containers/hash_tables.h"
15 namespace tracked_objects
{
17 // Location provides basic info where of an object was constructed, or was
18 // significantly brought to life.
19 class BASE_EXPORT Location
{
21 // Constructor should be called with a long-lived char*, such as __FILE__.
22 // It assumes the provided value will persist as a global constant, and it
23 // will not make a copy of it.
24 Location(const char* function_name
,
25 const char* file_name
,
27 const void* program_counter
);
29 // Provide a default constructor for easy of debugging.
33 Location(const Location
& other
);
35 // Comparator for hash map insertion.
36 // No need to use |function_name_| since the other two fields uniquely
37 // identify this location.
38 bool operator==(const Location
& other
) const {
39 return line_number_
== other
.line_number_
&&
40 file_name_
== other
.file_name_
;
43 const char* function_name() const { return function_name_
; }
44 const char* file_name() const { return file_name_
; }
45 int line_number() const { return line_number_
; }
46 const void* program_counter() const { return program_counter_
; }
48 std::string
ToString() const;
50 // Hash operator for hash maps.
52 size_t operator()(const Location
& location
) const {
53 // Compute the hash value using file name pointer and line number.
54 // No need to use |function_name_| since the other two fields uniquely
55 // identify this location.
57 // The file name will always be uniquely identified by its pointer since
58 // it comes from __FILE__, so no need to check the contents of the string.
59 // See the definition of FROM_HERE in location.h, and how it is used
62 // Due to inconsistent definitions of uint64_t and uintptr_t, casting the
63 // file name pointer to a uintptr_t causes a compiler error for some
64 // platforms. The solution is to explicitly cast it to a uint64_t.
65 return base::HashPair(reinterpret_cast<uint64_t>(location
.file_name()),
66 location
.line_number());
70 // Translate the some of the state in this instance into a human readable
71 // string with HTML characters in the function names escaped, and append that
72 // string to |output|. Inclusion of the file_name_ and function_name_ are
73 // optional, and controlled by the boolean arguments.
74 void Write(bool display_filename
, bool display_function_name
,
75 std::string
* output
) const;
77 // Write function_name_ in HTML with '<' and '>' properly encoded.
78 void WriteFunctionName(std::string
* output
) const;
81 const char* function_name_
;
82 const char* file_name_
;
84 const void* program_counter_
;
87 // A "snapshotted" representation of the Location class that can safely be
88 // passed across process boundaries.
89 struct BASE_EXPORT LocationSnapshot
{
90 // The default constructor is exposed to support the IPC serialization macros.
92 explicit LocationSnapshot(const tracked_objects::Location
& location
);
95 std::string file_name
;
96 std::string function_name
;
100 BASE_EXPORT
const void* GetProgramCounter();
102 // Define a macro to record the current source location.
103 #define FROM_HERE FROM_HERE_WITH_EXPLICIT_FUNCTION(__FUNCTION__)
105 #define FROM_HERE_WITH_EXPLICIT_FUNCTION(function_name) \
106 ::tracked_objects::Location(function_name, \
109 ::tracked_objects::GetProgramCounter())
111 } // namespace tracked_objects
113 #endif // BASE_LOCATION_H_