2020-04-05 07:51:16 +00:00
package command
import (
"context"
"fmt"
2021-01-22 06:39:25 +00:00
"github.com/golang/protobuf/jsonpb"
2021-01-13 11:31:37 +00:00
jsoniter "github.com/json-iterator/go"
"github.com/olivere/elastic/v7"
2020-04-05 07:51:16 +00:00
"io"
2021-01-22 06:39:25 +00:00
"os"
2020-08-29 02:43:04 +00:00
"path/filepath"
"strings"
2020-04-28 06:49:46 +00:00
"time"
2020-04-05 07:51:16 +00:00
"github.com/chrislusf/seaweedfs/weed/pb"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/security"
"github.com/chrislusf/seaweedfs/weed/util"
)
func init ( ) {
2021-01-13 02:48:01 +00:00
cmdFilerMetaTail . Run = runFilerMetaTail // break init cycle
2020-04-05 07:51:16 +00:00
}
2021-01-13 02:48:01 +00:00
var cmdFilerMetaTail = & Command {
2021-03-03 07:07:29 +00:00
UsageLine : "filer.meta.tail [-filer=localhost:8888] [-pathPrefix=/]" ,
2021-03-01 00:21:09 +00:00
Short : "see continuous changes on a filer" ,
Long : ` See continuous changes on a filer .
2020-04-05 07:51:16 +00:00
2021-01-22 06:39:25 +00:00
weed filer . meta . tail - timeAgo = 30 h | grep truncate
weed filer . meta . tail - timeAgo = 30 h | jq .
weed filer . meta . tail - timeAgo = 30 h | jq . eventNotification . newEntry . name
2020-04-05 07:51:16 +00:00
` ,
}
var (
2021-01-13 08:31:19 +00:00
tailFiler = cmdFilerMetaTail . Flag . String ( "filer" , "localhost:8888" , "filer hostname:port" )
2021-03-03 07:07:29 +00:00
tailTarget = cmdFilerMetaTail . Flag . String ( "pathPrefix" , "/" , "path to a folder or common prefix for the folders or files on filer" )
2021-01-13 08:31:19 +00:00
tailStart = cmdFilerMetaTail . Flag . Duration ( "timeAgo" , 0 , "start time before now. \"300ms\", \"1.5h\" or \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\"" )
tailPattern = cmdFilerMetaTail . Flag . String ( "pattern" , "" , "full path or just filename pattern, ex: \"/home/?opher\", \"*.pdf\", see https://golang.org/pkg/path/filepath/#Match " )
2021-01-13 11:31:37 +00:00
esServers = cmdFilerMetaTail . Flag . String ( "es" , "" , "comma-separated elastic servers http://<host:port>" )
esIndex = cmdFilerMetaTail . Flag . String ( "es.index" , "seaweedfs" , "ES index name" )
2020-04-05 07:51:16 +00:00
)
2021-01-13 02:48:01 +00:00
func runFilerMetaTail ( cmd * Command , args [ ] string ) bool {
2020-04-05 07:51:16 +00:00
grpcDialOption := security . LoadClientTLS ( util . GetViper ( ) , "grpc.client" )
2020-08-29 02:43:04 +00:00
var filterFunc func ( dir , fname string ) bool
2021-01-13 08:31:19 +00:00
if * tailPattern != "" {
if strings . Contains ( * tailPattern , "/" ) {
println ( "watch path pattern" , * tailPattern )
2020-08-29 02:43:04 +00:00
filterFunc = func ( dir , fname string ) bool {
2021-01-13 08:31:19 +00:00
matched , err := filepath . Match ( * tailPattern , dir + "/" + fname )
2020-08-29 02:43:04 +00:00
if err != nil {
fmt . Printf ( "error: %v" , err )
}
return matched
}
} else {
2021-01-13 08:31:19 +00:00
println ( "watch file pattern" , * tailPattern )
2020-08-29 02:43:04 +00:00
filterFunc = func ( dir , fname string ) bool {
2021-01-13 08:31:19 +00:00
matched , err := filepath . Match ( * tailPattern , fname )
2020-08-29 02:43:04 +00:00
if err != nil {
fmt . Printf ( "error: %v" , err )
}
return matched
}
}
}
shouldPrint := func ( resp * filer_pb . SubscribeMetadataResponse ) bool {
if filterFunc == nil {
return true
}
if resp . EventNotification . OldEntry == nil && resp . EventNotification . NewEntry == nil {
return false
}
if resp . EventNotification . OldEntry != nil && filterFunc ( resp . Directory , resp . EventNotification . OldEntry . Name ) {
return true
}
if resp . EventNotification . NewEntry != nil && filterFunc ( resp . EventNotification . NewParentPath , resp . EventNotification . NewEntry . Name ) {
return true
}
return false
}
2021-01-22 06:39:25 +00:00
jsonpbMarshaler := jsonpb . Marshaler {
EmitDefaults : false ,
}
2021-01-11 10:08:26 +00:00
eachEntryFunc := func ( resp * filer_pb . SubscribeMetadataResponse ) error {
2021-01-22 06:39:25 +00:00
jsonpbMarshaler . Marshal ( os . Stdout , resp )
fmt . Fprintln ( os . Stdout )
2021-01-11 10:08:26 +00:00
return nil
2021-01-11 08:03:13 +00:00
}
2021-01-13 11:31:37 +00:00
if * esServers != "" {
var err error
eachEntryFunc , err = sendToElasticSearchFunc ( * esServers , * esIndex )
if err != nil {
fmt . Printf ( "create elastic search client to %s: %+v\n" , * esServers , err )
return false
}
}
2021-01-11 08:03:13 +00:00
2021-01-13 08:31:19 +00:00
tailErr := pb . WithFilerClient ( * tailFiler , grpcDialOption , func ( client filer_pb . SeaweedFilerClient ) error {
2020-04-05 07:51:16 +00:00
2020-09-09 18:21:23 +00:00
ctx , cancel := context . WithCancel ( context . Background ( ) )
defer cancel ( )
stream , err := client . SubscribeMetadata ( ctx , & filer_pb . SubscribeMetadataRequest {
2021-01-13 08:31:19 +00:00
ClientName : "tail" ,
PathPrefix : * tailTarget ,
SinceNs : time . Now ( ) . Add ( - * tailStart ) . UnixNano ( ) ,
2020-04-05 07:51:16 +00:00
} )
if err != nil {
return fmt . Errorf ( "listen: %v" , err )
}
for {
resp , listenErr := stream . Recv ( )
if listenErr == io . EOF {
return nil
}
if listenErr != nil {
return listenErr
}
2020-08-29 02:43:04 +00:00
if ! shouldPrint ( resp ) {
continue
}
2021-01-11 10:08:26 +00:00
if err = eachEntryFunc ( resp ) ; err != nil {
return err
}
2020-04-05 07:51:16 +00:00
}
} )
2021-01-13 08:31:19 +00:00
if tailErr != nil {
fmt . Printf ( "tail %s: %v\n" , * tailFiler , tailErr )
2020-04-05 07:51:16 +00:00
}
return true
}
2021-01-13 11:31:37 +00:00
type EsDocument struct {
Dir string ` json:"dir,omitempty" `
Name string ` json:"name,omitempty" `
IsDirectory bool ` json:"isDir,omitempty" `
Size uint64 ` json:"size,omitempty" `
Uid uint32 ` json:"uid,omitempty" `
Gid uint32 ` json:"gid,omitempty" `
UserName string ` json:"userName,omitempty" `
Collection string ` json:"collection,omitempty" `
Crtime int64 ` json:"crtime,omitempty" `
Mtime int64 ` json:"mtime,omitempty" `
Mime string ` json:"mime,omitempty" `
}
func toEsEntry ( event * filer_pb . EventNotification ) ( * EsDocument , string ) {
entry := event . NewEntry
dir , name := event . NewParentPath , entry . Name
id := util . Md5String ( [ ] byte ( util . NewFullPath ( dir , name ) ) )
esEntry := & EsDocument {
Dir : dir ,
Name : name ,
IsDirectory : entry . IsDirectory ,
Size : entry . Attributes . FileSize ,
Uid : entry . Attributes . Uid ,
Gid : entry . Attributes . Gid ,
UserName : entry . Attributes . UserName ,
Collection : entry . Attributes . Collection ,
Crtime : entry . Attributes . Crtime ,
Mtime : entry . Attributes . Mtime ,
Mime : entry . Attributes . Mime ,
}
return esEntry , id
}
func sendToElasticSearchFunc ( servers string , esIndex string ) ( func ( resp * filer_pb . SubscribeMetadataResponse ) error , error ) {
options := [ ] elastic . ClientOptionFunc { }
options = append ( options , elastic . SetURL ( strings . Split ( servers , "," ) ... ) )
options = append ( options , elastic . SetSniff ( false ) )
options = append ( options , elastic . SetHealthcheck ( false ) )
client , err := elastic . NewClient ( options ... )
if err != nil {
return nil , err
}
return func ( resp * filer_pb . SubscribeMetadataResponse ) error {
event := resp . EventNotification
if event . OldEntry != nil &&
( event . NewEntry == nil || resp . Directory != event . NewParentPath || event . OldEntry . Name != event . NewEntry . Name ) {
// delete or not update the same file
dir , name := resp . Directory , event . OldEntry . Name
id := util . Md5String ( [ ] byte ( util . NewFullPath ( dir , name ) ) )
println ( "delete" , id )
_ , err := client . Delete ( ) . Index ( esIndex ) . Id ( id ) . Do ( context . Background ( ) )
return err
}
if event . NewEntry != nil {
// add a new file or update the same file
esEntry , id := toEsEntry ( event )
value , err := jsoniter . Marshal ( esEntry )
if err != nil {
return err
}
println ( string ( value ) )
_ , err = client . Index ( ) . Index ( esIndex ) . Id ( id ) . BodyJson ( string ( value ) ) . Do ( context . Background ( ) )
return err
}
return nil
} , nil
}