All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fabric3.recovery.domain.FSDomainReplayer Maven / Gradle / Ivy

The newest version!
/*
* Fabric3
* Copyright (c) 2009-2013 Metaform Systems
*
* Fabric3 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 3 of
* the License, or (at your option) any later version, with the
* following exception:
*
* Linking this software statically or dynamically with other
* modules is making a combined work based on this software.
* Thus, the terms and conditions of the GNU General Public
* License cover the whole combination.
*
* As a special exception, the copyright holders of this software
* give you permission to link this software with independent
* modules to produce an executable, regardless of the license
* terms of these independent modules, and to copy and distribute
* the resulting executable under terms of your choice, provided
* that you also meet, for each linked independent module, the
* terms and conditions of the license of that module. An
* independent module is a module which is not derived from or
* based on this software. If you modify this software, you may
* extend this exception to your version of the software, but
* you are not obligated to do so. If you do not wish to do so,
* delete this exception statement from your version.
*
* Fabric3 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 Fabric3.
* If not, see .
*/
package org.fabric3.recovery.domain;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import javax.xml.namespace.QName;
import javax.xml.stream.Location;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;

import org.oasisopen.sca.annotation.EagerInit;
import org.oasisopen.sca.annotation.Init;
import org.oasisopen.sca.annotation.Reference;

import org.fabric3.api.annotation.monitor.Monitor;
import org.fabric3.host.Namespaces;
import org.fabric3.host.domain.DeploymentException;
import org.fabric3.host.domain.Domain;
import org.fabric3.host.domain.DomainJournal;
import org.fabric3.host.runtime.HostInfo;
import org.fabric3.spi.event.DomainRecover;
import org.fabric3.spi.event.EventService;
import org.fabric3.spi.event.Fabric3EventListener;
import org.fabric3.spi.xml.XMLFactory;

/**
 * Replays the domain journal when the controller synchronizes with the domain.
 * 

* The domain journal records the state of the domain as composites are included and undeployed. Replaying the journal has the affect of reinstating * the logical assembly to its prior state before the controller went offline (either as a result of a normal shutdown or system failure). */ @EagerInit public class FSDomainReplayer implements Fabric3EventListener { private static final QName CONTRIBUTION = new QName(Namespaces.F3, "contribution"); private static final QName DEPLOYABLE = new QName(Namespaces.F3, "deployable"); private EventService eventService; private FSDomainReplayMonitor monitor; private XMLInputFactory inputFactory; private File domainLog; private Domain domain; public FSDomainReplayer(@Reference(name = "domain") Domain domain, @Reference XMLFactory xmlFactory, @Reference HostInfo hostInfo, @Reference EventService eventService, @Monitor FSDomainReplayMonitor monitor) { this.domain = domain; this.eventService = eventService; this.monitor = monitor; this.inputFactory = xmlFactory.newInputFactoryInstance(); domainLog = new File(hostInfo.getDataDir(), "domain.xml"); } @Init public void init() { eventService.subscribe(DomainRecover.class, this); } public void onEvent(DomainRecover event) { if (!domainLog.exists()) { return; } try { DomainJournal journal = parse(); domain.recover(journal); } catch (FileNotFoundException e) { monitor.error(e); } catch (XMLStreamException e) { monitor.error(e); } catch (DeploymentException e) { monitor.error(e); } } /** * Reads the domain journal. * * @return th list of journal entries * @throws FileNotFoundException if the journal file does not exist * @throws XMLStreamException if there is an error reading the journal */ private DomainJournal parse() throws FileNotFoundException, XMLStreamException { FileInputStream fis = new FileInputStream(domainLog); BufferedInputStream stream = new BufferedInputStream(fis); XMLStreamReader reader = inputFactory.createXMLStreamReader(stream); List contributions = new ArrayList(); Map deployables = new LinkedHashMap(); try { while (true) { switch (reader.next()) { case XMLStreamConstants.START_ELEMENT: if (DEPLOYABLE.equals(reader.getName())) { String namespace = reader.getAttributeValue(null, "namespace"); if (namespace == null) { Location location = reader.getLocation(); int line = location.getLineNumber(); int col = location.getColumnNumber(); monitor.errorMessage("Namespace attribute missing in domain journal [" + line + "," + col + "]"); continue; } String name = reader.getAttributeValue(null, "name"); if (name == null) { Location location = reader.getLocation(); int line = location.getLineNumber(); int col = location.getColumnNumber(); monitor.errorMessage("Name attribute missing in domain journal [" + line + "," + col + "]"); continue; } String plan = reader.getAttributeValue(null, "plan"); QName qName = new QName(namespace, name); deployables.put(qName, plan); } else if (CONTRIBUTION.equals(reader.getName())) { String uri = reader.getAttributeValue(null, "uri"); if (uri == null) { Location location = reader.getLocation(); int line = location.getLineNumber(); int col = location.getColumnNumber(); monitor.errorMessage("URI attribute missing in domain journal [" + line + "," + col + "]"); continue; } contributions.add(URI.create(uri)); } break; case XMLStreamConstants.END_DOCUMENT: return new DomainJournal(contributions, deployables); } } } finally { try { stream.close(); } catch (IOException e) { // ignore } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy