Subversion Repositories XServices

Rev

Rev 97 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 97 Rev 114
Line 16... Line 16...
16
package net.brutex.xservices.ws.impl;
16
package net.brutex.xservices.ws.impl;
Line 17... Line 17...
17
 
17
 
18
import java.math.BigInteger;
18
import java.math.BigInteger;
19
import java.text.ParseException;
19
import java.text.ParseException;
-
 
20
import java.text.SimpleDateFormat;
20
import java.text.SimpleDateFormat;
21
import java.util.ArrayList;
21
import java.util.Date;
22
import java.util.Date;
-
 
23
import java.util.GregorianCalendar;
22
import java.util.GregorianCalendar;
24
import java.util.List;
Line 23... Line 25...
23
import java.util.TimeZone;
25
import java.util.TimeZone;
24
 
-
 
25
import javax.jws.WebService;
26
 
-
 
27
import javax.jws.WebService;
-
 
28
import net.brutex.xservices.types.DateFormatType;
26
 
29
import net.brutex.xservices.types.DateInfoExtendedType;
-
 
30
import net.brutex.xservices.types.DateInfoType;
27
import net.brutex.xservices.types.DateFormatType;
31
import net.brutex.xservices.types.DateTimeUnits;
28
import net.brutex.xservices.types.DateTimeUnits;
32
import net.brutex.xservices.types.TimeZoneType;
29
import net.brutex.xservices.util.BrutexNamespaces;
33
import net.brutex.xservices.util.BrutexNamespaces;
Line 30... Line -...
30
import net.brutex.xservices.ws.DateService;
-
 
31
import net.brutex.xservices.ws.XServicesFault;
34
import net.brutex.xservices.ws.DateService;
32
 
35
import net.brutex.xservices.ws.XServicesFault;
33
 
36
 
34
/**
37
/**
35
 * @author Brian Rosenberger
-
 
36
 *
-
 
37
 */
38
 * @author Brian Rosenberger
38
@WebService(
-
 
39
		targetNamespace = BrutexNamespaces.WS_XSERVICES, 
-
 
40
		endpointInterface = "net.brutex.xservices.ws.DateService", 
39
 * 
Line 41... Line 40...
41
		serviceName = DateService.SERVICE_NAME
40
 */
42
			)
41
@WebService(targetNamespace = BrutexNamespaces.WS_XSERVICES, endpointInterface = "net.brutex.xservices.ws.DateService", serviceName = DateService.SERVICE_NAME)
Line 43... Line 42...
43
public class DateServiceImpl implements DateService {
42
public class DateServiceImpl implements DateService {
44
 
-
 
45
	private static String ERR_INVALIDFORMAT = "Invalid format pattern.";
-
 
46
	private static String ERR_INVALIDTIMEZONE = "Invalid timezone.";
43
 
47
	
-
 
48
	public GregorianCalendar getDate(String timezone) throws XServicesFault {		
-
 
49
		if (! isValidTimezone(timezone) ) {
-
 
50
			String valid_ids = "";
-
 
51
			String[] tid = TimeZone.getAvailableIDs();
-
 
52
			for (String s : tid) {
-
 
53
				valid_ids += s + "\n";
-
 
54
			}
44
	private static String ERR_INVALIDFORMAT = "Invalid format pattern.";
55
			throw new XServicesFault("Please supply a valid timezone id or none. Valid timezones are:\n" + valid_ids,
45
	private static String ERR_INVALIDTIMEZONE = "Invalid timezone.";
56
					new Exception( ));
46
 
Line -... Line 47...
-
 
47
	public DateInfoType getDate() throws XServicesFault {
-
 
48
		GregorianCalendar c = new GregorianCalendar();
-
 
49
		DateInfoType dateinfo = new DateInfoType(c, TimeZone.getDefault());
-
 
50
		return dateinfo;
-
 
51
	}
-
 
52
 
Line 57... Line 53...
57
		}
53
	public DateInfoExtendedType getDateExtended() throws XServicesFault {
58
			if (timezone == null || timezone.length()<1 ) timezone = "GMT0";
54
		GregorianCalendar c = new GregorianCalendar();
59
			GregorianCalendar c = new GregorianCalendar(TimeZone.getTimeZone(timezone));
55
		DateInfoExtendedType dateinfo = new DateInfoExtendedType(c,
60
			return c;
56
				TimeZone.getDefault());
Line 71... Line 67...
71
		Date d = new Date();
67
		Date d = new Date();
72
		long l = d.getTime()/1000;
68
		long l = d.getTime() / 1000;
73
		return new BigInteger(Long.toString(l));
69
		return new BigInteger(Long.toString(l));
74
	}
70
	}
Line 75... Line -...
75
 
-
 
76
	
71
 
77
	public GregorianCalendar getInTimezone(GregorianCalendar cal,
72
	public String getInTimezone(Date date, String timezone)
-
 
73
			throws XServicesFault {
78
			String timezone) throws XServicesFault {
74
		if (!isValidTimezone(timezone))
79
		if(! isValidTimezone(timezone)) throw new XServicesFault(ERR_INVALIDTIMEZONE);
75
			throw new XServicesFault(ERR_INVALIDTIMEZONE);
80
		GregorianCalendar c = new GregorianCalendar(TimeZone.getTimeZone(timezone));
76
		TimeZone targetzone = TimeZone.getTimeZone(timezone);
81
		c.setTimeInMillis(cal.getTimeInMillis());
77
		String targetstring = DateFormatType.ISO8601.format(date, null, targetzone);
82
		return c;
78
		return targetstring;
Line 83... Line -...
83
	}
-
 
84
	
79
	}
-
 
80
 
85
	
81
	public String formatDate(Date cal, DateFormatType format)
86
	public String formatDate(GregorianCalendar cal, DateFormatType format) throws XServicesFault {
82
			throws XServicesFault {
Line 87... Line -...
87
		return formatDateAdvanced(cal, format.format());
-
 
88
	}
83
		return format.format(cal, null, null);
89
	
84
	}
90
	
85
 
91
	public String formatDateAdvanced(GregorianCalendar cal, String format)
-
 
92
			throws XServicesFault {
86
	public String formatDateAdvanced(Date cal, String format)
93
		String result= null;
87
			throws XServicesFault {
94
		try {
-
 
95
			SimpleDateFormat f = new SimpleDateFormat(format);
-
 
96
			result = f.format(cal.getTime());
-
 
97
		} catch (IllegalArgumentException e) {
88
		String result = null;
98
			throw new XServicesFault(ERR_INVALIDFORMAT + e.getMessage());
89
		SimpleDateFormat f = new SimpleDateFormat(format);
Line 99... Line -...
99
		}
-
 
100
		return result;
90
		result = f.format(cal);
-
 
91
		return result;
-
 
92
	}
-
 
93
 
-
 
94
	public Date parseDate(String s, DateFormatType format, String timezone) 
-
 
95
			throws XServicesFault {
-
 
96
		if (timezone == null | timezone.equals(""))
101
	}
97
			timezone = TimeZone.getDefault().getID();
-
 
98
		if (!isValidTimezone(timezone))
-
 
99
			throw new XServicesFault(ERR_INVALIDTIMEZONE);
-
 
100
		try {
102
	
101
			return format.parse(s, null, TimeZone.getTimeZone(timezone));
Line 103... Line -...
103
	
-
 
104
	public GregorianCalendar parseDate(String s, DateFormatType format, String timezone) throws XServicesFault {
102
		} catch (ParseException e) {
-
 
103
			throw new XServicesFault(e);
105
		return parseDateAdvanced(s, format.format(), timezone);
104
		}
106
	}
105
	}
-
 
106
 
107
 
107
	public GregorianCalendar parseDateAdvanced(String s, String format,
-
 
108
			String timezone) throws XServicesFault {
108
	
109
		SimpleDateFormat f = null;
Line 109... Line 110...
109
	public GregorianCalendar parseDateAdvanced(String s, String format, String timezone) throws XServicesFault {
110
		Date date = null;
110
		SimpleDateFormat f = null;
111
		if (timezone == null | timezone.equals(""))
111
		Date date = null;
112
			timezone = TimeZone.getDefault().getID();
112
		if(timezone==null | timezone.equals("")) timezone = TimeZone.getDefault().getID();
113
		if (!isValidTimezone(timezone))
Line 124... Line 125...
124
		cal.setTimeZone(TimeZone.getTimeZone(timezone));
125
		cal.setTimeZone(TimeZone.getTimeZone(timezone));
125
		cal.setTime(date);
126
		cal.setTime(date);
126
		return cal;
127
		return cal;
127
	}
128
	}
Line 128... Line -...
128
	
-
 
129
	
129
 
130
	public BigInteger dateTimeDiff(GregorianCalendar fromCal,
130
	public BigInteger dateTimeDiff(Date fromCal, Date toCal)
131
			GregorianCalendar toCal) throws XServicesFault {
131
			throws XServicesFault {
132
		long diff = toCal.getTimeInMillis() - fromCal.getTimeInMillis();
132
		long diff = toCal.getTime() - fromCal.getTime();
133
		BigInteger d = new BigInteger(String.valueOf(diff), 10);
133
		BigInteger d = new BigInteger(String.valueOf(diff), 10);
134
		return d;
134
		return d;
Line 135... Line -...
135
	}
-
 
136
	
135
	}
137
	
136
 
138
	public BigInteger dateTimeDiff2(GregorianCalendar fromCal,
137
	public BigInteger dateTimeDiff2(Date fromCal, Date toCal, DateTimeUnits unit)
139
			GregorianCalendar toCal, DateTimeUnits unit) throws XServicesFault {
138
			throws XServicesFault {
140
		BigInteger d = dateTimeDiff(fromCal, toCal);
139
		BigInteger d = dateTimeDiff(fromCal, toCal);
141
		switch (unit) {
140
		switch (unit) {
142
		case SECONDS:
141
		case SECONDS:
Line 148... Line 147...
148
		case HOURS:
147
		case HOURS:
149
			d = d.divide(new BigInteger("3600000"));
148
			d = d.divide(new BigInteger("3600000"));
150
			break;
149
			break;
151
		case DAYS:
150
		case DAYS:
152
			d = d.divide(new BigInteger("86400000"));
151
			d = d.divide(new BigInteger("86400000"));
-
 
152
			break;
-
 
153
		case YEARS:
-
 
154
			d = d.divide(new BigInteger("31536000000"));
-
 
155
			break;
153
		}
156
		}
154
		return d;
157
		return d;
155
	}
158
	}
Line 156... Line -...
156
	
-
 
157
	
159
 
158
	public GregorianCalendar dateAdd(GregorianCalendar cal, BigInteger value, DateTimeUnits unit)
160
	public GregorianCalendar dateAdd(GregorianCalendar cal, BigInteger value,
159
			throws XServicesFault {
161
			DateTimeUnits unit) throws XServicesFault {
160
		switch (unit) {
162
		switch (unit) {
161
		case SECONDS:
163
		case SECONDS:
162
			cal.add(GregorianCalendar.SECOND, value.intValue());
164
			cal.add(GregorianCalendar.SECOND, value.intValue());
163
			break;
165
			break;
Line 168... Line 170...
168
			cal.add(GregorianCalendar.HOUR_OF_DAY, value.intValue());
170
			cal.add(GregorianCalendar.HOUR_OF_DAY, value.intValue());
169
			break;
171
			break;
170
		case DAYS:
172
		case DAYS:
171
			cal.add(GregorianCalendar.DAY_OF_MONTH, value.intValue());
173
			cal.add(GregorianCalendar.DAY_OF_MONTH, value.intValue());
172
			break;
174
			break;
-
 
175
		case YEARS:
-
 
176
			cal.add(GregorianCalendar.YEAR, value.intValue());
-
 
177
			break;
173
		default:
178
		default:
174
			cal.add(GregorianCalendar.MILLISECOND, value.intValue());
179
			cal.add(GregorianCalendar.MILLISECOND, value.intValue());
175
		}
180
		}
176
		return cal;
181
		return cal;
177
	}
182
	}
Line 185... Line 190...
185
			}
190
			}
186
		}
191
		}
187
		return yes;
192
		return yes;
188
	}
193
	}
Line -... Line 194...
-
 
194
 
-
 
195
	public List<TimeZoneType> getTimezones() {
-
 
196
		List<TimeZoneType> output = new ArrayList<TimeZoneType>();
-
 
197
		for (String s : TimeZone.getAvailableIDs()) {
-
 
198
			output.add(new TimeZoneType(TimeZone.getTimeZone(s)));
-
 
199
		}
-
 
200
		return output;
189
 
201
	}