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/>.
  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								package  s3select  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-09-07 00:09:53 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								import  "strings"  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								// SelectError - represents s3 select error specified in
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								// https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html#RESTObjectSELECTContent-responses-special-errors.
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								type  SelectError  interface  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									Cause ( )  error 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									ErrorCode ( )  string 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									ErrorMessage ( )  string 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									HTTPStatusCode ( )  int 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									Error ( )  string 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								type  s3Error  struct  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									code        string 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									message     string 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									statusCode  int 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									cause       error 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  ( err  * s3Error )  Cause ( )  error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  err . cause 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  ( err  * s3Error )  ErrorCode ( )  string  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  err . code 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  ( err  * s3Error )  ErrorMessage ( )  string  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  err . message 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  ( err  * s3Error )  HTTPStatusCode ( )  int  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  err . statusCode 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  ( err  * s3Error )  Error ( )  string  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  err . message 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errMalformedXML ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "MalformedXML" , 
							 
						 
					
						
							
								
									
										
										
										
											2019-09-10 12:33:27 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
										message :     "The XML provided was not well-formed or did not validate against our published schema. Check the service documentation and try again: "  +  err . Error ( ) , 
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errInvalidCompressionFormat ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "InvalidCompressionFormat" , 
							 
						 
					
						
							
								
									
										
										
										
											2021-09-07 00:09:53 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										message :     "The file is not in a supported compression format. GZIP, BZIP2, ZSTD, LZ4, S2 and SNAPPY are supported." , 
							 
						 
					
						
							
								
									
										
										
										
											2020-03-06 11:34:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-09-07 00:09:53 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								func  errInvalidCompression ( err  error ,  t  CompressionType )  * s3Error  {  
						 
					
						
							
								
									
										
										
										
											2020-03-06 11:34:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "InvalidCompressionFormat" , 
							 
						 
					
						
							
								
									
										
										
										
											2021-09-07 00:09:53 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
										message :     strings . ToUpper ( string ( t ) )  +  " is not applicable to the queried object. Please correct the request and try again." , 
							 
						 
					
						
							
								
									
										
										
										
											2020-03-06 11:34:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errInvalidDataSource ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "InvalidDataSource" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "Invalid data source type. Only CSV, JSON, and Parquet are supported." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errInvalidRequestParameter ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "InvalidRequestParameter" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "The value of a parameter in SelectRequest element is invalid. Check the service API documentation and try again." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-03-15 00:48:36 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								func  errInvalidScanRangeParameter ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "InvalidRequestParameter" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "The value of a parameter in ScanRange element is invalid. Check the service API documentation and try again." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errObjectSerializationConflict ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "ObjectSerializationConflict" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "InputSerialization specifies more than one format (CSV, JSON, or Parquet), or OutputSerialization specifies more than one format (CSV or JSON). InputSerialization and OutputSerialization can only specify one format each." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errInvalidExpressionType ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "InvalidExpressionType" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "The ExpressionType is invalid. Only SQL expressions are supported." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errMissingRequiredParameter ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "MissingRequiredParameter" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "The SelectRequest entity is missing a required parameter. Check the service documentation and try again." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-09 08:53:04 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								func  errTruncatedInput ( err  error )  * s3Error  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									return  & s3Error { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										code :        "TruncatedInput" , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										message :     "Object decompression failed. Check that the object is properly compressed using the format specified in the request." , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										statusCode :  400 , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										cause :       err , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									} 
							 
						 
					
						
							
								
									
										
										
										
											2018-08-15 18:30:19 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								}