~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/logging_stats/scoreboard.h

  • Committer: Padraig O'Sullivan
  • Date: 2010-04-17 01:38:47 UTC
  • mfrom: (1237.9.238 bad-staging)
  • Revision ID: osullivan.padraig@gmail.com-20100417013847-ibjioqsfbmf5yg4g
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2010, Joseph Daly <skinny.moey@gmail.com>
 
3
 * All rights reserved.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions are met:
 
7
 *
 
8
 *   * Redistributions of source code must retain the above copyright notice,
 
9
 *     this list of conditions and the following disclaimer.
 
10
 *   * Redistributions in binary form must reproduce the above copyright notice,
 
11
 *     this list of conditions and the following disclaimer in the documentation
 
12
 *     and/or other materials provided with the distribution.
 
13
 *   * Neither the name of Joseph Daly nor the names of its contributors
 
14
 *     may be used to endorse or promote products derived from this software
 
15
 *     without specific prior written permission.
 
16
 *
 
17
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
18
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
19
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
20
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 
21
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
22
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
23
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
24
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
25
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
26
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
27
 * THE POSSIBILITY OF SUCH DAMAGE.
 
28
 *
 
29
 */
 
30
 
 
31
#ifndef PLUGIN_LOGGING_STATS_SCOREBOARD_H
 
32
#define PLUGIN_LOGGING_STATS_SCOREBOARD_H
 
33
 
 
34
#include "scoreboard_slot.h"
 
35
#include <drizzled/session.h>
 
36
 
 
37
#include <vector>
 
38
 
 
39
class Scoreboard
 
40
{
 
41
public:
 
42
  Scoreboard(uint32_t in_number_sessions, uint32_t in_number_buckets);
 
43
 
 
44
  ~Scoreboard();
 
45
 
 
46
  /**
 
47
   * Locates a ScoreboardSlot that is not in use, marks the slot
 
48
   * as being used and returns a pointer to it. The caller can
 
49
   * update individual statistics via the pointer without having
 
50
   * to lock or worry about concurrent updates.  
 
51
   * 
 
52
   * @param Pointer to the session 
 
53
   * @return Pointer to the ScoreboardSlot whose individual statistics 
 
54
   *   can be updated
 
55
   */
 
56
  ScoreboardSlot* findScoreboardSlotToLog(drizzled::Session *session);
 
57
 
 
58
  /**
 
59
   * Resets the ScoreboardSlot this session was using. The pointer
 
60
   * returned is a copy of the ScoreboardSlot that has now been
 
61
   * reclaimed. This must be deallocated by the caller, when the caller
 
62
   * is finished. This allows cumulative collection of statistics.  
 
63
   * 
 
64
   * @param Pointer to the session
 
65
   * @return Pointer to a copy of the ScoreboardSlot that has been
 
66
   *   reclaimed
 
67
   */
 
68
  ScoreboardSlot* findAndResetScoreboardSlot(drizzled::Session *session);
 
69
 
 
70
  uint32_t getNumberBuckets()
 
71
  {
 
72
    return number_buckets;
 
73
  }
 
74
 
 
75
  std::vector<pthread_rwlock_t* >* getVectorOfScoreboardLocks()
 
76
  {
 
77
    return &vector_of_scoreboard_locks;
 
78
  }
 
79
 
 
80
  std::vector<std::vector<ScoreboardSlot* >* >* getVectorOfScoreboardVectors()
 
81
  {
 
82
    return &vector_of_scoreboard_vectors; 
 
83
  }
 
84
 
 
85
private:
 
86
  static const int32_t UNINITIALIZED= -1;
 
87
  uint32_t number_sessions;
 
88
  uint32_t number_buckets;
 
89
  std::vector<std::vector<ScoreboardSlot* >* > vector_of_scoreboard_vectors;
 
90
  std::vector<pthread_rwlock_t* > vector_of_scoreboard_locks;
 
91
};
 
92
 
 
93
#endif /* PLUGIN_LOGGING_STATS_SCOREBOARD_H */