use of com.linkedin.restli.restspec.ServiceErrorsSchema in project rest.li by linkedin.
the class SnapshotGenerator method findErrorDetailTypeModels.
/**
* For a given record that includes the {@link ServiceErrorsSchema} record, keep track of all referenced
* error detail type models.
*
* @param schema record that includes the {@link ServiceErrorsSchema}
* @param foundTypes running mapping of found data schemas
* @param typeOrder running, ordered list of found data schemas
*/
private void findErrorDetailTypeModels(RecordTemplate schema, Map<String, NamedDataSchema> foundTypes, List<NamedDataSchema> typeOrder) {
// Wrap the underlying data map in the shared schema interface
final ServiceErrorsSchema serviceErrorsSchema = new ServiceErrorsSchema(schema.data());
// For each service error, inspect its error detail type field and keep track of all referenced types
final ServiceErrorSchemaArray serviceErrorSchemaArray = serviceErrorsSchema.getServiceErrors();
if (serviceErrorSchemaArray != null) {
for (ServiceErrorSchema serviceErrorSchema : serviceErrorSchemaArray) {
if (serviceErrorSchema.hasErrorDetailType()) {
recordType(serviceErrorSchema.getErrorDetailType(), foundTypes, typeOrder);
}
}
}
}
use of com.linkedin.restli.restspec.ServiceErrorsSchema in project rest.li by linkedin.
the class ServiceErrorGatheringVisitor method checkServiceErrors.
/**
* Given a record which includes {@link ServiceErrorsSchema}, collects all the defined service errors and returns
* true if any service errors are encountered.
*
* @param record record which includes {@link ServiceErrorsSchema}
* @param isResourceLevel true if checking from the context of a resource
* @return true if any service error is encountered
*/
private boolean checkServiceErrors(RecordTemplate record, boolean isResourceLevel) {
final ServiceErrorsSchema serviceErrorsSchema = new ServiceErrorsSchema(record.data());
if (serviceErrorsSchema.hasServiceErrors()) {
final Map<String, ServiceErrorSchema> serviceErrorMap = serviceErrorsSchema.getServiceErrors().stream().collect(Collectors.toMap(ServiceErrorSchema::getCode, Function.identity()));
_serviceErrors.putAll(serviceErrorMap);
if (isResourceLevel) {
_resourceLevelServiceErrors.putAll(serviceErrorMap);
}
return true;
}
return false;
}
use of com.linkedin.restli.restspec.ServiceErrorsSchema in project rest.li by linkedin.
the class RestLiResourceRelationship method findDataModels.
private void findDataModels() {
final ResourceSchemaVisitior visitor = new BaseResourceSchemaVisitor() {
@Override
public void visitResourceSchema(VisitContext visitContext, ResourceSchema resourceSchema) {
final String schema = resourceSchema.getSchema();
// ActionSet resources do not have a schema
if (schema != null) {
final NamedDataSchema schemaSchema = extractSchema(schema);
if (schemaSchema != null) {
connectSchemaToResource(visitContext, schemaSchema);
}
}
}
@Override
public void visitCollectionResource(VisitContext visitContext, CollectionSchema collectionSchema) {
connectErrorDetailTypeToResource(visitContext, collectionSchema);
final IdentifierSchema id = collectionSchema.getIdentifier();
final NamedDataSchema typeSchema = extractSchema(id.getType());
if (typeSchema != null) {
connectSchemaToResource(visitContext, typeSchema);
}
final String params = id.getParams();
if (params != null) {
final NamedDataSchema paramsSchema = extractSchema(params);
if (paramsSchema != null) {
connectSchemaToResource(visitContext, paramsSchema);
}
}
}
@Override
public void visitAssociationResource(VisitContext visitContext, AssociationSchema associationSchema) {
connectErrorDetailTypeToResource(visitContext, associationSchema);
for (AssocKeySchema key : associationSchema.getAssocKeys()) {
final NamedDataSchema keyTypeSchema = extractSchema(key.getType());
if (keyTypeSchema != null) {
connectSchemaToResource(visitContext, keyTypeSchema);
}
}
}
@Override
public void visitSimpleResource(VisitContext visitContext, SimpleSchema simpleSchema) {
connectErrorDetailTypeToResource(visitContext, simpleSchema);
}
@Override
public void visitActionSetResource(VisitContext visitContext, ActionsSetSchema actionSetSchema) {
connectErrorDetailTypeToResource(visitContext, actionSetSchema);
}
@Override
public void visitParameter(VisitContext visitContext, RecordTemplate parentResource, Object parentMethodSchema, ParameterSchema parameterSchema) {
String parameterTypeString = parameterSchema.getType();
if (// the parameter type field contains a inline schema, so we traverse into it
isInlineSchema(parameterTypeString)) {
visitInlineSchema(visitContext, parameterTypeString);
} else {
final NamedDataSchema schema;
// grab the schema name from it
if (parameterSchema.hasItems()) {
schema = extractSchema(parameterSchema.getItems());
} else // the only remaining possibility is that the type field contains the name of a data schema
{
schema = extractSchema(parameterTypeString);
}
if (schema != null) {
connectSchemaToResource(visitContext, schema);
}
}
}
@Override
public void visitRestMethod(VisitContext visitContext, RecordTemplate parentResource, RestMethodSchema restMethodSchema) {
connectErrorDetailTypeToResource(visitContext, restMethodSchema);
}
@Override
public void visitFinder(VisitContext visitContext, RecordTemplate parentResource, FinderSchema finderSchema) {
connectErrorDetailTypeToResource(visitContext, finderSchema);
final MetadataSchema metadata = finderSchema.getMetadata();
if (metadata != null) {
final NamedDataSchema metadataTypeSchema = extractSchema(metadata.getType());
if (metadataTypeSchema != null) {
connectSchemaToResource(visitContext, metadataTypeSchema);
}
}
}
@Override
public void visitBatchFinder(VisitContext visitContext, RecordTemplate parentResource, BatchFinderSchema batchFinderSchema) {
connectErrorDetailTypeToResource(visitContext, batchFinderSchema);
final MetadataSchema metadata = batchFinderSchema.getMetadata();
if (metadata != null) {
final NamedDataSchema metadataTypeSchema = extractSchema(metadata.getType());
if (metadataTypeSchema != null) {
connectSchemaToResource(visitContext, metadataTypeSchema);
}
}
}
@Override
public void visitAction(VisitContext visitContext, RecordTemplate parentResource, ResourceLevel resourceLevel, ActionSchema actionSchema) {
connectErrorDetailTypeToResource(visitContext, actionSchema);
final String returns = actionSchema.getReturns();
if (returns != null) {
if (// the parameter type field contains a inline schema, so we traverse into it
isInlineSchema(returns)) {
visitInlineSchema(visitContext, returns);
} else // otherwise the type field contains the name of a data schema
{
final NamedDataSchema returnsSchema = extractSchema(returns);
if (returnsSchema != null) {
connectSchemaToResource(visitContext, returnsSchema);
}
}
}
final StringArray throwsArray = actionSchema.getThrows();
if (throwsArray != null) {
for (String errorName : throwsArray) {
final NamedDataSchema errorSchema = extractSchema(errorName);
if (errorSchema != null) {
connectSchemaToResource(visitContext, errorSchema);
}
}
}
}
private boolean isInlineSchema(String schemaString) {
return schemaString.startsWith("{");
}
private void visitInlineSchema(VisitContext visitContext, String schemaString) {
DataSchema schema = DataTemplateUtil.parseSchema(schemaString, _schemaResolver, SchemaFormatType.PDSC);
if (schema instanceof ArrayDataSchema) {
DataSchema itemSchema = ((ArrayDataSchema) schema).getItems();
if (itemSchema instanceof NamedDataSchema) {
connectSchemaToResource(visitContext, (NamedDataSchema) itemSchema);
}
}
if (schema instanceof MapDataSchema) {
DataSchema valueSchema = ((MapDataSchema) schema).getValues();
if (valueSchema instanceof NamedDataSchema) {
connectSchemaToResource(visitContext, (NamedDataSchema) valueSchema);
}
}
}
private void connectSchemaToResource(VisitContext visitContext, final NamedDataSchema schema) {
final Node<NamedDataSchema> schemaNode = _relationships.get(schema);
_dataModels.put(schema.getFullName(), schema);
final DataSchemaTraverse traveler = new DataSchemaTraverse();
traveler.traverse(schema, (path, nestedSchema) -> {
if (nestedSchema instanceof RecordDataSchema && nestedSchema != schema) {
final RecordDataSchema nestedRecordSchema = (RecordDataSchema) nestedSchema;
_dataModels.put(nestedRecordSchema.getFullName(), nestedRecordSchema);
final Node<RecordDataSchema> node = _relationships.get(nestedRecordSchema);
schemaNode.addAdjacentNode(node);
}
});
final Node<ResourceSchema> resourceNode = _relationships.get(visitContext.getParentSchema());
resourceNode.addAdjacentNode(schemaNode);
schemaNode.addAdjacentNode(resourceNode);
}
/**
* Given a record which includes {@link ServiceErrorsSchema}, scans for service errors and connects the error
* detail type field (if any) to the resource.
*
* @param visitContext visit context
* @param record record which includes {@link ServiceErrorsSchema}
*/
private void connectErrorDetailTypeToResource(VisitContext visitContext, RecordTemplate record) {
final ServiceErrorsSchema serviceErrorsSchema = new ServiceErrorsSchema(record.data());
if (serviceErrorsSchema.getServiceErrors() != null) {
for (ServiceErrorSchema serviceErrorSchema : serviceErrorsSchema.getServiceErrors()) {
if (serviceErrorSchema.hasErrorDetailType()) {
final NamedDataSchema errorDetailTypeSchema = extractSchema(serviceErrorSchema.getErrorDetailType());
if (errorDetailTypeSchema != null) {
connectSchemaToResource(visitContext, errorDetailTypeSchema);
}
}
}
}
}
};
ResourceSchemaCollection.visitResources(_resourceSchemas.getResources().values(), visitor);
}
use of com.linkedin.restli.restspec.ServiceErrorsSchema in project rest.li by linkedin.
the class ResourceModelEncoder method appendServiceErrors.
/**
* Given a resource schema or resource method schema, adds the specified service errors.
*
* @param schema specific resource schema or a specific resource method schema
* @param serviceErrors list of service errors to add to this schema
*/
private void appendServiceErrors(final RecordTemplate schema, final List<ServiceError> serviceErrors) {
if (serviceErrors == null) {
return;
}
// Wrap the underlying data map in the shared schema interface
ServiceErrorsSchema serviceErrorsSchema = new ServiceErrorsSchema(schema.data());
// Build the service error schema array
ServiceErrorSchemaArray serviceErrorSchemas = buildServiceErrors(serviceErrors);
serviceErrorsSchema.setServiceErrors(serviceErrorSchemas);
}
Aggregations