Skip to content

Commit

Permalink
Provide calendar builder support for extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuna committed May 20, 2011
1 parent 818fc14 commit 79a5e7e
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 20 deletions.
72 changes: 72 additions & 0 deletions src/main/java/net/fortuna/ical4j/extensions/CalendarBuilder.java
@@ -0,0 +1,72 @@
/**
* Copyright (c) 2011, Ben Fortuna
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* o Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* o Neither the name of Ben Fortuna nor the names of any other contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.fortuna.ical4j.extensions;

import net.fortuna.ical4j.data.CalendarParser;
import net.fortuna.ical4j.data.CalendarParserFactory;
import net.fortuna.ical4j.extensions.outlook.OriginalEnd;
import net.fortuna.ical4j.extensions.outlook.OriginalStart;
import net.fortuna.ical4j.extensions.property.CalStart;
import net.fortuna.ical4j.model.ParameterFactoryRegistry;
import net.fortuna.ical4j.model.PropertyFactoryRegistry;
import net.fortuna.ical4j.model.TimeZoneRegistry;
import net.fortuna.ical4j.model.TimeZoneRegistryFactory;

public class CalendarBuilder extends net.fortuna.ical4j.data.CalendarBuilder {

private static final PropertyFactoryRegistry PROPERTY_FACTORY_REGISTRY = new PropertyFactoryRegistry();

private static final ParameterFactoryRegistry PARAMETER_FACTORY_REGISTRY = new ParameterFactoryRegistry();

static {
PROPERTY_FACTORY_REGISTRY.register(CalStart.PROPERTY_NAME, CalStart.FACTORY);
PROPERTY_FACTORY_REGISTRY.register(OriginalStart.PROPERTY_NAME, OriginalStart.FACTORY);
PROPERTY_FACTORY_REGISTRY.register(OriginalEnd.PROPERTY_NAME, OriginalEnd.FACTORY);
}

public CalendarBuilder() {
this(CalendarParserFactory.getInstance().createParser());
}

public CalendarBuilder(CalendarParser parser) {
this(parser, TimeZoneRegistryFactory.getInstance().createRegistry());
}

public CalendarBuilder(TimeZoneRegistry tzRegistry) {
this(CalendarParserFactory.getInstance().createParser(), tzRegistry);
}

public CalendarBuilder(CalendarParser parser, TimeZoneRegistry tzRegistry) {
super(parser, PROPERTY_FACTORY_REGISTRY, PARAMETER_FACTORY_REGISTRY, tzRegistry);
}

}
Expand Up @@ -37,17 +37,8 @@
import java.util.Collection;
import java.util.List;

import net.fortuna.ical4j.data.CalendarBuilder;
import net.fortuna.ical4j.data.CalendarParser;
import net.fortuna.ical4j.data.CalendarParserFactory;
import net.fortuna.ical4j.data.ParserException;
import net.fortuna.ical4j.extensions.outlook.OriginalEnd;
import net.fortuna.ical4j.extensions.outlook.OriginalStart;
import net.fortuna.ical4j.model.Calendar;
import net.fortuna.ical4j.model.ParameterFactoryRegistry;
import net.fortuna.ical4j.model.PropertyFactoryRegistry;
import net.fortuna.ical4j.model.TimeZoneRegistry;
import net.fortuna.ical4j.model.TimeZoneRegistryFactory;
import net.fortuna.ical4j.model.ValidationException;

import org.junit.Assert;
Expand Down Expand Up @@ -78,17 +69,7 @@ public CalendarBuilderTest(String filename, boolean expectedValid) {

@Before
public void setUp() {
CalendarParser parser = CalendarParserFactory.getInstance().createParser();

PropertyFactoryRegistry propertyFactoryRegistry = new PropertyFactoryRegistry();
propertyFactoryRegistry.register(OriginalStart.PROPERTY_NAME, OriginalStart.FACTORY);
propertyFactoryRegistry.register(OriginalEnd.PROPERTY_NAME, OriginalEnd.FACTORY);

ParameterFactoryRegistry parameterFactoryRegistry = new ParameterFactoryRegistry();

TimeZoneRegistry tzRegistry = TimeZoneRegistryFactory.getInstance().createRegistry();

builder = new CalendarBuilder(parser, propertyFactoryRegistry, parameterFactoryRegistry, tzRegistry);
builder = new CalendarBuilder();
}

@Test
Expand Down

0 comments on commit 79a5e7e

Please sign in to comment.