| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | // +build windows
 | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2016-2020 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +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-05 08:27:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 	"syscall" | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 03:51:56 +08:00
										 |  |  | // Return all the entries at the directory dirPath.
 | 
					
						
							|  |  |  | func readDir(dirPath string) (entries []string, err error) { | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 	return readDirN(dirPath, -1) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | // readDir applies the filter function on each entries at dirPath, doesn't recurse into
 | 
					
						
							|  |  |  | // the directory itself.
 | 
					
						
							|  |  |  | func readDirFilterFn(dirPath string, filter func(name string, typ os.FileMode) error) error { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	f, err := os.Open(dirPath) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		return osErrToFileErr(err) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	defer f.Close() | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	data := &syscall.Win32finddata{} | 
					
						
							|  |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		e := syscall.FindNextFile(syscall.Handle(f.Fd()), data) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 		if e != nil { | 
					
						
							|  |  |  | 			if e == syscall.ERROR_NO_MORE_FILES { | 
					
						
							|  |  |  | 				break | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 				return osErrToFileErr(&os.PathError{ | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 					Op:   "FindNextFile", | 
					
						
							|  |  |  | 					Path: dirPath, | 
					
						
							|  |  |  | 					Err:  e, | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		name := syscall.UTF16ToString(data.FileName[0:]) | 
					
						
							|  |  |  | 		if name == "" || name == "." || name == ".." { // Useless names
 | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0 { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		var typ os.FileMode = 0 // regular file
 | 
					
						
							|  |  |  | 		if data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 { | 
					
						
							|  |  |  | 			typ = os.ModeDir | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		if e = filter(name, typ); e == errDoneForNow { | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 			// filtering requested to return by caller.
 | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | // Return N entries at the directory dirPath. If count is -1, return all entries
 | 
					
						
							|  |  |  | func readDirN(dirPath string, count int) (entries []string, err error) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	f, err := os.Open(dirPath) | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		return nil, osErrToFileErr(err) | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	defer f.Close() | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 	// Check if file or dir. This is the quickest way.
 | 
					
						
							|  |  |  | 	_, err = f.Seek(0, io.SeekStart) | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		return nil, errFileNotFound | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 	data := &syscall.Win32finddata{} | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 	handle := syscall.Handle(f.Fd()) | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-09 23:54:11 +08:00
										 |  |  | 	for count != 0 { | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 		e := syscall.FindNextFile(handle, data) | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		if e != nil { | 
					
						
							|  |  |  | 			if e == syscall.ERROR_NO_MORE_FILES { | 
					
						
							| 
									
										
										
										
											2016-04-09 02:46:03 +08:00
										 |  |  | 				break | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 				return nil, osErrToFileErr(&os.PathError{ | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 					Op:   "FindNextFile", | 
					
						
							|  |  |  | 					Path: dirPath, | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 					Err:  e, | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2016-04-09 02:46:03 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-06-10 00:44:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		name := syscall.UTF16ToString(data.FileName[0:]) | 
					
						
							| 
									
										
										
										
											2019-08-09 23:54:11 +08:00
										 |  |  | 		if name == "" || name == "." || name == ".." { // Useless names
 | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		switch { | 
					
						
							|  |  |  | 		case data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0: | 
					
						
							| 
									
										
										
										
											2020-04-27 21:30:12 +08:00
										 |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0: | 
					
						
							| 
									
										
										
										
											2019-08-07 03:08:58 +08:00
										 |  |  | 			entries = append(entries, name+SlashSeparator) | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 			entries = append(entries, name) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-09 23:54:11 +08:00
										 |  |  | 		count-- | 
					
						
							| 
									
										
										
										
											2016-04-09 02:46:03 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 10:31:53 +08:00
										 |  |  | 	return entries, nil | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | func globalSync() { | 
					
						
							|  |  |  | 	// no-op on windows
 | 
					
						
							|  |  |  | } |