File: pl_Date_Calc.ml

package info (click to toggle)
perl4caml 0.9.5-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 512 kB
  • ctags: 788
  • sloc: ml: 1,572; ansic: 957; makefile: 186; perl: 45
file content (82 lines) | stat: -rw-r--r-- 2,987 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
(** Wrapper around Perl [Date::Calc] class. *)
(*  Copyright (C) 2003 Merjis Ltd.

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this library; see the file COPYING.  If not, write to
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.

    $Id: pl_Date_Calc.ml,v 1.2 2008-03-01 13:02:21 rich Exp $
  *)

open Perl

let _ = eval "use Date::Calc qw()"

let days_in_year year month =
  int_of_sv (call ~fn:"Date::Calc::Days_in_Year"
	       [sv_of_int year; sv_of_int month])

let days_in_month year month =
  int_of_sv (call ~fn:"Date::Calc::Days_in_Month"
	       [sv_of_int year; sv_of_int month])

let weeks_in_year year =
  int_of_sv (call ~fn:"Date::Calc::Weeks_in_Year" [sv_of_int year])

let leap_year year =
  bool_of_sv (call ~fn:"Date::Calc::leap_year" [sv_of_int year])

let check_date year month day =
  bool_of_sv (call ~fn:"Date::Calc::check_date"
		[sv_of_int year; sv_of_int month; sv_of_int day])

let check_time hour min sec =
  bool_of_sv (call ~fn:"Date::Calc::check_time"
		[sv_of_int hour; sv_of_int min; sv_of_int sec])

let check_business_date year week dow =
  bool_of_sv (call ~fn:"Date::Calc::check_business_date"
		[sv_of_int year; sv_of_int week; sv_of_int dow])

let day_of_year year month day =
  int_of_sv (call ~fn:"Date::Calc::Day_of_Year"
	       [sv_of_int year; sv_of_int month; sv_of_int day])

let date_to_days year month day =
  int_of_sv (call ~fn:"Date::Calc::Date_to_Days"
	       [sv_of_int year; sv_of_int month; sv_of_int day])

let day_of_week year month day =
  int_of_sv (call ~fn:"Date::Calc::Day_of_Week"
	       [sv_of_int year; sv_of_int month; sv_of_int day])

let week_number year month day =
  int_of_sv (call ~fn:"Date::Calc::Week_Number"
	       [sv_of_int year; sv_of_int month; sv_of_int day])

let week_of_year year month day =
  let r = call_array ~fn:"Date::Calc::Week_of_Year"
	    [sv_of_int year; sv_of_int month; sv_of_int day] in
  match r with
      [week; year] -> int_of_sv week, int_of_sv year
    | _ -> failwith "Pl_Date_Calc: week_of_year: unexpected return value"

let monday_of_week week year =
  let r = call_array ~fn:"Date::Calc::Monday_of_Week"
	    [sv_of_int week; sv_of_int year] in
  match r with
      [year; month; day] -> int_of_sv year, int_of_sv month, int_of_sv day
    | _ -> failwith "Pl_Date_Calc: monday_of_week: unexpected return value"

(* at this point I got bored ... - RWMJ *)