1 /*
2   Copyright 2010 Sun Microsystems, Inc.
3   All rights reserved. Use is subject to license terms.
4 
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License, version 2.0,
7   as published by the Free Software Foundation.
8 
9   This program is also distributed with certain software (including
10   but not limited to OpenSSL) that is licensed under separate terms,
11   as designated in a particular file or component or in included license
12   documentation.  The authors of MySQL hereby grant you an additional
13   permission to link the program and your derivative works with the
14   separately licensed software that they have included with MySQL.
15 
16   This program is distributed in the hope that it will be useful,
17   but WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   GNU General Public License, version 2.0, for more details.
20 
21   You should have received a copy of the GNU General Public License
22   along with this program; if not, write to the Free Software
23   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
24 */
25 /*
26  * Utils.java
27  */
28 
29 package com.mysql.ndbjtie.mysql;
30 
31 import java.nio.ByteBuffer;
32 
33 import com.mysql.jtie.Wrapper;
34 
35 public class Utils
36 {
37     static public final int E_DEC_OK = 0;
38     static public final int E_DEC_TRUNCATED = 1;
39     static public final int E_DEC_OVERFLOW = 2;
40     static public final int E_DEC_BAD_NUM = 8;
41     static public final int E_DEC_OOM = 16;
42     //static public final int E_DEC_ERROR = 31; // MMM not used at this time?
43     //static public final int E_DEC_FATAL_ERROR = 30; // MMM not used at this time?
decimal_str2bin(ByteBuffer str, int str_len, int prec, int scale, ByteBuffer dest, int buf_len)44     static public final native int decimal_str2bin(ByteBuffer/*_const char *_*/ str, int str_len, int prec, int scale, ByteBuffer/*_void *_*/ dest, int buf_len);
decimal_bin2str(ByteBuffer bin, int bin_len, int prec, int scale, ByteBuffer dest, int buf_len)45     static public final native int decimal_bin2str(ByteBuffer/*_const void *_*/ bin, int bin_len, int prec, int scale, ByteBuffer/*_char *_*/ dest, int buf_len);
46 }
47