OSDN Git Service

Merge branch 'logger'
[shogi-server/shogi-server.git] / shogi_server / util.rb
1 ## $Id$
2
3 ## Copyright (C) 2004 NABEYA Kenichi (aka nanami@2ch)
4 ## Copyright (C) 2007-2008 Daigo Moriwaki (daigo at debian dot org)
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; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 require 'date'
21 require 'fileutils'
22 require 'pathname'
23
24 module ShogiServer
25
26   # Generate a random number such as i<=n<max
27   def random(i, max)
28     return i if i >= max
29     return rand(max-i)+i
30   end
31   module_function :random
32
33   def shuffle(array)
34     return if array.size < 2
35     for i in 0...(array.size-1)
36       r = random(i, array.size)
37       a = array[i]
38       array[i] = array[r]
39       array[r] = a
40     end
41   end
42   module_function :shuffle
43
44   # See if the file is writable. The file will be created if it does not exist
45   # yet.
46   # Return true if the file is writable, otherwise false.
47   #
48   def is_writable_file?(file)
49     if String === file
50       file = Pathname.new file
51     end
52     if file.exist?
53       if file.file?
54         return file.writable_real?
55       else
56         return false
57       end
58     end
59     
60     begin
61       file.open("w") {|fh| } 
62       file.delete
63     rescue
64       return false
65     end
66
67     return true
68   end
69   module_function :is_writable_file?
70
71   # Convert a DateTime insntace to a Time instance.
72   #
73   def datetime2time(dt)
74     return Time.mktime dt.year, dt.month, dt.day, dt.hour, dt.min, dt.sec
75   end
76   module_function :datetime2time
77
78   # Convert a Time instance to a DateTime instance
79   #
80   def time2datetime(time)
81     return DateTime.new(time.year, time.mon, time.mday,
82                         time.hour, time.min, time.sec)
83   end
84   module_function :time2datetime
85
86   # Parse string representing a day-of-week and return a coresponding
87   # integer value: 1 (Monday) - 7 (Sunday)
88   #
89   def parse_dow(str)
90     index = Date::DAYNAMES.index(str) || Date::ABBR_DAYNAMES.index(str)
91     return nil if index.nil?
92     return index == 0 ? 7 : index
93   end
94   module_function :parse_dow
95 end