/*- ******************************************************************************* * Copyright (c) 2015 Diamond Light Source Ltd. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * This file was auto-generated from the NXDL XML definition. * Generated at: 2016-09-28T15:24:10.531+01:00 *******************************************************************************/ package org.eclipse.dawnsci.nexus.validation; import static org.eclipse.dawnsci.nexus.validation.NexusDataType.*; import static org.eclipse.dawnsci.nexus.validation.NexusUnitCategory.*; import java.util.Map; import org.eclipse.january.dataset.IDataset; import org.eclipse.dawnsci.analysis.api.tree.Attribute; import org.eclipse.dawnsci.nexus.NXroot; import org.eclipse.dawnsci.nexus.NXsubentry; import org.eclipse.dawnsci.nexus.NXentry; import org.eclipse.dawnsci.nexus.NXinstrument; import org.eclipse.dawnsci.nexus.NXsource; import org.eclipse.dawnsci.nexus.NXmonochromator; import org.eclipse.dawnsci.nexus.NXdetector; import org.eclipse.dawnsci.nexus.NXsample; import org.eclipse.dawnsci.nexus.NXmonitor; import org.eclipse.dawnsci.nexus.NXdata; /** * Validator for the application definition 'NXxas'. */ public class NXxasValidator extends AbstractNexusValidator implements NexusApplicationValidator { @Override public void validate(NXroot root) throws NexusValidationException { // validate unnamed child group of type NXentry (possibly multiple) final Map<String, NXentry> allEntry = root.getAllEntry(); for (final NXentry entry : allEntry.values()) { validateGroup_NXentry(entry); } } @Override public void validate(NXentry entry) throws NexusValidationException { validateGroup_NXentry(entry); } @Override public void validate(NXsubentry subentry) throws NexusValidationException { validateGroup_NXentry(subentry); } /** * Validate unnamed group of type NXentry. */ private void validateGroup_NXentry(final NXsubentry group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull(null, NXentry.class, group); // validate attribute 'entry' final Attribute entry_attr = group.getAttribute("entry"); validateAttributeNotNull("entry", entry_attr); // validate field 'title' of unknown type. final IDataset title = group.getTitle(); validateFieldNotNull("title", title); // validate field 'start_time' of type NX_DATE_TIME. final IDataset start_time = group.getStart_time(); validateFieldNotNull("start_time", start_time); validateFieldType("start_time", start_time, NX_DATE_TIME); // validate field 'definition' of unknown type. final IDataset definition = group.getDefinition(); validateFieldNotNull("definition", definition); validateFieldEnumeration("definition", definition, "NXxas"); // validate unnamed child group of type NXinstrument (possibly multiple) final Map<String, NXinstrument> allInstrument = group.getAllInstrument(); for (final NXinstrument instrument : allInstrument.values()) { validateGroup_NXentry_NXinstrument(instrument); } // validate unnamed child group of type NXsample (possibly multiple) final Map<String, NXsample> allSample = group.getAllSample(); for (final NXsample sample : allSample.values()) { validateGroup_NXentry_NXsample(sample); } // validate unnamed child group of type NXmonitor (possibly multiple) final Map<String, NXmonitor> allMonitor = group.getAllMonitor(); for (final NXmonitor monitor : allMonitor.values()) { validateGroup_NXentry_NXmonitor(monitor); } // validate unnamed child group of type NXdata (possibly multiple) final Map<String, NXdata> allData = group.getAllData(); for (final NXdata data : allData.values()) { validateGroup_NXentry_NXdata(data); } } /** * Validate unnamed group of type NXinstrument. */ private void validateGroup_NXentry_NXinstrument(final NXinstrument group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull(null, NXinstrument.class, group); // validate unnamed child group of type NXsource (possibly multiple) final Map<String, NXsource> allSource = group.getAllSource(); for (final NXsource source : allSource.values()) { validateGroup_NXentry_NXinstrument_NXsource(source); } // validate child group 'monochromator' of type NXmonochromator validateGroup_NXentry_NXinstrument_monochromator(group.getMonochromator()); // validate child group 'incoming_beam' of type NXdetector validateGroup_NXentry_NXinstrument_incoming_beam(group.getDetector()); // validate child group 'absorbed_beam' of type NXdetector validateGroup_NXentry_NXinstrument_absorbed_beam(group.getDetector()); } /** * Validate unnamed group of type NXsource. */ private void validateGroup_NXentry_NXinstrument_NXsource(final NXsource group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull(null, NXsource.class, group); // validate field 'type' of unknown type. final IDataset type = group.getType(); validateFieldNotNull("type", type); validateFieldEnumeration("type", type, "Spallation Neutron Source", "Pulsed Reactor Neutron Source", "Reactor Neutron Source", "Synchrotron X-ray Source", "Pulsed Muon Source", "Rotating Anode X-ray", "Fixed Tube X-ray", "UV Laser", "Free-Electron Laser", "Optical Laser", "Ion Source", "UV Plasma Source"); // validate field 'name' of unknown type. final IDataset name = group.getName(); validateFieldNotNull("name", name); // validate field 'probe' of unknown type. final IDataset probe = group.getProbe(); validateFieldNotNull("probe", probe); validateFieldEnumeration("probe", probe, "x-ray"); } /** * Validate group 'monochromator' of type NXmonochromator. */ private void validateGroup_NXentry_NXinstrument_monochromator(final NXmonochromator group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull("monochromator", NXmonochromator.class, group); // validate field 'energy' of type NX_FLOAT. final IDataset energy = group.getEnergy(); validateFieldNotNull("energy", energy); validateFieldType("energy", energy, NX_FLOAT); validateFieldUnits("energy", energy, NX_ENERGY); validateFieldRank("energy", energy, 1); validateFieldDimensions("energy", energy, null, "np"); } /** * Validate group 'incoming_beam' of type NXdetector. */ private void validateGroup_NXentry_NXinstrument_incoming_beam(final NXdetector group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull("incoming_beam", NXdetector.class, group); clearLocalGroupDimensionPlaceholderValues(); // validate field 'data' of type NX_INT. final IDataset data = group.getData(); validateFieldNotNull("data", data); validateFieldType("data", data, NX_INT); validateFieldUnits("data", data, NX_ANY); validateFieldRank("data", data, 1); validateFieldDimensions("data", data, null, "np"); } /** * Validate group 'absorbed_beam' of type NXdetector. */ private void validateGroup_NXentry_NXinstrument_absorbed_beam(final NXdetector group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull("absorbed_beam", NXdetector.class, group); clearLocalGroupDimensionPlaceholderValues(); // validate field 'data' of type NX_INT. final IDataset data = group.getData(); validateFieldNotNull("data", data); validateFieldType("data", data, NX_INT); validateFieldUnits("data", data, NX_ANY); validateFieldRank("data", data, 1); validateFieldDimensions("data", data, null, "np"); } /** * Validate unnamed group of type NXsample. */ private void validateGroup_NXentry_NXsample(final NXsample group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull(null, NXsample.class, group); clearLocalGroupDimensionPlaceholderValues(); // validate field 'name' of unknown type. final IDataset name = group.getName(); validateFieldNotNull("name", name); } /** * Validate unnamed group of type NXmonitor. */ private void validateGroup_NXentry_NXmonitor(final NXmonitor group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull(null, NXmonitor.class, group); clearLocalGroupDimensionPlaceholderValues(); // validate field 'mode' of unknown type. final IDataset mode = group.getMode(); validateFieldNotNull("mode", mode); validateFieldEnumeration("mode", mode, "monitor", "timer"); // validate field 'preset' of type NX_FLOAT. final IDataset preset = group.getPreset(); validateFieldNotNull("preset", preset); validateFieldType("preset", preset, NX_FLOAT); validateFieldUnits("preset", preset, NX_ANY); // validate field 'data' of type NX_INT. final IDataset data = group.getData(); validateFieldNotNull("data", data); validateFieldType("data", data, NX_INT); validateFieldUnits("data", data, NX_ANY); validateFieldRank("data", data, 1); validateFieldDimensions("data", data, null, "np"); } /** * Validate unnamed group of type NXdata. */ private void validateGroup_NXentry_NXdata(final NXdata group) throws NexusValidationException { // validate that the group is not null validateGroupNotNull(null, NXdata.class, group); clearLocalGroupDimensionPlaceholderValues(); } }