This file is indexed.

/usr/include/cvc3/cvc_util.h is in libcvc3-dev 2.4.1-5ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*****************************************************************************/
/*!
 *\file cvc_util.h
 *\brief basic helper utilities
 *
 * Author: Clark Barrett
 *
 * Created: Thu Dec  1 16:35:52 2005
 *
 * <hr>
 *
 * License to use, copy, modify, sell and/or distribute this software
 * and its documentation for any purpose is hereby granted without
 * royalty, subject to the terms and conditions defined in the \ref
 * LICENSE file provided with this distribution.
 * 
 * <hr>
 */
/*****************************************************************************/

#ifndef _cvc3__debug_h
#include "debug.h"
#endif

#ifndef _cvc3__cvc_util_h
#define _cvc3__cvc_util_h

namespace CVC3 {

inline std::string to_upper(const std::string & src){
  std::string nameup; 
  for(std::string::const_iterator i=src.begin(), iend = src.end(); i!=iend ; i++){
    nameup.push_back(toupper(*i));
  }
  return nameup;
}

inline std::string to_lower(const std::string & src){
  std::string nameup; 
  for(std::string::const_iterator i=src.begin(), iend = src.end(); i!=iend ; i++){
    nameup.push_back(tolower(*i));
  }
  return nameup;
}

inline std::string int2string(int n) {
  std::ostringstream ss;
  ss << n;
  return ss.str();
}

template<class T>
T abs(T t) { return t < 0 ? -t : t; }

template<class T>
T max(T a, T b) { return a > b ? a : b; }

struct ltstr{
  bool operator()(const std::string& s1, const std::string& s2) const{
    return s1.compare(s2) < 0;
  }
};

template<class T>
class StrPairLess {
public:
  bool operator()(const std::pair<std::string,T>& p1,
		  const std::pair<std::string,T>& p2) const {
    return p1.first < p2.first;
  }
};

template<class T>
std::pair<std::string,T> strPair(const std::string& f, const T& t) {
  return std::pair<std::string,T>(f, t);
}

typedef std::pair<std::string,std::string> StrPair;

//! Sort two vectors based on the first vector
template<class T>
void sort2(std::vector<std::string>& keys, std::vector<T>& vals) {
  DebugAssert(keys.size()==vals.size(), "sort2()");
  // Create std::vector of pairs
  std::vector<std::pair<std::string,T> > pairs;
  for(size_t i=0, iend=keys.size(); i<iend; ++i)
    pairs.push_back(strPair(keys[i], vals[i]));
  // Sort pairs
  StrPairLess<T> comp;
  sort(pairs.begin(), pairs.end(), comp);
  DebugAssert(pairs.size() == keys.size(), "sort2()");
  // Split the pairs back into the original vectors
  for(size_t i=0, iend=pairs.size(); i<iend; ++i) {
    keys[i] = pairs[i].first;
    vals[i] = pairs[i].second;
  }
}

/*! @brief A class which sets a boolean value to true when created,
 * and resets to false when deleted.
 *
 * Useful for tracking when the control is within a certain method or
 * not.  For example, TheoryCore::addFact() uses d_inAddFact to check
 * that certain other methods are only called from within addFact().
 * However, when an exception is thrown, this variable is not reset.
 * The watcher class will reset the variable even in those cases.
 */
class ScopeWatcher {
 private:
  bool *d_flag;
public:
  ScopeWatcher(bool *flag): d_flag(flag) { *d_flag = true; }
  ~ScopeWatcher() { *d_flag = false; }
};


// For memory calculations
class MemoryTracker {
public:
  static void print(std::string name, int verbosity,
                    unsigned long memSelf, unsigned long mem)
  {
    if (verbosity > 0) {
      std::cout << name << ": " << memSelf << std::endl;
      std::cout << "  Children: " << mem << std::endl;
      std::cout << "  Total: " << mem+memSelf << std::endl;
    }
  }

  template <typename T>
  static unsigned long getVec(int verbosity, const std::vector<T>& v)
  {
    unsigned long memSelf = sizeof(std::vector<T>);
    unsigned long mem = 0;
    print("vector", verbosity, memSelf, mem);
    return memSelf + mem;
  }

  template <typename T>
  static unsigned long getVecAndData(int verbosity, const std::vector<T>& v)
  {
    unsigned long memSelf = sizeof(std::vector<T>);
    unsigned long mem = 0;
    for (unsigned i = 0; i < v.size(); ++i) {
      mem += v[i].getMemory(verbosity - 1);
    }
    print("vector+data", verbosity, memSelf, mem);
    return memSelf + mem;
  }

  template <typename T>
  static unsigned long getVecAndDataP(int verbosity, const std::vector<T>& v)
  {
    unsigned long memSelf = sizeof(std::vector<T>);
    unsigned long mem = 0;
    for (unsigned i = 0; i < v.size(); ++i) {
      mem += v[i]->getMemory(verbosity - 1);
    }
    print("vector+data(p)", verbosity, memSelf, mem);
    return memSelf + mem;
  }

  static unsigned long getString(int verbosity, const std::string& s)
  {
    unsigned long memSelf = sizeof(std::string);
    unsigned long mem = s.capacity() * sizeof(char);
    print("string", verbosity, memSelf, mem);
    return memSelf + mem;
  }

//   template <class _Key, class _Value,
// 	    class _HashFcn, class _EqualKey, class _ExtractKey>
//     unsigned long get(int verbosity, const hash_table<_Key, _Value, _HashFcn, 
//         unsigned long memSelf = sizeof(BucketNode);
//         unsigned long mem = 0;
//         BucketNode* node = this;
//         do {
//           if (getMemoryData) {
//             mem += d_value.getMemory(verbosity
//           node = node->d_next;
//         } while (node != NULL)          
//         unsigned long mem = 0;

//         mem += getMemoryVec(verbosity - 1, d_data, false, true);
//         printMemory("hash_table", verbosity, memSelf, mem);
//         return mem+memSelf;
//       }

//   unsigned long getMemory(int verbosity, hash_table) {
//       unsigned long memSelf = sizeof(hash_table);
//       unsigned long mem = 0;
//       mem += d_hash.getmemory(verbosity - 1) - sizeof(hasher);
//       mem += d_equal.getmemory(verbosity - 1) - sizeof(key_equal);
//       mem += d_extractKey.getmemory(verbosity - 1) - sizeof(_ExtractKey);

//       // handle data
//       mem += sizeof(Data);
//       mem += sizeof(Bucket*)*d_data.capacity();
//       for (unsigned i = 0; i < d_data.size(); ++i) {
//         mem += d_data[i]->getMemory(verbosity - 1, getMemoryData, getMemoryDataP);
//       }

//       printMemory("hash_table", verbosity, memSelf, mem);
//       return mem+memSelf;
//     }
  
//     unsigned long getMemory(int verbosity, hash_map) const {
//       unsigned long memSelf = sizeof(hash_map);
//       unsigned long mem = 0;
//       mem += d_table.getMemory(verbosity - 1) - sizeof(_hash_table);
//       MemoryTracker::print("hash_map", verbosity, memSelf, mem);
//       return mem+memSelf;
//     }


}; // End of MemoryTracker
  
}

#endif