1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA 02111-1307 USA
20 -------------------------------------------------------------------------------
21 Creado: lun abr 22 16:05:33 ART 2002
22 Autor: Gonzalo Merayo <gmeray@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'MECON/Tiempo/Hora.php';
30 * Representa un Intervalo entre 2 horas del mismo dia
34 * @author Gonzalo Merayo <gmeray@mecon.gov.ar>
39 * Hora de inicio del intervalo
47 * Hora de fin del intervalo
56 * @param Hora $inicio Hora de inicio (por defecto cero).
57 * @param Hora $fin Hora de fin (por defecto cero).
58 * @param bool $chequear Invierte el intervalo si la hora de
59 * fin es anterior a la de inicio.
62 function Intervalo( $inicio = null, $fin = null, $chequear = true ) {
63 if (is_null($inicio)) $inicio = new Hora;
64 if (is_null($fin)) $fin = new Hora;
65 if(!is_a($inicio, 'hora')) return false;
66 if(!is_a($fin, 'hora')) return false;
67 $this->inicio = $inicio;
77 if($a->lower($this->inicio))
80 $this->fin = $this->inicio;
87 return $this->fin->lower($this->inicio);
90 function setInicio( $inicio ) {
91 if(! is_a($inicio, "hora")) return false;
92 $this->inicio = $inicio;
103 function setFin( $fin )
105 if(! is_a($fin, "hora")) return false;
110 function getDuracion()
113 $c->copy($this->fin);
114 $c->subtract($this->inicio);
118 // XXX - Amplié el método para comparar con varios intervalos a la vez,
119 // si el argumento no es un array, anda de todas maneras.
120 function seSuperpone( $intervalos )
122 if (!is_array($intervalos)) $intervalos = array($intervalos);
123 foreach ($intervalos as $i) {
124 if (is_a($i, "intervalo")) {
125 if ($i->fin->greaterEqual($this->inicio) &&
126 $this->fin->greaterEqual($i->inicio)) return true;
127 if ($this->fin->greaterEqual($i->inicio) &&
128 $i->fin->greaterEqual($this->inicio)) return true;
134 function fusionar( $f )
136 if(! is_a($f, "intervalo")) return false;
137 if(! $this->seSuperpone( $f )) return false;
138 if($f->fin->greater($this->fin))
139 $this->fin = $f->fin;
140 if($f->inicio->lower($this->inicio))
141 $this->inicio = $f->inicio;
145 function superponer( $i )
147 if(! is_a($i, "intervalo")) return false;
148 $inicio = $this->inicio;
150 if($this->inicio->lower($i->inicio)) $inicio = $i->inicio;
151 if($this->fin->greater( $i->fin )) $fin = $i->fin;
152 $fin->subtract($inicio);
157 * Corta un intervalo, devolviendo el intervalo previo al punto de corte.
158 * El intervalo actual queda con el intervalo posterior al punto de corte.
159 * El punto de corte puede ser tanto una hora como un intervalo.
161 * @param mixed $c Donde cortar.
163 * @return object Intervalo Intervalo anterior al punto de corte.
167 if(is_a($c, 'hora')) {
168 return $this->cortarHora($c);
169 } elseif (is_a($c, 'intervalo')) {
170 return $this->cortarIntervalo($c);
177 * Corta un intervalo, devolviendo el intervalo previo a la hora de corte.
178 * El intervalo actual queda con el intervalo posterior a la hora de corte.
180 * @param mixed $h Donde cortar.
182 * @return object Intervalo Intervalo anterior a la hora de corte.
184 function cortarHora($h)
186 if (!is_a($h, 'hora')) return false;
187 $class = get_class($this);
190 if($this->inicio->greater($h)) {
191 $r->setFin($r->inicio);
194 if($this->fin->lowerEqual($h)) {
195 $this->setInicio($this->fin);
197 $this->setInicio($h);
204 * Corta un intervalo, devolviendo el intervalo previo al intervalo de corte.
205 * El intervalo actual queda con el intervalo posterior al intervalo de corte.
207 * @param mixed $i Donde cortar.
209 * @return object Intervalo Intervalo anterior al intervalo de corte.
211 function cortarIntervalo($i)
213 if (!is_a($i, 'intervalo')) return false;
214 $ant = $this->cortarHora($i->inicio);
215 $this->cortarHora($i->fin);
219 function toString() {
220 return 'inicio: ' . $this->inicio->format() . ' | fin: ' . $this->fin->format();
223 function copy($int = null) {
224 if (!(is_a($int, 'intervalo'))) return false;
225 $this->inicio = new Hora($int->inicio->get());
226 $this->fin = new Hora($int->fin->get());
231 $class = get_class($this);
233 $i->inicio = $this->inicio->__clone();
234 $i->fin = $this->fin->__clone();