Example #1
0
// Print the parameters
func (req *ArchiveRequest) Dump() {
	fmt.Printf("PublishedBy: %s\n", req.FromVK)
	fmt.Printf("Archiving: %s\n", req.URI)
	if req.PO > 0 {
		fmt.Printf("Extracting PO: %s\n", bw.PONumDotForm(req.PO))
	} else {
		fmt.Printf("Extracts all POs\n")
	}
	if req.uuidActual != "" {
		fmt.Printf("Stream UUID: %s\n", req.uuidActual)
	} else {
		fmt.Printf("UUID Expression: %s\n", req.UUID)
	}

	fmt.Printf("Value Expr: %s\n", req.Value)

	if req.Time != "" {
		fmt.Printf("Time Expr: %s\n", req.Time)
		fmt.Printf("Parse Time: %s\n", req.TimeParse)
	} else {
		fmt.Printf("Using server timestamps\n")
	}

	fmt.Println("Metadata:")
	if req.InheritMetadata {
		fmt.Println("Inheriting metadata from URI prefixes")
	}
	if len(req.MetadataURIs) > 0 {
		for _, uri := range req.MetadataURIs {
			fmt.Printf(" Metadata from URI %s\n", uri)
		}
	}
	if req.MetadataBlock != "" {
		fmt.Printf(" Metadata block uri: %s\n", req.MetadataBlock)
	}
	if req.MetadataExpr != "" {
		fmt.Printf(" Metadata Expr: %s\n", req.MetadataExpr)
	}
}
Example #2
0
// Creates a hash of this object that is unique to its parameters. We will use the URI, PO, UUID and Value
func (req *ArchiveRequest) Hash() string {
	return req.URI + bw.PONumDotForm(req.PO) + req.UUID + req.Value
}