Class: Mysql::Time
- Inherits:
-
Object
- Object
- Mysql::Time
- Defined in:
- ext/mysql_api/mysql.c
Instance Method Summary collapse
- #==(v) ⇒ Object
- #day ⇒ Object
- #day= ⇒ Object
- #hour ⇒ Object
- #hour= ⇒ Object
-
#initialize(*args) ⇒ Object
constructor
——————————- Mysql::Time object method.
- #inspect ⇒ Object
- #minute ⇒ Object
- #minute= ⇒ Object
- #month ⇒ Object
- #month= ⇒ Object
- #neg ⇒ Object
- #neg= ⇒ Object
- #second ⇒ Object
- #second= ⇒ Object
- #second_part ⇒ Object
- #second_part= ⇒ Object
- #to_s ⇒ Object
- #year ⇒ Object
- #year= ⇒ Object
Constructor Details
#initialize(*args) ⇒ Object
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 |
# File 'ext/mysql_api/mysql.c', line 1772
static VALUE time_initialize(int argc, VALUE* argv, VALUE obj)
{
VALUE year, month, day, hour, minute, second, neg, second_part;
rb_scan_args(argc, argv, "08", &year, &month, &day, &hour, &minute, &second, &neg, &second_part);
#define NILorFIXvalue(o) (NIL_P(o) ? INT2FIX(0) : (Check_Type(o, T_FIXNUM), o))
rb_iv_set(obj, "year", NILorFIXvalue(year));
rb_iv_set(obj, "month", NILorFIXvalue(month));
rb_iv_set(obj, "day", NILorFIXvalue(day));
rb_iv_set(obj, "hour", NILorFIXvalue(hour));
rb_iv_set(obj, "minute", NILorFIXvalue(minute));
rb_iv_set(obj, "second", NILorFIXvalue(second));
rb_iv_set(obj, "neg", (neg == Qnil || neg == Qfalse) ? Qfalse : Qtrue);
rb_iv_set(obj, "second_part", NILorFIXvalue(second_part));
return obj;
}
|
Instance Method Details
#==(v) ⇒ Object
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 |
# File 'ext/mysql_api/mysql.c', line 1845
static VALUE time_equal(VALUE obj, VALUE v)
{
if (CLASS_OF(v) == cMysqlTime &&
NUM2INT(rb_iv_get(obj, "year")) == NUM2INT(rb_iv_get(v, "year")) &&
NUM2INT(rb_iv_get(obj, "month")) == NUM2INT(rb_iv_get(v, "month")) &&
NUM2INT(rb_iv_get(obj, "day")) == NUM2INT(rb_iv_get(v, "day")) &&
NUM2INT(rb_iv_get(obj, "hour")) == NUM2INT(rb_iv_get(v, "hour")) &&
NUM2INT(rb_iv_get(obj, "minute")) == NUM2INT(rb_iv_get(v, "minute")) &&
NUM2INT(rb_iv_get(obj, "second")) == NUM2INT(rb_iv_get(v, "second")) &&
rb_iv_get(obj, "neg") == rb_iv_get(v, "neg") &&
NUM2INT(rb_iv_get(obj, "second_part")) == NUM2INT(rb_iv_get(v, "second_part")))
return Qtrue;
return Qfalse;
}
|
#day ⇒ Object
#day= ⇒ Object
#hour ⇒ Object
#hour= ⇒ Object
#inspect ⇒ Object
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 |
# File 'ext/mysql_api/mysql.c', line 1788
static VALUE time_inspect(VALUE obj)
{
char buf[36];
sprintf(buf, "#<Mysql::Time:%04d-%02d-%02d %02d:%02d:%02d>",
NUM2INT(rb_iv_get(obj, "year")),
NUM2INT(rb_iv_get(obj, "month")),
NUM2INT(rb_iv_get(obj, "day")),
NUM2INT(rb_iv_get(obj, "hour")),
NUM2INT(rb_iv_get(obj, "minute")),
NUM2INT(rb_iv_get(obj, "second")));
return rb_str_new2(buf);
}
|
#minute ⇒ Object
#minute= ⇒ Object
#month ⇒ Object
#month= ⇒ Object
#neg ⇒ Object
#neg= ⇒ Object
#second ⇒ Object
#second= ⇒ Object
#second_part ⇒ Object
#second_part= ⇒ Object
#to_s ⇒ Object
1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 |
# File 'ext/mysql_api/mysql.c', line 1801
static VALUE time_to_s(VALUE obj)
{
char buf[20];
sprintf(buf, "%04d-%02d-%02d %02d:%02d:%02d",
NUM2INT(rb_iv_get(obj, "year")),
NUM2INT(rb_iv_get(obj, "month")),
NUM2INT(rb_iv_get(obj, "day")),
NUM2INT(rb_iv_get(obj, "hour")),
NUM2INT(rb_iv_get(obj, "minute")),
NUM2INT(rb_iv_get(obj, "second")));
return rb_str_new2(buf);
}
|