You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

334 lines
9.6 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
6 years ago
5 years ago
  1. package weed_server
  2. import (
  3. "context"
  4. "fmt"
  5. "os"
  6. "path/filepath"
  7. "strconv"
  8. "strings"
  9. "time"
  10. "github.com/chrislusf/seaweedfs/weed/filer2"
  11. "github.com/chrislusf/seaweedfs/weed/glog"
  12. "github.com/chrislusf/seaweedfs/weed/operation"
  13. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  14. "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
  15. "github.com/chrislusf/seaweedfs/weed/util"
  16. )
  17. func (fs *FilerServer) LookupDirectoryEntry(ctx context.Context, req *filer_pb.LookupDirectoryEntryRequest) (*filer_pb.LookupDirectoryEntryResponse, error) {
  18. entry, err := fs.filer.FindEntry(ctx, util.FullPath(filepath.ToSlash(filepath.Join(req.Directory, req.Name))))
  19. if err == filer_pb.ErrNotFound {
  20. return &filer_pb.LookupDirectoryEntryResponse{}, nil
  21. }
  22. if err != nil {
  23. glog.V(3).Infof("LookupDirectoryEntry %s: %+v, ", filepath.Join(req.Directory, req.Name), err)
  24. return nil, err
  25. }
  26. return &filer_pb.LookupDirectoryEntryResponse{
  27. Entry: &filer_pb.Entry{
  28. Name: req.Name,
  29. IsDirectory: entry.IsDirectory(),
  30. Attributes: filer2.EntryAttributeToPb(entry),
  31. Chunks: entry.Chunks,
  32. Extended: entry.Extended,
  33. },
  34. }, nil
  35. }
  36. func (fs *FilerServer) ListEntries(req *filer_pb.ListEntriesRequest, stream filer_pb.SeaweedFiler_ListEntriesServer) error {
  37. limit := int(req.Limit)
  38. if limit == 0 {
  39. limit = fs.option.DirListingLimit
  40. }
  41. paginationLimit := filer2.PaginationSize
  42. if limit < paginationLimit {
  43. paginationLimit = limit
  44. }
  45. lastFileName := req.StartFromFileName
  46. includeLastFile := req.InclusiveStartFrom
  47. for limit > 0 {
  48. entries, err := fs.filer.ListDirectoryEntries(stream.Context(), util.FullPath(req.Directory), lastFileName, includeLastFile, paginationLimit)
  49. if err != nil {
  50. return err
  51. }
  52. if len(entries) == 0 {
  53. return nil
  54. }
  55. includeLastFile = false
  56. for _, entry := range entries {
  57. lastFileName = entry.Name()
  58. if req.Prefix != "" {
  59. if !strings.HasPrefix(entry.Name(), req.Prefix) {
  60. continue
  61. }
  62. }
  63. if err := stream.Send(&filer_pb.ListEntriesResponse{
  64. Entry: &filer_pb.Entry{
  65. Name: entry.Name(),
  66. IsDirectory: entry.IsDirectory(),
  67. Chunks: entry.Chunks,
  68. Attributes: filer2.EntryAttributeToPb(entry),
  69. Extended: entry.Extended,
  70. },
  71. }); err != nil {
  72. return err
  73. }
  74. limit--
  75. if limit == 0 {
  76. return nil
  77. }
  78. }
  79. if len(entries) < paginationLimit {
  80. break
  81. }
  82. }
  83. return nil
  84. }
  85. func (fs *FilerServer) LookupVolume(ctx context.Context, req *filer_pb.LookupVolumeRequest) (*filer_pb.LookupVolumeResponse, error) {
  86. resp := &filer_pb.LookupVolumeResponse{
  87. LocationsMap: make(map[string]*filer_pb.Locations),
  88. }
  89. for _, vidString := range req.VolumeIds {
  90. vid, err := strconv.Atoi(vidString)
  91. if err != nil {
  92. glog.V(1).Infof("Unknown volume id %d", vid)
  93. return nil, err
  94. }
  95. var locs []*filer_pb.Location
  96. locations, found := fs.filer.MasterClient.GetLocations(uint32(vid))
  97. if !found {
  98. continue
  99. }
  100. for _, loc := range locations {
  101. locs = append(locs, &filer_pb.Location{
  102. Url: loc.Url,
  103. PublicUrl: loc.PublicUrl,
  104. })
  105. }
  106. resp.LocationsMap[vidString] = &filer_pb.Locations{
  107. Locations: locs,
  108. }
  109. }
  110. return resp, nil
  111. }
  112. func (fs *FilerServer) CreateEntry(ctx context.Context, req *filer_pb.CreateEntryRequest) (resp *filer_pb.CreateEntryResponse, err error) {
  113. resp = &filer_pb.CreateEntryResponse{}
  114. fullpath := util.FullPath(filepath.ToSlash(filepath.Join(req.Directory, req.Entry.Name)))
  115. chunks, garbages := filer2.CompactFileChunks(req.Entry.Chunks)
  116. if req.Entry.Attributes == nil {
  117. glog.V(3).Infof("CreateEntry %s: nil attributes", filepath.Join(req.Directory, req.Entry.Name))
  118. resp.Error = fmt.Sprintf("can not create entry with empty attributes")
  119. return
  120. }
  121. createErr := fs.filer.CreateEntry(ctx, &filer2.Entry{
  122. FullPath: fullpath,
  123. Attr: filer2.PbToEntryAttribute(req.Entry.Attributes),
  124. Chunks: chunks,
  125. }, req.OExcl)
  126. if createErr == nil {
  127. fs.filer.DeleteChunks(garbages)
  128. } else {
  129. glog.V(3).Infof("CreateEntry %s: %v", filepath.Join(req.Directory, req.Entry.Name), createErr)
  130. resp.Error = createErr.Error()
  131. }
  132. return
  133. }
  134. func (fs *FilerServer) UpdateEntry(ctx context.Context, req *filer_pb.UpdateEntryRequest) (*filer_pb.UpdateEntryResponse, error) {
  135. fullpath := filepath.ToSlash(filepath.Join(req.Directory, req.Entry.Name))
  136. entry, err := fs.filer.FindEntry(ctx, util.FullPath(fullpath))
  137. if err != nil {
  138. return &filer_pb.UpdateEntryResponse{}, fmt.Errorf("not found %s: %v", fullpath, err)
  139. }
  140. // remove old chunks if not included in the new ones
  141. unusedChunks := filer2.MinusChunks(entry.Chunks, req.Entry.Chunks)
  142. chunks, garbages := filer2.CompactFileChunks(req.Entry.Chunks)
  143. newEntry := &filer2.Entry{
  144. FullPath: util.FullPath(filepath.ToSlash(filepath.Join(req.Directory, req.Entry.Name))),
  145. Attr: entry.Attr,
  146. Extended: req.Entry.Extended,
  147. Chunks: chunks,
  148. }
  149. glog.V(3).Infof("updating %s: %+v, chunks %d: %v => %+v, chunks %d: %v, extended: %v => %v",
  150. fullpath, entry.Attr, len(entry.Chunks), entry.Chunks,
  151. req.Entry.Attributes, len(req.Entry.Chunks), req.Entry.Chunks,
  152. entry.Extended, req.Entry.Extended)
  153. if req.Entry.Attributes != nil {
  154. if req.Entry.Attributes.Mtime != 0 {
  155. newEntry.Attr.Mtime = time.Unix(req.Entry.Attributes.Mtime, 0)
  156. }
  157. if req.Entry.Attributes.FileMode != 0 {
  158. newEntry.Attr.Mode = os.FileMode(req.Entry.Attributes.FileMode)
  159. }
  160. newEntry.Attr.Uid = req.Entry.Attributes.Uid
  161. newEntry.Attr.Gid = req.Entry.Attributes.Gid
  162. newEntry.Attr.Mime = req.Entry.Attributes.Mime
  163. newEntry.Attr.UserName = req.Entry.Attributes.UserName
  164. newEntry.Attr.GroupNames = req.Entry.Attributes.GroupName
  165. }
  166. if filer2.EqualEntry(entry, newEntry) {
  167. return &filer_pb.UpdateEntryResponse{}, err
  168. }
  169. if err = fs.filer.UpdateEntry(ctx, entry, newEntry); err == nil {
  170. fs.filer.DeleteChunks(unusedChunks)
  171. fs.filer.DeleteChunks(garbages)
  172. } else {
  173. glog.V(3).Infof("UpdateEntry %s: %v", filepath.Join(req.Directory, req.Entry.Name), err)
  174. }
  175. fs.filer.NotifyUpdateEvent(entry, newEntry, true)
  176. return &filer_pb.UpdateEntryResponse{}, err
  177. }
  178. func (fs *FilerServer) DeleteEntry(ctx context.Context, req *filer_pb.DeleteEntryRequest) (resp *filer_pb.DeleteEntryResponse, err error) {
  179. err = fs.filer.DeleteEntryMetaAndData(ctx, util.FullPath(filepath.ToSlash(filepath.Join(req.Directory, req.Name))), req.IsRecursive, req.IgnoreRecursiveError, req.IsDeleteData)
  180. resp = &filer_pb.DeleteEntryResponse{}
  181. if err != nil {
  182. resp.Error = err.Error()
  183. }
  184. return resp, nil
  185. }
  186. func (fs *FilerServer) AssignVolume(ctx context.Context, req *filer_pb.AssignVolumeRequest) (resp *filer_pb.AssignVolumeResponse, err error) {
  187. ttlStr := ""
  188. if req.TtlSec > 0 {
  189. ttlStr = strconv.Itoa(int(req.TtlSec))
  190. }
  191. collection, replication := fs.detectCollection(req.ParentPath, req.Collection, req.Replication)
  192. var altRequest *operation.VolumeAssignRequest
  193. dataCenter := req.DataCenter
  194. if dataCenter == "" {
  195. dataCenter = fs.option.DataCenter
  196. }
  197. assignRequest := &operation.VolumeAssignRequest{
  198. Count: uint64(req.Count),
  199. Replication: replication,
  200. Collection: collection,
  201. Ttl: ttlStr,
  202. DataCenter: dataCenter,
  203. }
  204. if dataCenter != "" {
  205. altRequest = &operation.VolumeAssignRequest{
  206. Count: uint64(req.Count),
  207. Replication: replication,
  208. Collection: collection,
  209. Ttl: ttlStr,
  210. DataCenter: "",
  211. }
  212. }
  213. assignResult, err := operation.Assign(fs.filer.GetMaster(), fs.grpcDialOption, assignRequest, altRequest)
  214. if err != nil {
  215. glog.V(3).Infof("AssignVolume: %v", err)
  216. return &filer_pb.AssignVolumeResponse{Error: fmt.Sprintf("assign volume: %v", err)}, nil
  217. }
  218. if assignResult.Error != "" {
  219. glog.V(3).Infof("AssignVolume error: %v", assignResult.Error)
  220. return &filer_pb.AssignVolumeResponse{Error: fmt.Sprintf("assign volume result: %v", assignResult.Error)}, nil
  221. }
  222. return &filer_pb.AssignVolumeResponse{
  223. FileId: assignResult.Fid,
  224. Count: int32(assignResult.Count),
  225. Url: assignResult.Url,
  226. PublicUrl: assignResult.PublicUrl,
  227. Auth: string(assignResult.Auth),
  228. Collection: collection,
  229. Replication: replication,
  230. }, nil
  231. }
  232. func (fs *FilerServer) DeleteCollection(ctx context.Context, req *filer_pb.DeleteCollectionRequest) (resp *filer_pb.DeleteCollectionResponse, err error) {
  233. err = fs.filer.MasterClient.WithClient(func(client master_pb.SeaweedClient) error {
  234. _, err := client.CollectionDelete(context.Background(), &master_pb.CollectionDeleteRequest{
  235. Name: req.GetCollection(),
  236. })
  237. return err
  238. })
  239. return &filer_pb.DeleteCollectionResponse{}, err
  240. }
  241. func (fs *FilerServer) Statistics(ctx context.Context, req *filer_pb.StatisticsRequest) (resp *filer_pb.StatisticsResponse, err error) {
  242. var output *master_pb.StatisticsResponse
  243. err = fs.filer.MasterClient.WithClient(func(masterClient master_pb.SeaweedClient) error {
  244. grpcResponse, grpcErr := masterClient.Statistics(context.Background(), &master_pb.StatisticsRequest{
  245. Replication: req.Replication,
  246. Collection: req.Collection,
  247. Ttl: req.Ttl,
  248. })
  249. if grpcErr != nil {
  250. return grpcErr
  251. }
  252. output = grpcResponse
  253. return nil
  254. })
  255. if err != nil {
  256. return nil, err
  257. }
  258. return &filer_pb.StatisticsResponse{
  259. TotalSize: output.TotalSize,
  260. UsedSize: output.UsedSize,
  261. FileCount: output.FileCount,
  262. }, nil
  263. }
  264. func (fs *FilerServer) GetFilerConfiguration(ctx context.Context, req *filer_pb.GetFilerConfigurationRequest) (resp *filer_pb.GetFilerConfigurationResponse, err error) {
  265. return &filer_pb.GetFilerConfigurationResponse{
  266. Masters: fs.option.Masters,
  267. Collection: fs.option.Collection,
  268. Replication: fs.option.DefaultReplication,
  269. MaxMb: uint32(fs.option.MaxMB),
  270. DirBuckets: fs.filer.DirBucketsPath,
  271. DirQueues: fs.filer.DirQueuesPath,
  272. Cipher: fs.filer.Cipher,
  273. }, nil
  274. }