com.rometools.modules.yahooweather.io.WeatherModuleParser Maven / Gradle / Ivy
/*
* WeatherModuleParser.java
*
*
* This library is provided under dual licenses.
* You may choose the terms of the Lesser General Public License or the Apache
* License at your discretion.
*
* Copyright (C) 2008 Robert Cooper, Temple of the Screaming Penguin
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.rometools.modules.yahooweather.io;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import org.jdom2.Element;
import org.jdom2.Namespace;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.rometools.modules.yahooweather.YWeatherModule;
import com.rometools.modules.yahooweather.YWeatherModuleImpl;
import com.rometools.modules.yahooweather.types.Astronomy;
import com.rometools.modules.yahooweather.types.Atmosphere;
import com.rometools.modules.yahooweather.types.Condition;
import com.rometools.modules.yahooweather.types.ConditionCode;
import com.rometools.modules.yahooweather.types.Forecast;
import com.rometools.modules.yahooweather.types.Location;
import com.rometools.modules.yahooweather.types.Units;
import com.rometools.modules.yahooweather.types.Wind;
import com.rometools.rome.feed.module.Module;
import com.rometools.rome.io.ModuleParser;
/**
* ModuleParser implementation for Slash RSS.
*
* @version $Revision: 1.2 $
* @author Robert "kebernet" Cooper
*/
public class WeatherModuleParser implements ModuleParser {
private static final Logger LOG = LoggerFactory.getLogger(WeatherModuleParser.class);
private static final Namespace NS = Namespace.getNamespace(YWeatherModule.URI);
@Override
public String getNamespaceUri() {
return YWeatherModule.URI;
}
@Override
public Module parse(final Element element, final Locale locale) {
final YWeatherModuleImpl module = new YWeatherModuleImpl();
final Element location = element.getChild("location", WeatherModuleParser.NS);
if (location != null) {
final Location l = new Location(location.getAttributeValue("city"), location.getAttributeValue("region"), location.getAttributeValue("country"));
module.setLocation(l);
}
final Element units = element.getChild("units", WeatherModuleParser.NS);
if (units != null) {
final Units u = new Units(units.getAttributeValue("temperature"), units.getAttributeValue("distance"), units.getAttributeValue("pressure"),
units.getAttributeValue("speed"));
module.setUnits(u);
}
final Element wind = element.getChild("wind", WeatherModuleParser.NS);
if (wind != null) {
try {
final Wind w = new Wind(Integer.parseInt(wind.getAttributeValue("chill")), Integer.parseInt(wind.getAttributeValue("direction")),
Integer.parseInt(wind.getAttributeValue("speed")));
module.setWind(w);
} catch (final NumberFormatException nfe) {
LOG.warn("NumberFormatException processing tag.", nfe);
}
}
final Element atmosphere = element.getChild("atmosphere", WeatherModuleParser.NS);
if (atmosphere != null) {
try {
final Atmosphere a = new Atmosphere(Integer.parseInt(atmosphere.getAttributeValue("humidity")), Double.parseDouble(atmosphere
.getAttributeValue("visibility")) / 100, Double.parseDouble(atmosphere.getAttributeValue("pressure")),
Atmosphere.PressureChange.fromCode(Integer.parseInt(atmosphere.getAttributeValue("rising"))));
module.setAtmosphere(a);
} catch (final NumberFormatException nfe) {
LOG.warn("NumberFormatException processing tag.", nfe);
}
}
final Element astronomy = element.getChild("astronomy", WeatherModuleParser.NS);
if (astronomy != null) {
try {
final SimpleDateFormat timeFormat = new SimpleDateFormat("h:mm a", locale);
final Astronomy a = new Astronomy(timeFormat.parse(astronomy.getAttributeValue("sunrise").replaceAll("am", "AM").replaceAll("pm", "PM")),
timeFormat.parse(astronomy.getAttributeValue("sunset").replaceAll("am", "AM").replaceAll("pm", "PM")));
module.setAstronomy(a);
} catch (final ParseException pe) {
LOG.warn("ParseException processing tag.", pe);
}
}
final Element condition = element.getChild("condition", WeatherModuleParser.NS);
if (condition != null) {
try {
final SimpleDateFormat dateFormat = new SimpleDateFormat("EEE, d MMM yyyy h:mm a zzz", locale);
final Condition c = new Condition(condition.getAttributeValue("text"), ConditionCode.fromCode(Integer.parseInt(condition
.getAttributeValue("code"))), Integer.parseInt(condition.getAttributeValue("temp")), dateFormat.parse(condition
.getAttributeValue("date").replaceAll("pm", "PM").replaceAll("am", "AM")));
module.setCondition(c);
} catch (final NumberFormatException nfe) {
LOG.warn("NumberFormatException processing tag.", nfe);
} catch (final ParseException pe) {
LOG.warn("ParseException processing tag.", pe);
}
}
final List forecasts = element.getChildren("forecast", WeatherModuleParser.NS);
if (forecasts != null) {
final Forecast[] f = new Forecast[forecasts.size()];
int i = 0;
final SimpleDateFormat dateFormat = new SimpleDateFormat("d MMM yyyy", locale);
for (final Iterator it = forecasts.iterator(); it.hasNext(); i++) {
final Element forecast = it.next();
try {
f[i] = new Forecast(forecast.getAttributeValue("day"), dateFormat.parse(forecast.getAttributeValue("date")), Integer.parseInt(forecast
.getAttributeValue("low")), Integer.parseInt(forecast.getAttributeValue("high")), forecast.getAttributeValue("text"),
ConditionCode.fromCode(Integer.parseInt(forecast.getAttributeValue("code"))));
} catch (final NumberFormatException nfe) {
LOG.warn("NumberFormatException processing tag.", nfe);
} catch (final ParseException pe) {
LOG.warn("ParseException processing tag.", pe);
}
}
module.setForecasts(f);
}
return module;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy