📄 dutyschedule.java
字号:
//// This file is part of the OpenNMS(R) Application.//// OpenNMS(R) is Copyright (C) 2002-2003 The OpenNMS Group, Inc. All rights reserved.// OpenNMS(R) is a derivative work, containing both original code, included code and modified// code that was published under the GNU General Public License. Copyrights for modified // and included code are below.//// OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.//// Copyright (C) 1999-2001 Oculan Corp. All rights reserved.//// This program 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 2 of the License, or// (at your option) any later version.//// This program 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 this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.// // For more information contact: // OpenNMS Licensing <license@opennms.org>// http://www.opennms.org/// http://www.opennms.com///package org.opennms.netmgt.config.users;import java.util.BitSet;import java.util.Calendar;import java.util.GregorianCalendar;import java.util.StringTokenizer;import java.util.Vector;import org.apache.log4j.Category;import org.opennms.core.utils.ThreadCategory;/** * This class holds information on the duty schedules that users can have. * Converstion between different formats of the duty schedule information are * possible, as is the comparision between a Calendar passed in and the start * and stop times of each day in a duty schedule. * * @author <A HREF="mailto:jason@opennms.org">Jason Johns </A> * @author <A HREF="http://www.opennms.org/">OpenNMS </A> * * @version 1.1.1.1 * */public class DutySchedule { Category log = ThreadCategory.getInstance(this.getClass()); /** * Each boolean in the bit set represents a day of the week. Monday = 0, * Tuesday = 1 ... Sunday = 6 */ private BitSet m_days; /** * The starting time of this DutySchedule */ private int m_startTime; /** * The ending time of this DutySchedule */ private int m_stopTime; /** * A series of constants to identify the days of the week as used by the * DutySchedule class */ public static final int MONDAY = 0; public static final int TUESDAY = 1; public static final int WEDNESDAY = 2; public static final int THURSDAY = 3; public static final int FRIDAY = 4; public static final int SATURDAY = 5; public static final int SUNDAY = 6; /** * A list of names to abbreviate the days of the week */ public static final String[] DAY_NAMES = { "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su" }; /** * A mapping between the days of the week as indexed by the DutySchedule * class and those of the Calendar class */ private static final int[] CALENDAR_DAY_MAPPING = { Calendar.MONDAY, Calendar.TUESDAY, Calendar.WEDNESDAY, Calendar.THURSDAY, Calendar.FRIDAY, Calendar.SATURDAY, Calendar.SUNDAY }; /** * Default constructor, builds the BitSet used to identify the days of the * week that are set. */ public DutySchedule() { m_days = new BitSet(7); } /** * This constructor is designed to convert from a Vector filled with 7 * Boolean objects and two String objects into the BitSet and integer start * and stop time. Very useful for the ModifyUser screen when it is * converting from a table display to save the information to a string * format for the users.xml. * * @param aSchedule * filled with 7 Boolean objects and two String objects */ public DutySchedule(Vector aSchedule) { m_days = new BitSet(7); // set each day that is set to true for (int i = 0; i < 7; i++) { if (((Boolean) aSchedule.get(i)).booleanValue()) { m_days.set(i); } } // initialize the start and stop times, which should be in the last to // indexes of the vector m_startTime = Integer.parseInt((String) aSchedule.get(7)); m_stopTime = Integer.parseInt((String) aSchedule.get(8)); } /** * This constructor is designed to build a new DutySchedule from a String * representation formatted as such. <day_of_week_abbr><start>- <stop>eg. * MoWeFr800-1700, TuTh900-1500. * * @param aSchedule * the string to convert to a new DutySchedule */ public DutySchedule(String aSchedule) { m_days = new BitSet(7); // parse the endtime and day/begin time out StringTokenizer timeTokens = new StringTokenizer(aSchedule, "-"); String daysAndStartTime = timeTokens.nextToken(); m_stopTime = Integer.parseInt(timeTokens.nextToken()); // loop through the first half of the string and get each two letter // day abbreviation, set the appropriate BitSet values for (int j = 0; j < daysAndStartTime.length(); j++) { // check to see if there is a character or digit at the current // index if (!Character.isDigit(daysAndStartTime.charAt(j))) { // look at the current and next characters, advance the loop // counter // by one and add one to get the propert substring m_days.set(getDayInt(daysAndStartTime.substring(j, ++j + 1))); } else { // if a digit was seen this is the start time, get it and stop // the loop m_startTime = Integer.parseInt(daysAndStartTime.substring(j, daysAndStartTime.length())); break; } } } /** * This method returns the index value of a day abbreviation * * @param aDay * the day abbreviation * @return The index associated with this abbreviation. */ private int getDayInt(String aDay) { int value = -1; for (int i = 0; i < DAY_NAMES.length; i++) { if (aDay.equals(DAY_NAMES[i])) { value = i; break; } } return value; } /** * This method sets the BitSet that tracks what days this DutySchedule * applies to. * * @param aDay * the day index to set in the BitSet */ public void setDay(int aDay) { m_days.set(aDay); } /** * This method return the start time as an integer * * @return The start time of this DutySchedule. */ public int getStartTime() { return m_startTime; } /** * This method return the stop time as an integer * * @return The stop time of this DutySchedule. */ public int getStopTime() { return m_stopTime; } /** * This method formats the DutySchedule as a vector populated with the first * seven objects as Booleans set to indicate what days of the week are * stored, and the last two objects as Strings that reflect the start time * and stop time respectively. This method gives a Vector that can be passed * to the DutySchedule(Vector) constructor to create a new DutySchedule * * @return A Vector properly formatted to reflect this DutySchedule. */ public Vector getAsVector() { Vector vector = new Vector();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -