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>
36 class MECON_Tiempo_Intervalo {
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 MECON_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true)
65 $inicio = new MECON_Tiempo_Hora;
68 $fin = new MECON_Tiempo_Hora;
70 $this->inicio = $inicio;
80 if($a->lower($this->inicio)) {
82 $this->fin = $this->inicio;
89 return $this->fin->lower($this->inicio);
92 function setInicio($inicio) {
93 $this->inicio = $inicio;
104 function setFin($fin)
110 function getDuracion()
112 $c = new MECON_Tiempo_Hora;
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)) {
123 $intervalos = array($intervalos);
125 foreach ($intervalos as $i) {
126 if ($i->fin->greater($this->inicio) &&
127 $this->fin->greater($i->inicio))
131 if ($this->fin->greater($i->inicio) &&
132 $i->fin->greater($this->inicio))
140 function fusionar($f)
142 if (!$this->seSuperpone($f)) {
145 if ($f->fin->greater($this->fin)) {
146 $this->fin = $f->fin;
148 if ($f->inicio->lower($this->inicio)) {
149 $this->inicio = $f->inicio;
154 function superponer($i)
156 $inicio = $this->inicio;
158 if ($this->inicio->lower($i->inicio)) {
159 $inicio = $i->inicio;
161 if ($this->fin->greater($i->fin)) {
164 $fin->subtract($inicio);
169 * Corta un intervalo, devolviendo el intervalo previo al punto de corte.
170 * El intervalo actual queda con el intervalo posterior al punto de corte.
171 * El punto de corte puede ser tanto una hora como un intervalo.
173 * @param mixed $c Donde cortar.
175 * @return object Intervalo Intervalo anterior al punto de corte.
179 if(is_a($c, 'mecon_tiempo_hora')) {
180 return $this->cortarHora($c);
181 } elseif (is_a($c, 'mecon_tiempo_intervalo')) {
182 return $this->cortarIntervalo($c);
189 * Corta un intervalo, devolviendo el intervalo previo a la hora de corte.
190 * El intervalo actual queda con el intervalo posterior a la hora de corte.
192 * @param mixed $h Donde cortar.
194 * @return object Intervalo Intervalo anterior a la hora de corte.
196 function cortarHora($h)
198 $class = get_class($this);
201 if($this->inicio->greater($h)) {
202 $r->setFin($r->inicio);
205 if($this->fin->lowerEqual($h)) {
206 $this->setInicio($this->fin);
208 $this->setInicio($h);
215 * Corta un intervalo, devolviendo el intervalo previo al intervalo de corte.
216 * El intervalo actual queda con el intervalo posterior al intervalo de corte.
218 * @param mixed $i Donde cortar.
220 * @return object Intervalo Intervalo anterior al intervalo de corte.
222 function cortarIntervalo($i)
224 $ant = $this->cortarHora($i->inicio);
225 $this->cortarHora($i->fin);
229 function toString() {
230 return 'inicio: ' . $this->inicio->format() . ' | fin: ' . $this->fin->format();
235 $this->inicio = $i->inicio->__clone();
236 $this->fin = $i->fin->__clone();
242 $class = get_class($this);