/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.web.admin.roles; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.Iterator; import java.util.List; import org.opennms.netmgt.config.GroupManager; import org.opennms.netmgt.config.OwnedInterval; import org.opennms.netmgt.config.OwnedIntervalSequence; import org.opennms.netmgt.config.Owner; import org.opennms.netmgt.config.groups.Role; /** * <p>Day class.</p> * * @author ranger * @version $Id: $ * @since 1.8.1 */ public class Day { private Calendar m_calendar; private Role m_role; private GroupManager m_groupManager; /** * <p>Constructor for Day.</p> * * @param date a java$util$Date object. * @param role a {@link org.opennms.netmgt.config.groups.Role} object. * @param groupManager a {@link org.opennms.netmgt.config.GroupManager} object. */ public Day(Date date, Role role, GroupManager groupManager) { m_role = role; m_groupManager = groupManager; m_calendar = Calendar.getInstance(); m_calendar.setTime(date); } /** * <p>getDate</p> * * @return a java$util$Date object. */ public Date getDate() { return m_calendar.getTime(); } /** * <p>getMonth</p> * * @return a int. */ public int getMonth() { return m_calendar.get(Calendar.MONTH); } /** * <p>getDayOfMonth</p> * * @return a int. */ public int getDayOfMonth() { return m_calendar.get(Calendar.DAY_OF_MONTH); } /** * <p>getDayOfYear</p> * * @return a int. */ public int getDayOfYear() { return m_calendar.get(Calendar.DAY_OF_YEAR); } /** * <p>getDayOfWeek</p> * * @return a {@link java.lang.String} object. */ public String getDayOfWeek() { return new SimpleDateFormat("EEEE").format(m_calendar.getTime()); } /** * <p>getTime</p> * * @param hours a int. * @param minutes a int. * @return a java$util$Date object. */ public Date getTime(int hours, int minutes) { Calendar time = Calendar.getInstance(); time.set(m_calendar.get(Calendar.YEAR), m_calendar.get(Calendar.MONTH), m_calendar.get(Calendar.DAY_OF_MONTH), hours, minutes); return time.getTime(); } /** * <p>getEntries</p> * * @return an array of {@link org.opennms.web.admin.roles.CalendarEntry} objects. */ public CalendarEntry[] getEntries() { try { List<CalendarEntry> entries = new ArrayList<CalendarEntry>(); OwnedIntervalSequence schedEntries = m_groupManager.getRoleScheduleEntries(m_role.getName(), getTime(0,0), getTime(24,0)); for (Iterator<OwnedInterval> it = schedEntries.iterator(); it.hasNext();) { OwnedInterval schedEntry = it.next(); CalendarEntry entry = new CalendarEntry(schedEntry.getStart(), schedEntry.getEnd(), ownerString(schedEntry.getOwners()), schedEntry.getOwners()); entries.add(entry); } return entries.toArray(new CalendarEntry[entries.size()]); } catch (Throwable e) { throw new WebRolesException("Unable to get schedule entries: " + e.getMessage(), e); } } private String ownerString(List<Owner> owners) { boolean first = true; StringBuffer buf = new StringBuffer(); for (Owner owner : owners) { if (first) { first = false; } else { buf.append(", "); } buf.append(owner.getUser()); } return buf.toString(); } }