func setOne(t fdb.Transactor, key []byte, value []byte) { fmt.Printf("setOne got: %T\n", t) t.Transact(func(tr fdb.Transaction) (interface{}, error) { // We don't actually call tr.Set here to avoid mutating a real database. // tr.Set(key, value) return nil, nil }) }
func setMany(t fdb.Transactor, value []byte, keys ...[]byte) { fmt.Printf("setMany got: %T\n", t) t.Transact(func(tr fdb.Transaction) (interface{}, error) { for _, key := range keys { setOne(tr, key, value) } return nil, nil }) }
func (sm *StackMachine) executeMutation(t fdb.Transactor, f func(fdb.Transaction) (interface{}, error), isDB bool, idx int) { _, e := t.Transact(f) if e != nil { panic(e) } if isDB { sm.store(idx, []byte("RESULT_NOT_PRESENT")) } }
func (dl directoryLayer) Move(t fdb.Transactor, oldPath []string, newPath []string) (DirectorySubspace, error) { r, e := t.Transact(func(tr fdb.Transaction) (interface{}, error) { if e := dl.checkVersion(tr, &tr); e != nil { return nil, e } sliceEnd := len(oldPath) if sliceEnd > len(newPath) { sliceEnd = len(newPath) } if stringsEqual(oldPath, newPath[:sliceEnd]) { return nil, errors.New("the destination directory cannot be a subdirectory of the source directory") } oldNode := dl.find(tr, oldPath).prefetchMetadata(tr) newNode := dl.find(tr, newPath).prefetchMetadata(tr) if !oldNode.exists() { return nil, errors.New("the source directory does not exist") } if oldNode.isInPartition(nil, false) || newNode.isInPartition(nil, false) { if !oldNode.isInPartition(nil, false) || !newNode.isInPartition(nil, false) || !stringsEqual(oldNode.path, newNode.path) { return nil, errors.New("cannot move between partitions") } nnc, e := newNode.getContents(dl, nil) if e != nil { return nil, e } return nnc.Move(tr, oldNode.getPartitionSubpath(), newNode.getPartitionSubpath()) } if newNode.exists() { return nil, errors.New("the destination directory already exists. Remove it first") } parentNode := dl.find(tr, newPath[:len(newPath)-1]) if !parentNode.exists() { return nil, errors.New("the parent of the destination directory does not exist. Create it first") } p, e := dl.nodeSS.Unpack(oldNode.subspace) if e != nil { return nil, e } tr.Set(parentNode.subspace.Sub(_SUBDIRS, newPath[len(newPath)-1]), p[0].([]byte)) dl.removeFromParent(tr, oldPath) return dl.contentsOfNode(oldNode.subspace, newPath, oldNode._layer.MustGet()) }) if e != nil { return nil, e } return r.(DirectorySubspace), nil }
func (dl directoryLayer) Create(t fdb.Transactor, path []string, layer []byte) (DirectorySubspace, error) { r, e := t.Transact(func(tr fdb.Transaction) (interface{}, error) { return dl.createOrOpen(tr, &tr, path, layer, nil, true, false) }) if e != nil { return nil, e } return r.(DirectorySubspace), nil }
func (dl directoryLayer) Remove(t fdb.Transactor, path []string) (bool, error) { r, e := t.Transact(func(tr fdb.Transaction) (interface{}, error) { if e := dl.checkVersion(tr, &tr); e != nil { return false, e } if len(path) == 0 { return false, errors.New("the root directory cannot be removed") } node := dl.find(tr, path).prefetchMetadata(tr) if !node.exists() { return false, nil } if node.isInPartition(nil, false) { nc, e := node.getContents(dl, nil) if e != nil { return false, e } return nc.(directoryPartition).Remove(tr, node.getPartitionSubpath()) } if e := dl.removeRecursive(tr, node.subspace); e != nil { return false, e } dl.removeFromParent(tr, path) return true, nil }) if e != nil { return false, e } return r.(bool), nil }
func (de *DirectoryExtension) processOp(sm *StackMachine, op string, isDB bool, idx int, t fdb.Transactor, rt fdb.ReadTransactor) { defer func() { if r := recover(); r != nil { sm.store(idx, []byte("DIRECTORY_ERROR")) if createOps[op] { de.store(nil) } } }() var e error switch { case op == "CREATE_SUBSPACE": tuples := sm.popTuples(1) rp := sm.waitAndPop().item.([]byte) s := subspace.FromBytes(rp).Sub(tuples[0]...) de.store(s) case op == "CREATE_LAYER": idx1 := sm.waitAndPop().item.(int64) idx2 := sm.waitAndPop().item.(int64) amp := sm.waitAndPop().item.(int64) nodeSS := de.list[idx1] contentSS := de.list[idx2] if nodeSS == nil || contentSS == nil { de.store(nil) } else { de.store(directory.NewDirectoryLayer(nodeSS.(subspace.Subspace), contentSS.(subspace.Subspace), (amp == int64(1)))) } case op == "CREATE_OR_OPEN": tuples := sm.popTuples(1) l := sm.waitAndPop().item var layer []byte if l != nil { layer = l.([]byte) } d, e := de.cwd().CreateOrOpen(t, tupleToPath(tuples[0]), layer) if e != nil { panic(e) } de.store(d) case op == "CREATE": tuples := sm.popTuples(1) l := sm.waitAndPop().item var layer []byte if l != nil { layer = l.([]byte) } p := sm.waitAndPop().item var d directory.Directory if p == nil { d, e = de.cwd().Create(t, tupleToPath(tuples[0]), layer) } else { // p.([]byte) itself may be nil, but CreatePrefix handles that appropriately d, e = de.cwd().CreatePrefix(t, tupleToPath(tuples[0]), layer, p.([]byte)) } if e != nil { panic(e) } de.store(d) case op == "OPEN": tuples := sm.popTuples(1) l := sm.waitAndPop().item var layer []byte if l != nil { layer = l.([]byte) } d, e := de.cwd().Open(rt, tupleToPath(tuples[0]), layer) if e != nil { panic(e) } de.store(d) case op == "CHANGE": i := sm.waitAndPop().item.(int64) if de.list[i] == nil { i = de.errorIndex } de.index = i case op == "SET_ERROR_INDEX": de.errorIndex = sm.waitAndPop().item.(int64) case op == "MOVE": tuples := sm.popTuples(2) d, e := de.cwd().Move(t, tupleToPath(tuples[0]), tupleToPath(tuples[1])) if e != nil { panic(e) } de.store(d) case op == "MOVE_TO": tuples := sm.popTuples(1) d, e := de.cwd().MoveTo(t, tupleToPath(tuples[0])) if e != nil { panic(e) } de.store(d) case strings.HasPrefix(op, "REMOVE"): path := sm.maybePath() // This ***HAS*** to call Transact to ensure that any directory version // key set in the process of trying to remove this potentially // non-existent directory, in the REMOVE but not REMOVE_IF_EXISTS case, // doesn't end up committing the version key. (Other languages have // separate remove() and remove_if_exists() so don't have this tricky // issue). _, e := t.Transact(func(tr fdb.Transaction) (interface{}, error) { ok, e := de.cwd().Remove(tr, path) if e != nil { panic(e) } switch op[6:] { case "": if !ok { panic("directory does not exist") } case "_IF_EXISTS": } return nil, nil }) if e != nil { panic(e) } case op == "LIST": subs, e := de.cwd().List(rt, sm.maybePath()) if e != nil { panic(e) } t := make(tuple.Tuple, len(subs)) for i, s := range subs { t[i] = s } sm.store(idx, t.Pack()) case op == "EXISTS": b, e := de.cwd().Exists(rt, sm.maybePath()) if e != nil { panic(e) } if b { sm.store(idx, int64(1)) } else { sm.store(idx, int64(0)) } case op == "PACK_KEY": tuples := sm.popTuples(1) sm.store(idx, de.css().Pack(tuples[0])) case op == "UNPACK_KEY": t, e := de.css().Unpack(fdb.Key(sm.waitAndPop().item.([]byte))) if e != nil { panic(e) } for _, el := range t { sm.store(idx, el) } case op == "RANGE": ss := de.css().Sub(sm.popTuples(1)[0]...) bk, ek := ss.FDBRangeKeys() sm.store(idx, bk) sm.store(idx, ek) case op == "CONTAINS": k := sm.waitAndPop().item.([]byte) b := de.css().Contains(fdb.Key(k)) if b { sm.store(idx, int64(1)) } else { sm.store(idx, int64(0)) } case op == "OPEN_SUBSPACE": de.store(de.css().Sub(sm.popTuples(1)[0]...)) case op == "LOG_SUBSPACE": k := sm.waitAndPop().item.([]byte) k = append(k, tuple.Tuple{de.index}.Pack()...) v := de.css().Bytes() t.Transact(func(tr fdb.Transaction) (interface{}, error) { tr.Set(fdb.Key(k), v) return nil, nil }) case op == "LOG_DIRECTORY": rp := sm.waitAndPop().item.([]byte) ss := subspace.FromBytes(rp).Sub(de.index) k1 := ss.Pack(tuple.Tuple{"path"}) v1 := tuplePackStrings(de.cwd().GetPath()) k2 := ss.Pack(tuple.Tuple{"layer"}) v2 := tuple.Tuple{de.cwd().GetLayer()}.Pack() k3 := ss.Pack(tuple.Tuple{"exists"}) var v3 []byte exists, e := de.cwd().Exists(rt, nil) if e != nil { panic(e) } if exists { v3 = tuple.Tuple{1}.Pack() } else { v3 = tuple.Tuple{0}.Pack() } k4 := ss.Pack(tuple.Tuple{"children"}) var subs []string if exists { subs, e = de.cwd().List(rt, nil) if e != nil { panic(e) } } v4 := tuplePackStrings(subs) t.Transact(func(tr fdb.Transaction) (interface{}, error) { tr.Set(k1, v1) tr.Set(k2, v2) tr.Set(k3, v3) tr.Set(k4, v4) return nil, nil }) case op == "STRIP_PREFIX": ba := sm.waitAndPop().item.([]byte) ssb := de.css().Bytes() if !bytes.HasPrefix(ba, ssb) { panic("prefix mismatch") } ba = ba[len(ssb):] sm.store(idx, ba) } }
func (sm *StackMachine) processInst(idx int, inst tuple.Tuple) { defer func() { if r := recover(); r != nil { switch r := r.(type) { case fdb.Error: sm.store(idx, []byte(tuple.Tuple{[]byte("ERROR"), []byte(fmt.Sprintf("%d", r.Code))}.Pack())) default: panic(r) } } }() var e error op := inst[0].(string) if sm.verbose { fmt.Printf("%d. Instruction is %s (%v)\n", idx, op, sm.prefix) fmt.Printf("Stack from [") sm.dumpStack() fmt.Printf(" ]\n") } var t fdb.Transactor var rt fdb.ReadTransactor var isDB bool switch { case strings.HasSuffix(op, "_SNAPSHOT"): rt = sm.tr.Snapshot() op = op[:len(op)-9] case strings.HasSuffix(op, "_DATABASE"): t = db rt = db op = op[:len(op)-9] isDB = true default: t = sm.tr rt = sm.tr } switch { case op == "PUSH": sm.store(idx, inst[1]) case op == "DUP": entry := sm.stack[len(sm.stack)-1] sm.store(entry.idx, entry.item) case op == "EMPTY_STACK": sm.stack = []stackEntry{} sm.stack = make([]stackEntry, 0) case op == "SWAP": idx := sm.waitAndPop().item.(int64) sm.stack[len(sm.stack)-1], sm.stack[len(sm.stack)-1-int(idx)] = sm.stack[len(sm.stack)-1-int(idx)], sm.stack[len(sm.stack)-1] case op == "POP": sm.stack = sm.stack[:len(sm.stack)-1] case op == "SUB": sm.store(idx, sm.waitAndPop().item.(int64)-sm.waitAndPop().item.(int64)) case op == "NEW_TRANSACTION": sm.tr, e = db.CreateTransaction() if e != nil { panic(e) } case op == "ON_ERROR": sm.store(idx, sm.tr.OnError(fdb.Error{int(sm.waitAndPop().item.(int64))})) case op == "GET_READ_VERSION": _, e = rt.ReadTransact(func(rtr fdb.ReadTransaction) (interface{}, error) { sm.lastVersion = rtr.GetReadVersion().MustGet() sm.store(idx, []byte("GOT_READ_VERSION")) return nil, nil }) if e != nil { panic(e) } case op == "SET": sm.executeMutation(t, func(tr fdb.Transaction) (interface{}, error) { tr.Set(fdb.Key(sm.waitAndPop().item.([]byte)), sm.waitAndPop().item.([]byte)) return nil, nil }, isDB, idx) case op == "LOG_STACK": prefix := sm.waitAndPop().item.([]byte) for i := len(sm.stack) - 1; i >= 0; i-- { if i%100 == 0 { sm.tr.Commit().MustGet() } el := sm.waitAndPop() var keyt tuple.Tuple keyt = append(keyt, int64(i)) keyt = append(keyt, int64(el.idx)) pk := append(prefix, keyt.Pack()...) var valt tuple.Tuple valt = append(valt, el.item) pv := valt.Pack() vl := 40000 if len(pv) < vl { vl = len(pv) } sm.tr.Set(fdb.Key(pk), pv[:vl]) } sm.tr.Commit().MustGet() case op == "GET": _, e = rt.ReadTransact(func(rtr fdb.ReadTransaction) (interface{}, error) { sm.store(idx, rtr.Get(fdb.Key(sm.waitAndPop().item.([]byte)))) return nil, nil }) if e != nil { panic(e) } case op == "COMMIT": sm.store(idx, sm.tr.Commit()) case op == "RESET": sm.tr.Reset() case op == "CLEAR": sm.executeMutation(t, func(tr fdb.Transaction) (interface{}, error) { tr.Clear(fdb.Key(sm.waitAndPop().item.([]byte))) return nil, nil }, isDB, idx) case op == "SET_READ_VERSION": sm.tr.SetReadVersion(sm.lastVersion) case op == "WAIT_FUTURE": entry := sm.waitAndPop() sm.store(entry.idx, entry.item) case op == "GET_COMMITTED_VERSION": sm.lastVersion, e = sm.tr.GetCommittedVersion() if e != nil { panic(e) } sm.store(idx, []byte("GOT_COMMITTED_VERSION")) case op == "GET_KEY": sel := sm.popSelector() _, e = rt.ReadTransact(func(rtr fdb.ReadTransaction) (interface{}, error) { sm.store(idx, rtr.GetKey(sel)) return nil, nil }) if e != nil { panic(e) } case strings.HasPrefix(op, "GET_RANGE"): var r fdb.Range switch op[9:] { case "_STARTS_WITH": r = sm.popPrefixRange() case "_SELECTOR": r = fdb.SelectorRange{sm.popSelector(), sm.popSelector()} case "": r = sm.popKeyRange() } ro := sm.popRangeOptions() _, e = rt.ReadTransact(func(rtr fdb.ReadTransaction) (interface{}, error) { sm.pushRange(idx, rtr.GetRange(r, ro).GetSliceOrPanic()) return nil, nil }) if e != nil { panic(e) } case strings.HasPrefix(op, "CLEAR_RANGE"): var er fdb.ExactRange switch op[11:] { case "_STARTS_WITH": er = sm.popPrefixRange() case "": er = sm.popKeyRange() } sm.executeMutation(t, func(tr fdb.Transaction) (interface{}, error) { tr.ClearRange(er) return nil, nil }, isDB, idx) case op == "TUPLE_PACK": var t tuple.Tuple count := sm.waitAndPop().item.(int64) for i := 0; i < int(count); i++ { t = append(t, sm.waitAndPop().item) } sm.store(idx, []byte(t.Pack())) case op == "TUPLE_UNPACK": t, e := tuple.Unpack(fdb.Key(sm.waitAndPop().item.([]byte))) if e != nil { panic(e) } for _, el := range t { sm.store(idx, []byte(tuple.Tuple{el}.Pack())) } case op == "TUPLE_RANGE": var t tuple.Tuple count := sm.waitAndPop().item.(int64) for i := 0; i < int(count); i++ { t = append(t, sm.waitAndPop().item) } bk, ek := t.FDBRangeKeys() sm.store(idx, []byte(bk.FDBKey())) sm.store(idx, []byte(ek.FDBKey())) case op == "START_THREAD": newsm := newStackMachine(sm.waitAndPop().item.([]byte), verbose, sm.de) sm.threads.Add(1) go func() { newsm.Run() sm.threads.Done() }() case op == "WAIT_EMPTY": prefix := sm.waitAndPop().item.([]byte) er, e := fdb.PrefixRange(prefix) if e != nil { panic(e) } db.Transact(func(tr fdb.Transaction) (interface{}, error) { v := tr.GetRange(er, fdb.RangeOptions{}).GetSliceOrPanic() if len(v) != 0 { panic(fdb.Error{1020}) } return nil, nil }) sm.store(idx, []byte("WAITED_FOR_EMPTY")) case op == "READ_CONFLICT_RANGE": e = sm.tr.AddReadConflictRange(fdb.KeyRange{fdb.Key(sm.waitAndPop().item.([]byte)), fdb.Key(sm.waitAndPop().item.([]byte))}) if e != nil { panic(e) } sm.store(idx, []byte("SET_CONFLICT_RANGE")) case op == "WRITE_CONFLICT_RANGE": e = sm.tr.AddWriteConflictRange(fdb.KeyRange{fdb.Key(sm.waitAndPop().item.([]byte)), fdb.Key(sm.waitAndPop().item.([]byte))}) if e != nil { panic(e) } sm.store(idx, []byte("SET_CONFLICT_RANGE")) case op == "READ_CONFLICT_KEY": e = sm.tr.AddReadConflictKey(fdb.Key(sm.waitAndPop().item.([]byte))) if e != nil { panic(e) } sm.store(idx, []byte("SET_CONFLICT_KEY")) case op == "WRITE_CONFLICT_KEY": e = sm.tr.AddWriteConflictKey(fdb.Key(sm.waitAndPop().item.([]byte))) if e != nil { panic(e) } sm.store(idx, []byte("SET_CONFLICT_KEY")) case op == "ATOMIC_OP": opname := strings.Replace(strings.Title(strings.Replace(strings.ToLower(sm.waitAndPop().item.(string)), "_", " ", -1)), " ", "", -1) key := fdb.Key(sm.waitAndPop().item.([]byte)) value := sm.waitAndPop().item.([]byte) sm.executeMutation(t, func(tr fdb.Transaction) (interface{}, error) { reflect.ValueOf(tr).MethodByName(opname).Call([]reflect.Value{reflect.ValueOf(key), reflect.ValueOf(value)}) return nil, nil }, isDB, idx) case op == "DISABLE_WRITE_CONFLICT": sm.tr.Options().SetNextWriteNoWriteConflictRange() case op == "CANCEL": sm.tr.Cancel() case op == "UNIT_TESTS": db.Options().SetLocationCacheSize(100001) db.Options().SetMaxWatches(10001) tr, e := db.CreateTransaction() if e != nil { panic(e) } tr.Options().SetPrioritySystemImmediate() tr.Options().SetPriorityBatch() tr.Options().SetCausalReadRisky() tr.Options().SetCausalWriteRisky() tr.Options().SetReadYourWritesDisable() tr.Options().SetReadAheadDisable() tr.Options().SetReadSystemKeys() tr.Options().SetAccessSystemKeys() tr.Options().SetDurabilityDevNullIsWebScale() tr.Options().SetTimeout(1000) tr.Options().SetRetryLimit(5) tr.Options().SetMaxRetryDelay(100) tr.Get(fdb.Key("\xff")).MustGet() tr.Commit().MustGet() sm.testWatches() sm.testLocality() case strings.HasPrefix(op, "DIRECTORY_"): sm.de.processOp(sm, op[10:], isDB, idx, t, rt) default: log.Fatalf("Unhandled operation %s\n", string(inst[0].([]byte))) } if sm.verbose { fmt.Printf(" to [") sm.dumpStack() fmt.Printf(" ]\n\n") } runtime.Gosched() }