~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/rand.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#include <drizzled/server_includes.h>
 
21
#include CSTDINT_H
 
22
#include <drizzled/function/math/rand.h>
 
23
#include <libdrizzleclient/password.h>
 
24
#include <drizzled/session.h>
 
25
 
 
26
void Item_func_rand::seed_random(Item *arg)
 
27
{
 
28
  /*
 
29
    TODO: do not do reinit 'rand' for every execute of PS/SP if
 
30
    args[0] is a constant.
 
31
  */
 
32
  uint32_t tmp= (uint32_t) arg->val_int();
 
33
  drizzleclient_drizzleclient_randominit(rand, (uint32_t) (tmp*0x10001L+55555555L),
 
34
             (uint32_t) (tmp*0x10000001L));
 
35
}
 
36
 
 
37
bool Item_func_rand::fix_fields(Session *session,Item **ref)
 
38
{
 
39
  if (Item_real_func::fix_fields(session, ref))
 
40
    return true;
 
41
  used_tables_cache|= RAND_TABLE_BIT;
 
42
  if (arg_count)
 
43
  {                                     // Only use argument once in query
 
44
    /*
 
45
      No need to send a Rand log event if seed was given eg: RAND(seed),
 
46
      as it will be replicated in the query as such.
 
47
    */
 
48
    if (!rand && !(rand= (struct rand_struct*)
 
49
                   session->alloc(sizeof(*rand))))
 
50
      return true;
 
51
 
 
52
    if (args[0]->const_item())
 
53
      seed_random (args[0]);
 
54
  }
 
55
  else
 
56
  {
 
57
    rand= &session->rand;
 
58
  }
 
59
  return false;
 
60
}
 
61
 
 
62
void Item_func_rand::update_used_tables()
 
63
{
 
64
  Item_real_func::update_used_tables();
 
65
  used_tables_cache|= RAND_TABLE_BIT;
 
66
}
 
67
 
 
68
 
 
69
double Item_func_rand::val_real()
 
70
{
 
71
  assert(fixed == 1);
 
72
  if (arg_count && !args[0]->const_item())
 
73
    seed_random (args[0]);
 
74
  return drizzleclient_my_rnd(rand);
 
75
}
 
76