~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.h

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä, Stewart Smith
  • Date: 2010-11-17 05:52:09 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1971.
  • Revision ID: stewart@flamingspork.com-20101117055209-69m035q6h7e1txrc
Merge Revision revid:marko.makela@oracle.com-20100629113248-fvl48lnzr44z94gg from MySQL InnoDB

Original revid:marko.makela@oracle.com-20100629113248-fvl48lnzr44z94gg

Original Authors: Marko Mkel <marko.makela@oracle.com>
Original commit message:
Bug#52199 utf32: mbminlen=4, mbmaxlen=4, type->mbminlen=0, type->mbmaxlen=4

Merge and adjust a forgotten change to fix this bug.
rb://393 approved by Jimmy Yang
  ------------------------------------------------------------------------
  r3794 | marko | 2009-01-07 14:14:53 +0000 (Wed, 07 Jan 2009) | 18 lines

  branches/6.0: Allow the minimum length of a multi-byte character to be
  up to 4 bytes. (Bug #35391)

  dtype_t, dict_col_t: Replace mbminlen:2, mbmaxlen:3 with mbminmaxlen:5.
  In this way, the 5 bits can hold two values of 0..4, and the storage size
  of the fields will not cross the 64-bit boundary.  Encode the values as
  DATA_MBMAX * mbmaxlen + mbminlen.  Define the auxiliary macros
  DB_MBMINLEN(mbminmaxlen), DB_MBMAXLEN(mbminmaxlen), and
  DB_MINMAXLEN(mbminlen, mbmaxlen).

  Try to trim and pad UTF-16 and UTF-32 with spaces as appropriate.

  Alexander Barkov suggested the use of cs->cset->fill(cs, buff, len, 0x20).
  ha_innobase::store_key_val_for_row() now does that, but the added function
  row_mysql_pad_col() does not, because it doesn't have the MySQL TABLE object.

  rb://49 approved by Heikki Tuuri
  ------------------------------------------------------------------------

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *  Definitions required for Configuration Variables plugin
5
5
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
6
 *  Copyright (C) 2008 Sun Microsystems
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
9
9
 *  it under the terms of the GNU General Public License as published by
22
22
#ifndef DRIZZLED_PLUGIN_SCHEDULER_H
23
23
#define DRIZZLED_PLUGIN_SCHEDULER_H
24
24
 
25
 
#include "drizzled/session.h"
26
25
#include "drizzled/plugin/plugin.h"
27
26
 
28
27
#include <string>
29
28
#include <vector>
30
29
 
31
 
#include "drizzled/visibility.h"
32
 
 
33
30
namespace drizzled
34
31
{
35
 
 
36
32
class Session;
37
33
 
38
34
namespace plugin
42
38
 * This class should be used by scheduler plugins to implement custom session
43
39
 * schedulers.
44
40
 */
45
 
class DRIZZLED_API Scheduler : public Plugin
 
41
class Scheduler : public Plugin
46
42
{
47
43
  /* Disable default constructors */
48
44
  Scheduler();
58
54
   * Add a session to the scheduler. When the scheduler is ready to run the
59
55
   * session, it should call session->run().
60
56
   */
61
 
  virtual bool addSession(Session::shared_ptr &session)= 0;
 
57
  virtual bool addSession(Session *session)= 0;
62
58
 
63
59
  /**
64
60
   * Notify the scheduler that it should be killed gracefully.
68
64
  /**
69
65
   * This is called when a scheduler should kill the session immedaitely.
70
66
   */
71
 
  virtual void killSessionNow(Session::shared_ptr&) {}
 
67
  virtual void killSessionNow(Session *) {}
72
68
 
73
69
  static bool addPlugin(plugin::Scheduler *sced);
74
70
  static void removePlugin(plugin::Scheduler *sced);