| 
									
										
										
										
											2021-04-19 03:41:13 +08:00
										 |  |  | // Copyright (c) 2015-2021 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2016-12-20 09:04:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  | // SetupType - enum for setup type.
 | 
					
						
							|  |  |  | type SetupType int | 
					
						
							| 
									
										
										
										
											2016-12-20 09:04:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2020-01-08 01:13:44 +08:00
										 |  |  | 	// UnknownSetupType - starts with unknown setup type.
 | 
					
						
							|  |  |  | 	UnknownSetupType SetupType = iota | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  | 	// FSSetupType - FS setup type enum.
 | 
					
						
							| 
									
										
										
										
											2020-01-08 01:13:44 +08:00
										 |  |  | 	FSSetupType | 
					
						
							| 
									
										
										
										
											2016-12-20 09:04:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-31 01:58:37 +08:00
										 |  |  | 	// ErasureSDSetupType - Erasure single drive setup enum.
 | 
					
						
							|  |  |  | 	ErasureSDSetupType | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// ErasureSetupType - Erasure setup type enum.
 | 
					
						
							|  |  |  | 	ErasureSetupType | 
					
						
							| 
									
										
										
										
											2016-12-20 09:04:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// DistErasureSetupType - Distributed Erasure setup type enum.
 | 
					
						
							|  |  |  | 	DistErasureSetupType | 
					
						
							| 
									
										
										
										
											2018-12-03 16:32:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// GatewaySetupType - gateway setup type enum.
 | 
					
						
							|  |  |  | 	GatewaySetupType | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (setupType SetupType) String() string { | 
					
						
							|  |  |  | 	switch setupType { | 
					
						
							|  |  |  | 	case FSSetupType: | 
					
						
							|  |  |  | 		return globalMinioModeFS | 
					
						
							| 
									
										
										
										
											2022-05-31 01:58:37 +08:00
										 |  |  | 	case ErasureSDSetupType: | 
					
						
							|  |  |  | 		return globalMinioModeErasureSD | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	case ErasureSetupType: | 
					
						
							|  |  |  | 		return globalMinioModeErasure | 
					
						
							|  |  |  | 	case DistErasureSetupType: | 
					
						
							|  |  |  | 		return globalMinioModeDistErasure | 
					
						
							| 
									
										
										
										
											2018-12-03 16:32:14 +08:00
										 |  |  | 	case GatewaySetupType: | 
					
						
							|  |  |  | 		return globalMinioModeGatewayPrefix | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-20 09:04:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 01:13:44 +08:00
										 |  |  | 	return "unknown" | 
					
						
							| 
									
										
										
										
											2016-12-20 09:04:31 +08:00
										 |  |  | } |