| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2015, 2016, 2017 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +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-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | func handleSignals() { | 
					
						
							|  |  |  | 	// Custom exit function
 | 
					
						
							|  |  |  | 	exit := func(state bool) { | 
					
						
							|  |  |  | 		// If global profiler is set stop before we exit.
 | 
					
						
							|  |  |  | 		if globalProfiler != nil { | 
					
						
							|  |  |  | 			globalProfiler.Stop() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		if state { | 
					
						
							|  |  |  | 			os.Exit(0) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		os.Exit(1) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 	stopProcess := func() bool { | 
					
						
							|  |  |  | 		var err, oerr error | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		err = globalHTTPServer.Shutdown() | 
					
						
							|  |  |  | 		errorIf(err, "Unable to shutdown http server") | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		if objAPI := newObjectLayerFn(); objAPI != nil { | 
					
						
							|  |  |  | 			oerr = objAPI.Shutdown() | 
					
						
							|  |  |  | 			errorIf(oerr, "Unable to shutdown object layer") | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 07:33:21 +08:00
										 |  |  | 		return (err == nil && oerr == nil) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for { | 
					
						
							|  |  |  | 		select { | 
					
						
							|  |  |  | 		case err := <-globalHTTPServerErrorCh: | 
					
						
							|  |  |  | 			errorIf(err, "http server exited abnormally") | 
					
						
							|  |  |  | 			var oerr error | 
					
						
							|  |  |  | 			if objAPI := newObjectLayerFn(); objAPI != nil { | 
					
						
							|  |  |  | 				oerr = objAPI.Shutdown() | 
					
						
							|  |  |  | 				errorIf(oerr, "Unable to shutdown object layer") | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			exit(err == nil && oerr == nil) | 
					
						
							|  |  |  | 		case osSignal := <-globalOSSignalCh: | 
					
						
							|  |  |  | 			log.Printf("Exiting on signal %v\n", osSignal) | 
					
						
							|  |  |  | 			exit(stopProcess()) | 
					
						
							|  |  |  | 		case signal := <-globalServiceSignalCh: | 
					
						
							|  |  |  | 			switch signal { | 
					
						
							|  |  |  | 			case serviceStatus: | 
					
						
							|  |  |  | 				// Ignore this at the moment.
 | 
					
						
							|  |  |  | 			case serviceRestart: | 
					
						
							|  |  |  | 				log.Println("Restarting on service signal") | 
					
						
							|  |  |  | 				err := globalHTTPServer.Shutdown() | 
					
						
							|  |  |  | 				errorIf(err, "Unable to shutdown http server") | 
					
						
							|  |  |  | 				rerr := restartProcess() | 
					
						
							|  |  |  | 				errorIf(rerr, "Unable to restart the server") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				exit(err == nil && rerr == nil) | 
					
						
							|  |  |  | 			case serviceStop: | 
					
						
							|  |  |  | 				log.Println("Stopping on service signal") | 
					
						
							|  |  |  | 				exit(stopProcess()) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-16 11:20:38 +08:00
										 |  |  | } |