no.api.meteo.service.sunrise.SunriseParser Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2015 Amedia Utvikling AS.
*
* 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 no.api.meteo.service.sunrise;
import lombok.extern.slf4j.Slf4j;
import no.api.meteo.MeteoException;
import no.api.meteo.entity.core.Location;
import no.api.meteo.entity.core.service.sunrise.Noon;
import no.api.meteo.entity.core.service.sunrise.PhaseType;
import no.api.meteo.entity.core.service.sunrise.Sunrise;
import no.api.meteo.service.AbstractMetaMeteoDataParser;
import no.api.meteo.service.MeteoDataParser;
import no.api.meteo.service.sunrise.builder.MoonBuilder;
import no.api.meteo.service.sunrise.builder.SunBuilder;
import no.api.meteo.service.sunrise.builder.SunriseBuilder;
import no.api.meteo.service.sunrise.builder.SunriseDateBuilder;
import no.api.meteo.util.EntityBuilder;
import no.api.meteo.util.MeteoConstants;
import no.api.meteo.util.MeteoXppUtils;
import org.xmlpull.v1.XmlPullParser;
import java.io.InputStream;
import java.util.Stack;
import static no.api.meteo.util.MeteoConstants.*;
import static no.api.meteo.util.MeteoXppUtils.getBoolean;
import static no.api.meteo.util.MeteoXppUtils.getDouble;
import static no.api.meteo.util.MeteoXppUtils.getLocalDate;
import static no.api.meteo.util.MeteoXppUtils.getString;
import static no.api.meteo.util.MeteoXppUtils.getZonedDateTime;
@Slf4j
public final class SunriseParser extends AbstractMetaMeteoDataParser
implements MeteoDataParser {
private static final String COULD_NOT_CONVERT_DATE_FROM_XML = "Could not convert date from xml";
@Override
public Sunrise parse(String data) throws MeteoException {
return doParse(MeteoXppUtils.createPullParser(data), new SunriseBuilder());
}
@Override
public Sunrise parse(InputStream inputStream) throws MeteoException {
return doParse(MeteoXppUtils.createPullParser(inputStream), new SunriseBuilder());
}
@Override
public void handleStartTags(XmlPullParser xpp, Stack stack) throws MeteoException {
switch (xpp.getName()) {
case TAG_META:
handleMetaTag(xpp);
break;
case TAG_TIME: {
handleTimeTag(xpp, stack);
break;
}
case TAG_LOCATION:
handleLocationTag(getSunriseBuilder(), xpp);
break;
case TAG_SUN: {
handleSunTag(xpp, stack);
break;
}
case TAG_NOON: {
handleNoonTag(xpp, stack);
break;
}
case TAG_ERROR:
// FIXME Not implemented yet
log.trace("Got error tag. This is not implemented yet");
break;
case TAG_TWILIGHT:
// FIXME Not implemented yet
log.trace("Got twilight tag. This is not implemented yet");
break;
case TAG_MOON: {
handleMoonTag(xpp, stack);
break;
}
default:
log.trace("Unhandled start tag: " + xpp.getName());
break;
}
}
@Override
public void handleEndTags(EntityBuilder builder, XmlPullParser xpp, Stack stack) {
if (TAG_TIME.equals(xpp.getName())) {
getSunriseBuilder().getDates().add(stack.pop().build());
} else {
log.trace("Unhandled end tag: " + xpp.getName());
}
}
private void handleTimeTag(XmlPullParser xpp, Stack stack) {
try {
SunriseDateBuilder sunriseDateBuilder = new SunriseDateBuilder();
sunriseDateBuilder.setDate(getLocalDate(xpp, ATTR_DATE));
stack.push(sunriseDateBuilder);
} catch (MeteoException e) {
log.warn(COULD_NOT_CONVERT_DATE_FROM_XML, e);
}
}
private void handleLocationTag(SunriseBuilder sunriseBuilder, XmlPullParser xpp) throws MeteoException {
if (sunriseBuilder.getLocation() == null) {
sunriseBuilder.setLocation(new Location(getDouble(xpp, ATTR_LONGITUDE),
getDouble(xpp, ATTR_LATITUDE), null));
} else {
log.trace("Skipping locations since it is already added.");
}
}
private void handleSunTag(XmlPullParser xpp, Stack stack) {
try {
SunBuilder sunBuilder = new SunBuilder();
sunBuilder.setRise(getZonedDateTime(xpp, MeteoConstants.ATTR_RISE));
sunBuilder.setSet(getZonedDateTime(xpp, MeteoConstants.ATTR_SET));
sunBuilder.setNeverRise(getBoolean(xpp, MeteoConstants.ATTR_NEVER_RISE));
sunBuilder.setNeverSet(getBoolean(xpp, MeteoConstants.ATTR_NEVER_SET));
sunBuilder.setDaylength(getDouble(xpp, MeteoConstants.ATTR_DAYLENGTH));
stack.peek().setSunBuilder(sunBuilder);
} catch (MeteoException e) {
log.warn(COULD_NOT_CONVERT_DATE_FROM_XML, e);
}
}
private void handleNoonTag(XmlPullParser xpp, Stack stack) {
try {
Noon noon = new Noon(getZonedDateTime(xpp, MeteoConstants.TIME), getDouble(xpp, ATTR_ALTITUDE),
getDouble(xpp, MeteoConstants.ATTR_DIRECTION));
stack.peek().getSunBuilder().getNoon().add(noon);
} catch (MeteoException e) {
log.warn(COULD_NOT_CONVERT_DATE_FROM_XML, e);
}
}
private void handleMoonTag(XmlPullParser xpp, Stack stack) throws MeteoException {
MoonBuilder moonBuilder = new MoonBuilder();
moonBuilder.setRise(getZonedDateTime(xpp, MeteoConstants.ATTR_RISE));
moonBuilder.setSet(getZonedDateTime(xpp, MeteoConstants.ATTR_SET));
moonBuilder.setNeverRise(getBoolean(xpp, MeteoConstants.ATTR_NEVER_RISE));
moonBuilder.setNeverSet(getBoolean(xpp, MeteoConstants.ATTR_NEVER_SET));
moonBuilder.setPhase(PhaseType.findByValue(getString(xpp, MeteoConstants.ATTR_PHASE)).get());
stack.peek().setMoonBuilder(moonBuilder);
}
private SunriseBuilder getSunriseBuilder() {
return (SunriseBuilder) getEntityBuilder();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy