1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Reformat all code to coding standard

This commit is contained in:
Andrew Hutchings
2017-10-26 17:18:17 +01:00
parent 4985f3456e
commit 01446d1e22
1296 changed files with 403852 additions and 353747 deletions

View File

@ -39,14 +39,16 @@ namespace std
{
namespace tr1
{
template<>
struct hash<long long unsigned int>
template<>
struct hash<long long unsigned int>
: public std::unary_function<long long unsigned int, std::size_t>
{
std::size_t
operator()(long long unsigned int val) const
{
std::size_t
operator()(long long unsigned int val) const
{ return static_cast<std::size_t>(val); }
};
return static_cast<std::size_t>(val);
}
};
}
}
#endif
@ -62,108 +64,145 @@ namespace joiner
{
/* There has to be a better name for this. Not used ATM. */
struct MatchedET {
MatchedET() { }
MatchedET(const joblist::ElementType &et) : e(et) { }
joblist::ElementType e;
struct MatchedET
{
MatchedET() { }
MatchedET(const joblist::ElementType& et) : e(et) { }
joblist::ElementType e;
// bool matched; // Might need this, might not
inline bool operator<(const MatchedET &c) const { return e.second < c.e.second; }
inline bool operator<(const MatchedET& c) const
{
return e.second < c.e.second;
}
};
class Joiner {
public:
class Joiner
{
public:
// typedef std::tr1::unordered_multimap<uint64_t, uint64_t> hash_t;
typedef std::tr1::unordered_multimap<uint64_t, uint64_t,
std::tr1::hash<uint64_t>, std::equal_to<uint64_t>,
utils::SimpleAllocator<std::pair<uint64_t const, uint64_t> > > hash_t;
typedef std::tr1::unordered_multimap<uint64_t, uint64_t,
std::tr1::hash<uint64_t>, std::equal_to<uint64_t>,
utils::SimpleAllocator<std::pair<uint64_t const, uint64_t> > > hash_t;
typedef hash_t::iterator iterator;
typedef hash_t::iterator iterator;
Joiner(bool bIncludeAll);
virtual ~Joiner();
Joiner(bool bIncludeAll);
virtual ~Joiner();
// elements are stored as <value, rid>
inline iterator begin() { return h->begin(); }
inline iterator end() { return h->end(); }
inline size_t size() { return h->size(); }
inline void insert(const joblist::ElementType &e)
{
h->insert(std::pair<uint64_t, uint64_t>(e.second, e.first));
}
void doneInserting();
boost::shared_ptr<std::vector<joblist::ElementType> > getSmallSide();
boost::shared_ptr<std::vector<joblist::ElementType> > getSortedMatches();
// elements are stored as <value, rid>
inline iterator begin()
{
return h->begin();
}
inline iterator end()
{
return h->end();
}
inline size_t size()
{
return h->size();
}
inline void insert(const joblist::ElementType& e)
{
h->insert(std::pair<uint64_t, uint64_t>(e.second, e.first));
}
void doneInserting();
boost::shared_ptr<std::vector<joblist::ElementType> > getSmallSide();
boost::shared_ptr<std::vector<joblist::ElementType> > getSortedMatches();
/* Used by the UM */
inline bool match(const joblist::ElementType &large)
{
std::pair<iterator, iterator> range;
iterator it = h->find(large.second);
/* Used by the UM */
inline bool match(const joblist::ElementType& large)
{
std::pair<iterator, iterator> range;
iterator it = h->find(large.second);
if (it == h->end())
return _includeAll;
else
if (it->second & MSB)
return true;
else {
range = h->equal_range(large.second);
for( ; range.first != range.second; ++range.first)
range.first->second |= MSB;
return true;
}
}
if (it == h->end())
return _includeAll;
else if (it->second & MSB)
return true;
else
{
range = h->equal_range(large.second);
inline void mark(const joblist::ElementType &large)
{
std::pair<iterator, iterator> range;
range = h->equal_range(large.second);
for( ; range.first != range.second; ++range.first)
range.first->second |= MSB;
}
for ( ; range.first != range.second; ++range.first)
range.first->second |= MSB;
/* Used by the PM */
inline bool getNewMatches(const uint64_t value,
std::vector<joblist::ElementType> *newMatches)
{
std::pair<iterator, iterator> range;
iterator it = h->find(value);
return true;
}
}
if (it == h->end())
return _includeAll;
else
if (it->second & MSB)
return true;
else {
newMatches->push_back(
joblist::ElementType(it->second | MSB, value));
range = h->equal_range(value);
for( ; range.first != range.second; ++range.first)
range.first->second |= MSB;
return true;
}
}
inline void mark(const joblist::ElementType& large)
{
std::pair<iterator, iterator> range;
inline bool inPM() { return _inPM; }
void inPM(bool b) { _inPM = b; }
inline bool inUM() { return !_inPM; }
void inUM(bool b) { _inPM = !b; }
bool includeAll() { return _includeAll; }
range = h->equal_range(large.second);
uint64_t getMemUsage() { return (_pool ? _pool->getMemUsage() : 0); }
for ( ; range.first != range.second; ++range.first)
range.first->second |= MSB;
}
static const uint64_t MSB = 0x8000000000000000ULL;
protected:
Joiner();
Joiner(const Joiner &);
Joiner & operator=(const Joiner &);
private:
boost::shared_ptr<hash_t> h;
bool _includeAll;
bool _inPM; // true -> should execute on the PM, false -> UM
boost::shared_ptr<utils::SimplePool> _pool; // pool for the table and nodes
/* Used by the PM */
inline bool getNewMatches(const uint64_t value,
std::vector<joblist::ElementType>* newMatches)
{
std::pair<iterator, iterator> range;
iterator it = h->find(value);
if (it == h->end())
return _includeAll;
else if (it->second & MSB)
return true;
else
{
newMatches->push_back(
joblist::ElementType(it->second | MSB, value));
range = h->equal_range(value);
for ( ; range.first != range.second; ++range.first)
range.first->second |= MSB;
return true;
}
}
inline bool inPM()
{
return _inPM;
}
void inPM(bool b)
{
_inPM = b;
}
inline bool inUM()
{
return !_inPM;
}
void inUM(bool b)
{
_inPM = !b;
}
bool includeAll()
{
return _includeAll;
}
uint64_t getMemUsage()
{
return (_pool ? _pool->getMemUsage() : 0);
}
static const uint64_t MSB = 0x8000000000000000ULL;
protected:
Joiner();
Joiner(const Joiner&);
Joiner& operator=(const Joiner&);
private:
boost::shared_ptr<hash_t> h;
bool _includeAll;
bool _inPM; // true -> should execute on the PM, false -> UM
boost::shared_ptr<utils::SimplePool> _pool; // pool for the table and nodes
};
}