Class TraceFile

    • Method Detail

      • fromNode

        public static TraceFile fromNode​(Node value)
        Converts ObjectNode into TraceFile.
        Parameters:
        value - an ObjectNode that represents the entire trace file.
        Returns:
        TraceFile produced from an ObjectNode.
      • toNode

        public ObjectNode toNode()
        Converts TraceFile instance variables into an ObjectNode.
        Specified by:
        toNode in interface ToNode
        Returns:
        ObjectNode representation of a TraceFile.
      • validateModel

        public void validateModel​(Model model)
        Parses model and determines whether the trace file object meets the specs of the model by checking if the trace file contains all the ShapeIds in the model and the model contains all the ShapeIDs in the trace file.
        Parameters:
        model - the Smithy model to validate the trace file against.
        Throws:
        ExpectationNotMetException - if model contains a ShapeID not in TraceFile or TraceFile contains a ShapeID not in model.
      • getSmithyTrace

        public java.lang.String getSmithyTrace()
        Gets this TraceFile's smithyTrace. The smithyTrace String contains the Smithy trace file version number.
        Returns:
        a String representing trace file ID.
      • getMetadata

        public TraceMetadata getMetadata()
        Gets this TraceFile's TraceMetadata.
        Returns:
        a TraceMetadata object.
      • getArtifactDefinitions

        public java.util.Optional<ArtifactDefinitions> getArtifactDefinitions()
        Gets this TraceFile's Definitions.
        Returns:
        an Optional Definitions container that contains this TraceFile's Definition or isEmpty if Definition's has not been set.
      • getShapes

        public java.util.Map<ShapeId,​java.util.List<ShapeLink>> getShapes()
        Gets this TraceFile's Shapes map. The shapes Map provides a mapping of absolute Smithy shape IDs to a list of shape link objects. A single Smithy shape can be responsible for generating multiple components in the target artifact.
        Returns:
        a Map from ShapeIDs to a list of ShapeLink's that represents the contents of the shapes tag in the trace file.