本文整理汇总了Golang中github.com/pipeviz/pipeviz/types/system.UnifyInstructionForm.Vertex方法的典型用法代码示例。如果您正苦于以下问题:Golang UnifyInstructionForm.Vertex方法的具体用法?Golang UnifyInstructionForm.Vertex怎么用?Golang UnifyInstructionForm.Vertex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/pipeviz/pipeviz/types/system.UnifyInstructionForm
的用法示例。
在下文中一共展示了UnifyInstructionForm.Vertex方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: commitUnify
func commitUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
candidates := g.VerticesWith(q.Qbv(system.VType("commit"), "sha1", u.Vertex().Properties()["sha1"]))
if len(candidates) > 0 { // there can be only one
return candidates[0].ID
}
return 0
}
示例2: processUnify
func processUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
// only one scoping edge - the envlink
edge, success := u.ScopingSpecs()[0].(EnvLink).Resolve(g, 0, emptyVT(u.Vertex()))
if !success {
// FIXME scoping edge resolution failure does not mean no match - there could be an orphan
return 0
}
return findMatchingEnvId(g, edge, g.VerticesWith(q.Qbv(system.VType("process"), "pid", u.Vertex().Properties()["pid"])))
}
示例3: parentDatasetUnify
func parentDatasetUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
edge, success := u.ScopingSpecs()[0].(EnvLink).Resolve(g, 0, emptyVT(u.Vertex()))
if !success {
// FIXME scoping edge resolution failure does not mean no match - there could be an orphan
return 0
}
props := u.Vertex().Properties()
return findMatchingEnvId(g, edge, g.VerticesWith(q.Qbv(system.VType("parent-dataset"), "path", props["path"], "name", props["name"])))
}
示例4: envUnify
func envUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
matches := g.VerticesWith(q.Qbv(system.VType("environment")))
for _, e := range matches {
if maputil.AnyMatch(e.Vertex.Properties, u.Vertex().Properties(), "hostname", "ipv4", "ipv6") {
return e.ID
}
}
return 0
}
示例5: pkgYumUnify
func pkgYumUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
props := u.Vertex().Properties()
vtv := g.VerticesWith(q.Qbv(system.VType("pkg-yum"),
"name", props["name"],
"version", props["version"],
"arch", props["arch"],
"epoch", props["epoch"],
))
if len(vtv) > 0 {
return vtv[0].ID
}
return 0
}
示例6: datasetUnify
func datasetUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
vtv := g.VerticesWith(q.Qbv(system.VType("dataset"), "name", u.Vertex().Properties()["name"]))
if len(vtv) == 0 {
return 0
}
spec := u.ScopingSpecs()[0].(specDatasetHierarchy)
el, success := spec.Environment.Resolve(g, 0, emptyVT(u.Vertex()))
// FIXME scoping edge resolution failure does not mean no match - there could be an orphan
if success {
for _, vt := range vtv {
if id := findMatchingEnvId(g, el, g.SuccessorsWith(vt.ID, q.Qbe(system.EType("dataset-hierarchy")))); id != 0 {
return vt.ID
}
}
}
return 0
}
示例7: commUnify
func commUnify(g system.CoreGraph, u system.UnifyInstructionForm) uint64 {
// only one scoping edge - the envlink
edge, success := u.ScopingSpecs()[0].(EnvLink).Resolve(g, 0, emptyVT(u.Vertex()))
if !success {
// FIXME scoping edge resolution failure does not mean no match - there could be an orphan
return 0
}
vp := u.Vertex().Properties()
typ, _ := vp["type"]
path, haspath := vp["path"]
if haspath {
return findMatchingEnvId(g, edge, g.VerticesWith(q.Qbv(system.VType("comm"),
"type", typ,
"path", path)))
} else {
port, _ := vp["port"]
return findMatchingEnvId(g, edge, g.VerticesWith(q.Qbv(system.VType("comm"),
"type", typ,
"port", port)))
}
}