| 
									
										
										
										
											2016-04-22 11:07:47 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2016-2020 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-04-22 11:07:47 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 09:07:52 +08:00
										 |  |  | //go:generate msgp -file=$GOFILE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 02:10:54 +08:00
										 |  |  | // DiskInfo is an extended type which returns current
 | 
					
						
							|  |  |  | // disk usage per path.
 | 
					
						
							|  |  |  | type DiskInfo struct { | 
					
						
							|  |  |  | 	Total     uint64 | 
					
						
							|  |  |  | 	Free      uint64 | 
					
						
							|  |  |  | 	Used      uint64 | 
					
						
							|  |  |  | 	FSType    string | 
					
						
							|  |  |  | 	RootDisk  bool | 
					
						
							|  |  |  | 	Healing   bool | 
					
						
							|  |  |  | 	Endpoint  string | 
					
						
							|  |  |  | 	MountPath string | 
					
						
							|  |  |  | 	ID        string | 
					
						
							|  |  |  | 	Error     string // carries the error over the network
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // VolsInfo is a collection of volume(bucket) information
 | 
					
						
							|  |  |  | type VolsInfo []VolInfo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | // VolInfo - represents volume stat information.
 | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | type VolInfo struct { | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | 	// Name of the volume.
 | 
					
						
							|  |  |  | 	Name string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Date and time when the volume was created.
 | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 	Created time.Time | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-15 04:49:10 +08:00
										 |  |  | // FilesInfo represent a list of files, additionally
 | 
					
						
							|  |  |  | // indicates if the list is last.
 | 
					
						
							|  |  |  | type FilesInfo struct { | 
					
						
							|  |  |  | 	Files       []FileInfo | 
					
						
							|  |  |  | 	IsTruncated bool | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | // FilesInfoVersions represents a list of file versions,
 | 
					
						
							|  |  |  | // additionally indicates if the list is last.
 | 
					
						
							|  |  |  | type FilesInfoVersions struct { | 
					
						
							|  |  |  | 	FilesVersions []FileInfoVersions | 
					
						
							|  |  |  | 	IsTruncated   bool | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // FileInfoVersions represent a list of versions for a given file.
 | 
					
						
							|  |  |  | type FileInfoVersions struct { | 
					
						
							|  |  |  | 	// Name of the volume.
 | 
					
						
							|  |  |  | 	Volume string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Name of the file.
 | 
					
						
							|  |  |  | 	Name string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Represents the latest mod time of the
 | 
					
						
							|  |  |  | 	// latest version.
 | 
					
						
							|  |  |  | 	LatestModTime time.Time | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Versions []FileInfo | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-29 00:18:35 +08:00
										 |  |  | // forwardPastVersion will truncate the result to only contain versions after 'v'.
 | 
					
						
							|  |  |  | // If v is empty or the version isn't found no changes will be made.
 | 
					
						
							|  |  |  | func (f *FileInfoVersions) forwardPastVersion(v string) { | 
					
						
							|  |  |  | 	if v == "" { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i, ver := range f.Versions { | 
					
						
							|  |  |  | 		if ver.VersionID == v { | 
					
						
							|  |  |  | 			f.Versions = f.Versions[i+1:] | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | // FileInfo - represents file stat information.
 | 
					
						
							| 
									
										
										
										
											2020-11-03 09:07:52 +08:00
										 |  |  | //msgp:tuple FileInfo
 | 
					
						
							|  |  |  | // The above means that any added/deleted fields are incompatible.
 | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | type FileInfo struct { | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | 	// Name of the volume.
 | 
					
						
							|  |  |  | 	Volume string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Name of the file.
 | 
					
						
							|  |  |  | 	Name string | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// Version of the file.
 | 
					
						
							|  |  |  | 	VersionID string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Indicates if the version is the latest
 | 
					
						
							|  |  |  | 	IsLatest bool | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Deleted is set when this FileInfo represents
 | 
					
						
							|  |  |  | 	// a deleted marker for a versioned bucket.
 | 
					
						
							|  |  |  | 	Deleted bool | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// DataDir of the file
 | 
					
						
							|  |  |  | 	DataDir string | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-18 08:41:29 +08:00
										 |  |  | 	// Indicates if this object is still in V1 format.
 | 
					
						
							|  |  |  | 	XLV1 bool | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// Date and time when the file was last modified, if Deleted
 | 
					
						
							|  |  |  | 	// is 'true' this value represents when while was deleted.
 | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | 	ModTime time.Time | 
					
						
							| 
									
										
										
										
											2016-06-09 21:24:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Total file size.
 | 
					
						
							|  |  |  | 	Size int64 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// File mode bits.
 | 
					
						
							| 
									
										
										
										
											2020-11-03 09:07:52 +08:00
										 |  |  | 	Mode uint32 | 
					
						
							| 
									
										
										
										
											2019-05-15 04:49:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// File metadata
 | 
					
						
							|  |  |  | 	Metadata map[string]string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// All the parts per object.
 | 
					
						
							|  |  |  | 	Parts []ObjectPartInfo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// Erasure info for all objects.
 | 
					
						
							|  |  |  | 	Erasure ErasureInfo | 
					
						
							| 
									
										
										
										
											2016-04-08 10:01:15 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-25 23:52:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | // newFileInfo - initializes new FileInfo, allocates a fresh erasure info.
 | 
					
						
							|  |  |  | func newFileInfo(object string, dataBlocks, parityBlocks int) (fi FileInfo) { | 
					
						
							|  |  |  | 	fi.Erasure = ErasureInfo{ | 
					
						
							|  |  |  | 		Algorithm:    erasureAlgorithm, | 
					
						
							|  |  |  | 		DataBlocks:   dataBlocks, | 
					
						
							|  |  |  | 		ParityBlocks: parityBlocks, | 
					
						
							|  |  |  | 		BlockSize:    blockSizeV1, | 
					
						
							|  |  |  | 		Distribution: hashOrder(object, dataBlocks+parityBlocks), | 
					
						
							| 
									
										
										
										
											2020-02-25 23:52:28 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	return fi | 
					
						
							| 
									
										
										
										
											2020-02-25 23:52:28 +08:00
										 |  |  | } |