use of org.jboss.galleon.spec.FeatureAnnotation in project galleon by wildfly.
the class FeatureSpecXmlWriter method toElement.
protected ElementNode toElement(FeatureSpec featureSpec) {
final ElementNode specE = addElement(null, Element.FEATURE_SPEC);
addAttribute(specE, Attribute.NAME, featureSpec.getName());
if (featureSpec.hasAnnotations()) {
for (FeatureAnnotation fa : featureSpec.getAnnotations()) {
final ElementNode annotationE = addElement(specE, Element.ANNOTATION);
addAttribute(annotationE, Attribute.NAME, fa.getName());
if (fa.hasElements()) {
for (Map.Entry<String, String> entry : fa.getElements().entrySet()) {
final ElementNode elemE = addElement(annotationE, Element.ELEM);
addAttribute(elemE, Attribute.NAME, entry.getKey());
if (entry.getValue() != null) {
addAttribute(elemE, Attribute.VALUE, entry.getValue());
}
}
}
}
}
if (featureSpec.providesCapabilities()) {
writeCaps(addElement(specE, Element.PROVIDES), featureSpec.getProvidedCapabilities());
}
if (featureSpec.requiresCapabilities()) {
writeCaps(addElement(specE, Element.REQUIRES), featureSpec.getRequiredCapabilities());
}
if (featureSpec.hasFeatureDeps()) {
final ElementNode depsE = addElement(specE, Element.DEPENDENCIES);
for (FeatureDependencySpec dep : featureSpec.getFeatureDeps()) {
final ElementNode depE = addElement(depsE, Element.DEPENDENCY);
addAttribute(depE, Attribute.FEATURE_ID, dep.getFeatureId().toString());
if (dep.getOrigin() != null) {
addAttribute(depE, Attribute.DEPENDENCY, dep.getOrigin());
}
if (dep.isInclude()) {
addAttribute(depE, Attribute.INCLUDE, TRUE);
}
}
}
if (featureSpec.hasFeatureRefs()) {
final ElementNode refsE = addElement(specE, Element.REFERENCES);
for (FeatureReferenceSpec ref : featureSpec.getFeatureRefs()) {
final ElementNode refE = addElement(refsE, Element.REFERENCE);
final String feature = ref.getFeature().toString();
if (ref.getOrigin() != null) {
addAttribute(refE, Attribute.DEPENDENCY, ref.getOrigin());
}
addAttribute(refE, Attribute.FEATURE, feature);
if (!feature.equals(ref.getName())) {
addAttribute(refE, Attribute.NAME, ref.getName());
}
if (ref.isNillable()) {
addAttribute(refE, Attribute.NILLABLE, TRUE);
}
if (ref.isInclude()) {
addAttribute(refE, Attribute.INCLUDE, TRUE);
}
for (Map.Entry<String, String> mapping : ref.getMappedParams().entrySet()) {
final ElementNode paramE = addElement(refE, Element.PARAMETER);
addAttribute(paramE, Attribute.NAME, mapping.getKey());
addAttribute(paramE, Attribute.MAPS_TO, mapping.getValue());
}
}
}
if (featureSpec.hasParams()) {
final ElementNode paramsE = addElement(specE, Element.PARAMETERS);
for (FeatureParameterSpec paramSpec : featureSpec.getParams().values()) {
final ElementNode paramE = addElement(paramsE, Element.PARAMETER);
addAttribute(paramE, Attribute.NAME, paramSpec.getName());
if (paramSpec.isFeatureId()) {
addAttribute(paramE, Attribute.FEATURE_ID, TRUE);
} else if (paramSpec.isNillable()) {
addAttribute(paramE, Attribute.NILLABLE, TRUE);
}
if (paramSpec.hasDefaultValue()) {
addAttribute(paramE, Attribute.DEFAULT, paramSpec.getDefaultValue());
}
if (paramSpec.getType() != null && !Constants.BUILT_IN_TYPE_STRING.equals(paramSpec.getType())) {
addAttribute(paramE, Attribute.TYPE, paramSpec.getType());
}
}
}
if (featureSpec.hasPackageDeps()) {
PackageXmlWriter.writePackageDeps(featureSpec, addElement(specE, Element.PACKAGES));
}
return specE;
}
use of org.jboss.galleon.spec.FeatureAnnotation in project galleon by wildfly.
the class StateInfoUtil method displayFeatureSpec.
private static void displayFeatureSpec(PmCommandInvocation session, Group grp) throws IOException {
FeatureSpecInfo f = grp.getSpec();
session.println("");
session.println("Feature type : " + f.getSpecId().getName());
session.println("Feature origin : " + f.getSpecId().getProducer());
session.println("Feature description: " + f.getDescription());
if (!f.isEnabled()) {
session.println("WARNING! The feature is not enabled.");
session.println("Missing packages");
for (Identity m : f.getMissingPackages()) {
session.println(m.toString());
}
}
List<FeatureParameterSpec> idparams = f.getSpec().getIdParams();
String tab = " ";
session.println(Config.getLineSeparator() + "Feature Id parameters");
if (idparams.isEmpty()) {
session.println("NONE");
} else {
for (FeatureParameterSpec param : idparams) {
StringBuilder builder = new StringBuilder();
builder.append(tab + param.getName()).append(Config.getLineSeparator());
builder.append(tab + tab + "description : " + "no description available").append(Config.getLineSeparator());
builder.append(tab + tab + "type : " + param.getType()).append(Config.getLineSeparator());
builder.append(tab + tab + "default-value: " + param.getDefaultValue()).append(Config.getLineSeparator());
builder.append(tab + tab + "nillable : " + param.isNillable()).append(Config.getLineSeparator());
session.print(builder.toString());
}
}
// Add spec parameters
session.println(Config.getLineSeparator() + "Feature parameters");
Map<String, FeatureParameterSpec> params = f.getSpec().getParams();
if (params.isEmpty()) {
session.println("NONE");
} else {
for (Entry<String, FeatureParameterSpec> entry : params.entrySet()) {
FeatureParameterSpec param = entry.getValue();
if (!param.isFeatureId()) {
StringBuilder builder = new StringBuilder();
builder.append(tab + param.getName()).append(Config.getLineSeparator());
builder.append(tab + tab + "description : " + "no description available").append(Config.getLineSeparator());
builder.append(tab + tab + "type : " + param.getType()).append(Config.getLineSeparator());
builder.append(tab + tab + "default-value: " + param.getDefaultValue()).append(Config.getLineSeparator());
builder.append(tab + tab + "nillable : " + param.isNillable()).append(Config.getLineSeparator());
session.println(builder.toString());
}
}
}
session.println(Config.getLineSeparator() + "Packages");
if (f.getPackages().isEmpty()) {
session.println(tab + "NONE");
} else {
for (PackageInfo p : f.getPackages()) {
session.println(p.getIdentity().toString());
}
}
session.println(Config.getLineSeparator() + "Provided capabilities");
if (f.getSpec().getProvidedCapabilities().isEmpty()) {
session.println(tab + "NONE");
} else {
for (CapabilitySpec c : f.getSpec().getProvidedCapabilities()) {
session.println(tab + c.toString());
}
}
session.println(Config.getLineSeparator() + "Consumed capabilities");
if (f.getSpec().getRequiredCapabilities().isEmpty()) {
session.println(tab + "NONE");
} else {
for (CapabilitySpec c : f.getSpec().getRequiredCapabilities()) {
session.println(tab + c.toString());
}
}
session.println(Config.getLineSeparator() + "Features dependencies");
if (f.getSpec().getFeatureDeps().isEmpty()) {
session.println(tab + "NONE");
} else {
for (FeatureDependencySpec c : f.getSpec().getFeatureDeps()) {
session.println(tab + c.getFeatureId().toString());
}
}
session.println(Config.getLineSeparator() + "Features references");
if (f.getSpec().getFeatureRefs().isEmpty()) {
session.println(tab + "NONE");
} else {
for (FeatureReferenceSpec c : f.getSpec().getFeatureRefs()) {
session.println(tab + c.getFeature());
}
}
session.println(Config.getLineSeparator() + "Features Annotations");
if (f.getSpec().getAnnotations().isEmpty()) {
session.println(tab + "NONE");
} else {
for (FeatureAnnotation c : f.getSpec().getAnnotations()) {
session.println(tab + c.toString());
}
}
}
use of org.jboss.galleon.spec.FeatureAnnotation in project galleon by wildfly.
the class FeatureSpecXmlParser10 method parseAnnotation.
private void parseAnnotation(XMLExtendedStreamReader reader, FeatureSpec.Builder builder) throws XMLStreamException {
String name = null;
for (int i = 0; i < reader.getAttributeCount(); i++) {
final Attribute attribute = Attribute.of(reader.getAttributeName(i));
switch(attribute) {
case NAME:
name = reader.getAttributeValue(i);
break;
default:
throw ParsingUtils.unexpectedAttribute(reader, i);
}
}
if (name == null) {
throw ParsingUtils.missingAttributes(reader.getLocation(), Collections.singleton(Attribute.NAME));
}
final FeatureAnnotation fa = new FeatureAnnotation(name);
while (reader.hasNext()) {
switch(reader.nextTag()) {
case XMLStreamConstants.END_ELEMENT:
{
builder.addAnnotation(fa);
return;
}
case XMLStreamConstants.START_ELEMENT:
{
final Element element = Element.of(reader.getName());
switch(element) {
case ELEM:
parseAnnotationElem(reader, fa);
break;
default:
throw ParsingUtils.unexpectedContent(reader);
}
break;
}
default:
{
throw ParsingUtils.unexpectedContent(reader);
}
}
}
throw ParsingUtils.endOfDocument(reader.getLocation());
}
Aggregations