 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package common
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"unsafe"
 | |
| )
 | |
| 
 | |
| const BucketHeaderSize = int(unsafe.Sizeof(InBucket{}))
 | |
| 
 | |
| // InBucket represents the on-file representation of a bucket.
 | |
| // This is stored as the "value" of a bucket key. If the bucket is small enough,
 | |
| // then its root page can be stored inline in the "value", after the bucket
 | |
| // header. In the case of inline buckets, the "root" will be 0.
 | |
| type InBucket struct {
 | |
| 	root     Pgid   // page id of the bucket's root-level page
 | |
| 	sequence uint64 // monotonically incrementing, used by NextSequence()
 | |
| }
 | |
| 
 | |
| func NewInBucket(root Pgid, seq uint64) InBucket {
 | |
| 	return InBucket{
 | |
| 		root:     root,
 | |
| 		sequence: seq,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (b *InBucket) RootPage() Pgid {
 | |
| 	return b.root
 | |
| }
 | |
| 
 | |
| func (b *InBucket) SetRootPage(id Pgid) {
 | |
| 	b.root = id
 | |
| }
 | |
| 
 | |
| // InSequence returns the sequence. The reason why not naming it `Sequence`
 | |
| // is to avoid duplicated name as `(*Bucket) Sequence()`
 | |
| func (b *InBucket) InSequence() uint64 {
 | |
| 	return b.sequence
 | |
| }
 | |
| 
 | |
| func (b *InBucket) SetInSequence(v uint64) {
 | |
| 	b.sequence = v
 | |
| }
 | |
| 
 | |
| func (b *InBucket) IncSequence() {
 | |
| 	b.sequence++
 | |
| }
 | |
| 
 | |
| func (b *InBucket) InlinePage(v []byte) *Page {
 | |
| 	return (*Page)(unsafe.Pointer(&v[BucketHeaderSize]))
 | |
| }
 | |
| 
 | |
| func (b *InBucket) String() string {
 | |
| 	return fmt.Sprintf("<pgid=%d,seq=%d>", b.root, b.sequence)
 | |
| }
 |