Class: OraNumber
- Includes:
- Comparable
- Defined in:
- lib/oci8/oci8.rb,
ext/oci8/ocinumber.c
Class Method Summary collapse
-
._load(string) ⇒ Object
Unmarshal a dumped
OraNumberobject.
Instance Method Summary collapse
-
#%(other) ⇒ Object
Returns the modulo after division of onum by other.
-
#*(other) ⇒ Numeric
Returns the product of onum and other.
-
#**(other) ⇒ Object
Raises onum the other power.
-
#+(other) ⇒ Numeric
Returns the sum of onum and other.
-
#-(rhs) ⇒ Object
Returns the difference of onum and other.
-
#- ⇒ Object
Returns a negated
OraNumber. -
#/(rhs) ⇒ Object
Returns the result of dividing onum by other.
-
#<=>(other) ⇒ -1, ...
Returns -1, 0, or +1 depending on whether onum is less than, equal to, or greater than other.
-
#_dump ⇒ String
Dump onum for marshaling.
-
#abs ⇒ Object
Returns the absolute value of onum.
-
#ceil ⇒ Integer
Returns the smallest
Integergreater than or equal to onum. -
#floor ⇒ Integer
Returns the largest
Integerless than or equal to onum. -
#round(*args) ⇒ Object
Rounds onum to the nearest
Integerwhen no argument. -
#round_prec(digits) ⇒ Object
Rounds onum to a specified number of decimal digits.
-
#shift(fixnum) ⇒ Object
Returns onum * 10**fixnum This method is available on Oracle 8.1 client or upper.
-
#to_char(fmt = nil, nls_params = nil) ⇒ String
Returns a string containing a representation of self.
-
#to_d ⇒ Object
Return the value as a
BigDecimal. -
#to_f ⇒ Float
Return the value as a
Float. -
#to_i ⇒ Integer
Returns onum truncated to an
Integer. -
#to_json(options = nil) ⇒ Object
:nodoc:.
-
#to_r ⇒ Object
Return the value as a
Rational. -
#to_s ⇒ String
Returns a string containing a representation of self.
-
#to_yaml(opts = {}) ⇒ Object
:nodoc:.
-
#truncate(*args) ⇒ Object
Truncates onum to the
Integerwhen no argument. -
#yaml_initialize(type, val) ⇒ Object
:nodoc:.
-
#zero? ⇒ Boolean
Returns
trueif onum is zero.
Methods inherited from Numeric
Class Method Details
._load(string) ⇒ Object
Unmarshal a dumped OraNumber object.
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 |
# File 'ext/oci8/ocinumber.c', line 1316 static VALUE onum_s_load(VALUE klass, VALUE str) { unsigned char *c; int size; OCINumber num; Check_Type(str, T_STRING); c = RSTRING_ORATEXT(str); size = RSTRING_LEN(str); if (size == 0 || size != c[0] + 1 || size > sizeof(num)) { rb_raise(rb_eTypeError, "marshaled OCI::Number format differ"); } memset(&num, 0, sizeof(num)); memcpy(&num, c, size); return oci8_make_ocinumber(&num, oci8_errhp); } |
Instance Method Details
#%(other) ⇒ Object
Returns the modulo after division of onum by other.
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 |
# File 'ext/oci8/ocinumber.c', line 866 static VALUE onum_mod(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; OCINumber r; boolean is_zero; /* change to OCINumber */ if (!set_oci_number_from_num(&n, rhs, 0, errhp)) return rb_num_coerce_bin(lhs, rhs, '%'); /* check whether argument is not zero. */ oci_lc(OCINumberIsZero(errhp, &n, &is_zero)); if (is_zero) rb_num_zerodiv(); /* modulo */ oci_lc(OCINumberMod(errhp, _NUMBER(lhs), &n, &r)); return oci8_make_ocinumber(&r, errhp); } |
#*(other) ⇒ Numeric
Returns the product of onum and other.
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 |
# File 'ext/oci8/ocinumber.c', line 791 static VALUE onum_mul(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; OCINumber r; switch (rboci8_type(rhs)) { case T_FIXNUM: case T_BIGNUM: if (set_oci_number_from_num(&n, rhs, 0, errhp)) { oci_lc(OCINumberMul(errhp, _NUMBER(lhs), &n, &r)); return oci8_make_ocinumber(&r, errhp); } break; case RBOCI8_T_ORANUMBER: oci_lc(OCINumberMul(errhp, _NUMBER(lhs), _NUMBER(rhs), &r)); return oci8_make_ocinumber(&r, errhp); case T_FLOAT: return rb_funcall(onum_to_f(lhs), '*', 1, rhs); case RBOCI8_T_RATIONAL: return rb_funcall(onum_to_r(lhs), '*', 1, rhs); case RBOCI8_T_BIGDECIMAL: return rb_funcall(onum_to_d(lhs), '*', 1, rhs); } return rb_num_coerce_bin(lhs, rhs, '*'); } |
#**(other) ⇒ Object
Raises onum the other power.
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 |
# File 'ext/oci8/ocinumber.c', line 891 static VALUE onum_power(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; OCINumber r; if (FIXNUM_P(rhs)) { oci_lc(OCINumberIntPower(errhp, _NUMBER(lhs), FIX2INT(rhs), &r)); } else { /* change to OCINumber */ if (!set_oci_number_from_num(&n, rhs, 0, errhp)) return rb_num_coerce_bin(lhs, rhs, id_power); oci_lc(OCINumberPower(errhp, _NUMBER(lhs), &n, &r)); } return oci8_make_ocinumber(&r, errhp); } |
#+(other) ⇒ Numeric
Returns the sum of onum and other.
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 |
# File 'ext/oci8/ocinumber.c', line 724 static VALUE onum_add(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; OCINumber r; switch (rboci8_type(rhs)) { case T_FIXNUM: case T_BIGNUM: if (set_oci_number_from_num(&n, rhs, 0, errhp)) { oci_lc(OCINumberAdd(errhp, _NUMBER(lhs), &n, &r)); return oci8_make_ocinumber(&r, errhp); } break; case RBOCI8_T_ORANUMBER: oci_lc(OCINumberAdd(errhp, _NUMBER(lhs), _NUMBER(rhs), &r)); return oci8_make_ocinumber(&r, errhp); case T_FLOAT: return rb_funcall(onum_to_f(lhs), '+', 1, rhs); case RBOCI8_T_RATIONAL: return rb_funcall(onum_to_r(lhs), '+', 1, rhs); case RBOCI8_T_BIGDECIMAL: return rb_funcall(onum_to_d(lhs), '+', 1, rhs); } return rb_num_coerce_bin(lhs, rhs, '+'); } |
#-(integer) ⇒ Object #-(numeric) ⇒ Numeric
Returns the difference of onum and other.
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 |
# File 'ext/oci8/ocinumber.c', line 758 static VALUE onum_sub(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; OCINumber r; switch (rboci8_type(rhs)) { case T_FIXNUM: case T_BIGNUM: if (set_oci_number_from_num(&n, rhs, 0, errhp)) { oci_lc(OCINumberSub(errhp, _NUMBER(lhs), &n, &r)); return oci8_make_ocinumber(&r, errhp); } break; case RBOCI8_T_ORANUMBER: oci_lc(OCINumberSub(errhp, _NUMBER(lhs), _NUMBER(rhs), &r)); return oci8_make_ocinumber(&r, errhp); case T_FLOAT: return rb_funcall(onum_to_f(lhs), '-', 1, rhs); case RBOCI8_T_RATIONAL: return rb_funcall(onum_to_r(lhs), '-', 1, rhs); case RBOCI8_T_BIGDECIMAL: return rb_funcall(onum_to_d(lhs), '-', 1, rhs); } return rb_num_coerce_bin(lhs, rhs, '-'); } |
#- ⇒ Object
Returns a negated OraNumber.
708 709 710 711 712 713 714 715 |
# File 'ext/oci8/ocinumber.c', line 708 static VALUE onum_neg(VALUE self) { OCIError *errhp = oci8_errhp; OCINumber r; oci_lc(OCINumberNeg(errhp, _NUMBER(self), &r)); return oci8_make_ocinumber(&r, errhp); } |
#/(integer) ⇒ Object #/(numeric) ⇒ Numeric
Returns the result of dividing onum by other.
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 |
# File 'ext/oci8/ocinumber.c', line 825 static VALUE onum_div(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; OCINumber r; boolean is_zero; switch (rboci8_type(rhs)) { case T_FIXNUM: if (rhs == INT2FIX(0)) { rb_num_zerodiv(); } case T_BIGNUM: if (set_oci_number_from_num(&n, rhs, 0, errhp)) { oci_lc(OCINumberDiv(errhp, _NUMBER(lhs), &n, &r)); return oci8_make_ocinumber(&r, errhp); } break; case RBOCI8_T_ORANUMBER: oci_lc(OCINumberIsZero(errhp, _NUMBER(rhs), &is_zero)); if (is_zero) { rb_num_zerodiv(); } oci_lc(OCINumberDiv(errhp, _NUMBER(lhs), _NUMBER(rhs), &r)); return oci8_make_ocinumber(&r, errhp); case T_FLOAT: return rb_funcall(onum_to_f(lhs), '/', 1, rhs); case RBOCI8_T_RATIONAL: return rb_funcall(onum_to_r(lhs), '/', 1, rhs); case RBOCI8_T_BIGDECIMAL: return rb_funcall(onum_to_d(lhs), '/', 1, rhs); } return rb_num_coerce_bin(lhs, rhs, '/'); } |
#<=>(other) ⇒ -1, ...
Returns -1, 0, or +1 depending on whether onum is less than, equal to, or greater than other. This is the basis for the tests in Comparable.
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 |
# File 'ext/oci8/ocinumber.c', line 916 static VALUE onum_cmp(VALUE lhs, VALUE rhs) { OCIError *errhp = oci8_errhp; OCINumber n; sword r; /* change to OCINumber */ if (!set_oci_number_from_num(&n, rhs, 0, errhp)) return rb_num_coerce_cmp(lhs, rhs, id_cmp); /* compare */ oci_lc(OCINumberCmp(errhp, _NUMBER(lhs), &n, &r)); if (r > 0) { return INT2FIX(1); } else if (r == 0) { return INT2FIX(0); } else { return INT2FIX(-1); } } |
#_dump ⇒ String
Dump onum for marshaling.
1300 1301 1302 1303 1304 1305 1306 1307 1308 |
# File 'ext/oci8/ocinumber.c', line 1300 static VALUE onum_dump(int argc, VALUE *argv, VALUE self) { char *c = DATA_PTR(self); int size = c[0] + 1; VALUE dummy; rb_scan_args(argc, argv, "01", &dummy); return rb_str_new(c, size); } |
#abs ⇒ Object
Returns the absolute value of onum.
1240 1241 1242 1243 1244 1245 1246 1247 |
# File 'ext/oci8/ocinumber.c', line 1240 static VALUE onum_abs(VALUE self) { OCIError *errhp = oci8_errhp; OCINumber result; oci_lc(OCINumberAbs(errhp, _NUMBER(self), &result)); return oci8_make_ocinumber(&result, errhp); } |
#ceil ⇒ Integer
Returns the smallest Integer greater than or equal to onum.
958 959 960 961 962 963 964 965 |
# File 'ext/oci8/ocinumber.c', line 958 static VALUE onum_ceil(VALUE self) { OCIError *errhp = oci8_errhp; OCINumber r; oci_lc(OCINumberCeil(errhp, _NUMBER(self), &r)); return oci8_make_integer(&r, errhp); } |
#floor ⇒ Integer
Returns the largest Integer less than or equal to onum.
942 943 944 945 946 947 948 949 |
# File 'ext/oci8/ocinumber.c', line 942 static VALUE onum_floor(VALUE self) { OCIError *errhp = oci8_errhp; OCINumber r; oci_lc(OCINumberFloor(errhp, _NUMBER(self), &r)); return oci8_make_integer(&r, errhp); } |
#round ⇒ Integer #round(decplace) ⇒ Object
Rounds onum to the nearest Integer when no argument. Rounds onum to a specified decimal place decplace when one argument.
OraNumber.new(1.234).round(1) #=> 1.2
OraNumber.new(1.234).round(2) #=> 1.23
OraNumber.new(1.234).round(3) #=> 1.234
979 980 981 982 983 984 985 986 987 988 989 990 991 992 |
# File 'ext/oci8/ocinumber.c', line 979 static VALUE onum_round(int argc, VALUE *argv, VALUE self) { OCIError *errhp = oci8_errhp; VALUE decplace; OCINumber r; rb_scan_args(argc, argv, "01", &decplace /* 0 */); oci_lc(OCINumberRound(errhp, _NUMBER(self), NIL_P(decplace) ? 0 : NUM2INT(decplace), &r)); if (argc == 0) { return oci8_make_integer(&r, errhp); } else { return oci8_make_ocinumber(&r, errhp); } } |
#round_prec(digits) ⇒ Object
Rounds onum to a specified number of decimal digits. This method is available on Oracle 8.1 client or upper.
OraNumber.new(1.234).round_prec(2) #=> 1.2
OraNumber.new(12.34).round_prec(2) #=> 12
OraNumber.new(123.4).round_prec(2) #=> 120
1024 1025 1026 1027 1028 1029 1030 1031 |
# File 'ext/oci8/ocinumber.c', line 1024 static VALUE onum_round_prec(VALUE self, VALUE ndigs) { OCIError *errhp = oci8_errhp; OCINumber r; oci_lc(OCINumberPrec(errhp, _NUMBER(self), NUM2INT(ndigs), &r)); return oci8_make_ocinumber(&r, errhp); } |
#shift(fixnum) ⇒ Object
Returns onum * 10**fixnum This method is available on Oracle 8.1 client or upper.
1256 1257 1258 1259 1260 1261 1262 1263 |
# File 'ext/oci8/ocinumber.c', line 1256 static VALUE onum_shift(VALUE self, VALUE exp) { OCIError *errhp = oci8_errhp; OCINumber result; oci_lc(OCINumberShift(errhp, _NUMBER(self), NUM2INT(exp), &result)); return oci8_make_ocinumber(&result, errhp); } |
#to_char(fmt = nil, nls_params = nil) ⇒ String
Returns a string containing a representation of self. fmt and nls_params are same meanings with TO_CHAR of Oracle function.
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 |
# File 'ext/oci8/ocinumber.c', line 1041 static VALUE onum_to_char(int argc, VALUE *argv, VALUE self) { OCIError *errhp = oci8_errhp; VALUE fmt; VALUE nls_params; char buf[512]; ub4 buf_size = sizeof(buf); oratext *fmt_ptr; oratext *nls_params_ptr; ub4 fmt_len; ub4 nls_params_len; sword rv; rb_scan_args(argc, argv, "02", &fmt /* nil */, &nls_params /* nil */); if (NIL_P(fmt)) { OCINumber absval; sword sign; boolean is_int; oci_lc(OCINumberIsInt(errhp, _NUMBER(self), &is_int)); if (is_int) { fmt_ptr = NUMBER_FORMAT_INT; fmt_len = NUMBER_FORMAT_INT_LEN; } else { oci_lc(OCINumberAbs(errhp, _NUMBER(self), &absval)); oci_lc(OCINumberCmp(errhp, &absval, &const_shreshold, &sign)); if (sign >= 0) { fmt_ptr = NUMBER_FORMAT2; fmt_len = NUMBER_FORMAT2_LEN; } else { fmt_ptr = NUMBER_FORMAT1; fmt_len = NUMBER_FORMAT1_LEN; } } } else { StringValue(fmt); fmt_ptr = RSTRING_ORATEXT(fmt); fmt_len = RSTRING_LEN(fmt); } if (NIL_P(nls_params)) { nls_params_ptr = NULL; nls_params_len = 0; } else { StringValue(nls_params); nls_params_ptr = RSTRING_ORATEXT(nls_params); nls_params_len = RSTRING_LEN(nls_params); } rv = OCINumberToText(errhp, _NUMBER(self), fmt_ptr, fmt_len, nls_params_ptr, nls_params_len, &buf_size, TO_ORATEXT(buf)); if (rv == OCI_ERROR) { sb4 errcode; OCIErrorGet(errhp, 1, NULL, &errcode, NULL, 0, OCI_HTYPE_ERROR); if (errcode == 22065) { /* OCI-22065: number to text translation for the given format causes overflow */ if (NIL_P(fmt)) /* implicit conversion */ return rb_usascii_str_new_cstr("overflow"); } oci8_raise(errhp, rv, NULL); } return rb_usascii_str_new(buf, buf_size); } |
#to_d ⇒ Object
Return the value as a BigDecimal.
1196 1197 1198 1199 1200 1201 1202 1203 |
# File 'ext/oci8/ocinumber.c', line 1196 static VALUE onum_to_d(VALUE self) { if (!cBigDecimal) { rb_require("bigdecimal"); cBigDecimal = rb_const_get(rb_cObject, id_BigDecimal); } return rb_funcall(rb_cObject, id_BigDecimal, 1, onum_to_s(self)); } |
#to_f ⇒ Float
Return the value as a Float.
1137 1138 1139 1140 1141 1142 1143 1144 |
# File 'ext/oci8/ocinumber.c', line 1137 static VALUE onum_to_f(VALUE self) { OCIError *errhp = oci8_errhp; double dbl; oci_lc(OCINumberToReal(errhp, _NUMBER(self), sizeof(dbl), &dbl)); return rb_float_new(dbl); } |
#to_i ⇒ Integer
Returns onum truncated to an Integer.
1121 1122 1123 1124 1125 1126 1127 1128 |
# File 'ext/oci8/ocinumber.c', line 1121 static VALUE onum_to_i(VALUE self) { OCIError *errhp = oci8_errhp; OCINumber num; oci_lc(OCINumberTrunc(errhp, _NUMBER(self), 0, &num)); return oci8_make_integer(&num, errhp); } |
#to_json(options = nil) ⇒ Object
:nodoc:
556 557 558 |
# File 'lib/oci8/oci8.rb', line 556 def to_json(=nil) # :nodoc: to_s end |
#to_r ⇒ Object
Return the value as a Rational.
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 |
# File 'ext/oci8/ocinumber.c', line 1153 static VALUE onum_to_r(VALUE self) { VALUE x, y; int nshift = 0; OCINumber onum[2]; int current = 0; boolean is_int; oci_lc(OCINumberAssign(oci8_errhp, _NUMBER(self), &onum[0])); for (;;) { oci_lc(OCINumberIsInt(oci8_errhp, &onum[current], &is_int)); if (is_int) { break; } nshift++; oci_lc(OCINumberShift(oci8_errhp, &onum[current], 1, &onum[1 - current])); current = 1 - current; } x = oci8_make_integer(&onum[current], oci8_errhp); if (nshift == 0) { y = INT2FIX(1); } else { y = rb_funcall(INT2FIX(10), rb_intern("**"), 1, INT2FIX(nshift)); } #ifdef T_RATIONAL return rb_Rational(x, y); #else if (!cRational) { rb_require("rational"); cRational = rb_const_get(rb_cObject, id_Rational); } return rb_funcall(rb_cObject, id_Rational, 2, x, y); #endif } |
#to_s ⇒ String
Returns a string containing a representation of self.
1110 1111 1112 1113 |
# File 'ext/oci8/ocinumber.c', line 1110 static VALUE onum_to_s(VALUE self) { return onum_to_char(0, NULL, self); } |
#to_yaml(opts = {}) ⇒ Object
:nodoc:
550 551 552 553 554 |
# File 'lib/oci8/oci8.rb', line 550 def to_yaml(opts = {}) # :nodoc: YAML.quick_emit(object_id, opts) do |out| out.scalar(taguri, self.to_s, :plain) end end |
#truncate ⇒ Integer #truncate(decplace) ⇒ Object
Truncates onum to the Integer when no argument. Truncates onum to a specified decimal place decplace when one argument.
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 |
# File 'ext/oci8/ocinumber.c', line 1002 static VALUE onum_trunc(int argc, VALUE *argv, VALUE self) { OCIError *errhp = oci8_errhp; VALUE decplace; OCINumber r; rb_scan_args(argc, argv, "01", &decplace /* 0 */); oci_lc(OCINumberTrunc(errhp, _NUMBER(self), NIL_P(decplace) ? 0 : NUM2INT(decplace), &r)); return oci8_make_ocinumber(&r, errhp); } |
#yaml_initialize(type, val) ⇒ Object
:nodoc:
546 547 548 |
# File 'lib/oci8/oci8.rb', line 546 def yaml_initialize(type, val) # :nodoc: initialize(val) end |
#zero? ⇒ Boolean
Returns true if onum is zero.
1224 1225 1226 1227 1228 1229 1230 1231 |
# File 'ext/oci8/ocinumber.c', line 1224 static VALUE onum_zero_p(VALUE self) { OCIError *errhp = oci8_errhp; boolean result; oci_lc(OCINumberIsZero(errhp, _NUMBER(self), &result)); return result ? Qtrue : Qfalse; } |