micro--go-micro
1bb25d6e7f
* feat: add agent platform showcase and blog post Add a complete platform example (Users, Posts, Comments, Mail) that mirrors micro/blog, demonstrating how existing microservices become AI-accessible through MCP with zero code changes. Includes blog post "Your Microservices Are Already an AI Platform" walking through real agent workflows: signup, content creation, commenting, tagging, and cross-service messaging. https://claude.ai/code/session_01GkduEhcrqcG45rdfYh8dAc * refactor: rename handler types to drop redundant Service suffix UserService → Users, PostService → Posts, CommentService → Comments, MailService → Mail. Matches micro/blog naming convention. https://claude.ai/code/session_01GkduEhcrqcG45rdfYh8dAc * refactor: consolidate top-level directories, reduce framework bloat Move internal/non-public packages behind internal/ or into their parent packages where they belong: - deploy/ → gateway/mcp/deploy/ (Helm charts belong with the gateway) - profile/ → service/profile/ (preset plugin profiles are a service concern) - scripts/ → internal/scripts/ (install script is not public API) - test/ → internal/test/ (test harness is not public API) - util/ → internal/util/ (internal helpers shouldn't be imported externally) Also fixes CLAUDE.md merge conflict markers and updates project structure documentation. All import paths updated. Build and tests pass. https://claude.ai/code/session_01GkduEhcrqcG45rdfYh8dAc * refactor: redesign model package to match framework conventions Rename model.Database interface to model.Model (consistent with client.Client, server.Server, store.Store). Remove generics in favor of interface{}-based API with reflection. Key changes: - model.Model interface: Register once, CRUD infers table from type - DefaultModel + NewModel() + package-level convenience functions - Schema registered via Register(&User{}), no per-call schema passing - Memory implementation as default (in model package, like store) - memory/sqlite/postgres backends updated for new interface - protoc-gen-micro generates RegisterXModel() instead of generic factory - All docs, blog, and README updated https://claude.ai/code/session_01GkduEhcrqcG45rdfYh8dAc --------- Co-authored-by: Claude <noreply@anthropic.com>
140 行
2.3 KiB
Go
140 行
2.3 KiB
Go
// Package ring provides a simple ring buffer for storing local data
|
|
package ring
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// Buffer is ring buffer.
|
|
type Buffer struct {
|
|
streams map[string]*Stream
|
|
vals []*Entry
|
|
size int
|
|
|
|
sync.RWMutex
|
|
}
|
|
|
|
// Entry is ring buffer data entry.
|
|
type Entry struct {
|
|
Value interface{}
|
|
Timestamp time.Time
|
|
}
|
|
|
|
// Stream is used to stream the buffer.
|
|
type Stream struct {
|
|
// Buffered entries
|
|
Entries chan *Entry
|
|
// Stop channel
|
|
Stop chan bool
|
|
// Id of the stream
|
|
Id string
|
|
}
|
|
|
|
// Put adds a new value to ring buffer.
|
|
func (b *Buffer) Put(v interface{}) {
|
|
b.Lock()
|
|
defer b.Unlock()
|
|
|
|
// append to values
|
|
entry := &Entry{
|
|
Value: v,
|
|
Timestamp: time.Now(),
|
|
}
|
|
b.vals = append(b.vals, entry)
|
|
|
|
// trim if bigger than size required
|
|
if len(b.vals) > b.size {
|
|
b.vals = b.vals[1:]
|
|
}
|
|
|
|
// send to every stream
|
|
for _, stream := range b.streams {
|
|
select {
|
|
case <-stream.Stop:
|
|
delete(b.streams, stream.Id)
|
|
close(stream.Entries)
|
|
case stream.Entries <- entry:
|
|
}
|
|
}
|
|
}
|
|
|
|
// Get returns the last n entries.
|
|
func (b *Buffer) Get(n int) []*Entry {
|
|
b.RLock()
|
|
defer b.RUnlock()
|
|
|
|
// reset any invalid values
|
|
if n > len(b.vals) || n < 0 {
|
|
n = len(b.vals)
|
|
}
|
|
|
|
// create a delta
|
|
delta := len(b.vals) - n
|
|
|
|
// return the delta set
|
|
return b.vals[delta:]
|
|
}
|
|
|
|
// Return the entries since a specific time.
|
|
func (b *Buffer) Since(t time.Time) []*Entry {
|
|
b.RLock()
|
|
defer b.RUnlock()
|
|
|
|
// return all the values
|
|
if t.IsZero() {
|
|
return b.vals
|
|
}
|
|
|
|
// if its in the future return nothing
|
|
if time.Since(t).Seconds() < 0.0 {
|
|
return nil
|
|
}
|
|
|
|
for i, v := range b.vals {
|
|
// find the starting point
|
|
d := v.Timestamp.Sub(t)
|
|
|
|
// return the values
|
|
if d.Seconds() > 0.0 {
|
|
return b.vals[i:]
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Stream logs from the buffer
|
|
// Close the channel when you want to stop.
|
|
func (b *Buffer) Stream() (<-chan *Entry, chan bool) {
|
|
b.Lock()
|
|
defer b.Unlock()
|
|
|
|
entries := make(chan *Entry, 128)
|
|
id := uuid.New().String()
|
|
stop := make(chan bool)
|
|
|
|
b.streams[id] = &Stream{
|
|
Id: id,
|
|
Entries: entries,
|
|
Stop: stop,
|
|
}
|
|
|
|
return entries, stop
|
|
}
|
|
|
|
// Size returns the size of the ring buffer.
|
|
func (b *Buffer) Size() int {
|
|
return b.size
|
|
}
|
|
|
|
// New returns a new buffer of the given size.
|
|
func New(i int) *Buffer {
|
|
return &Buffer{
|
|
size: i,
|
|
streams: make(map[string]*Stream),
|
|
}
|
|
}
|