| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  Custom Google Test assertions. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Copyright (c) 2012-2014, Victor Zverovich | 
					
						
							|  |  |  |  All rights reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |     list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |     this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |     and/or other materials provided with the distribution. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
					
						
							|  |  |  |  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
					
						
							|  |  |  |  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
					
						
							|  |  |  |  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
					
						
							|  |  |  |  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
					
						
							|  |  |  |  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
					
						
							|  |  |  |  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
					
						
							|  |  |  |  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
					
						
							|  |  |  |  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gtest-extra.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-09 09:07:27 -07:00
										 |  |  | using fmt::File; | 
					
						
							| 
									
										
										
										
											2014-05-04 06:44:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void OutputRedirect::flush() { | 
					
						
							| 
									
										
										
										
											2014-05-04 09:01:18 -07:00
										 |  |  | #if EOF != -1
 | 
					
						
							|  |  |  | # error "FMT_RETRY assumes return value of -1 indicating failure"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |   int result = 0; | 
					
						
							|  |  |  |   FMT_RETRY(result, fflush(file_)); | 
					
						
							|  |  |  |   if (result != 0) | 
					
						
							| 
									
										
										
										
											2014-06-30 14:26:29 -07:00
										 |  |  |     throw fmt::SystemError(errno, "cannot flush stream"); | 
					
						
							| 
									
										
										
										
											2014-05-04 09:01:18 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void OutputRedirect::restore() { | 
					
						
							| 
									
										
										
										
											2014-05-04 10:08:29 -07:00
										 |  |  |   if (original_.descriptor() == -1) | 
					
						
							|  |  |  |     return;  // Already restored.
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   flush(); | 
					
						
							| 
									
										
										
										
											2014-05-04 09:01:18 -07:00
										 |  |  |   // Restore the original file.
 | 
					
						
							|  |  |  |   original_.dup2(FMT_POSIX(fileno(file_))); | 
					
						
							| 
									
										
										
										
											2014-05-04 10:08:29 -07:00
										 |  |  |   original_.close(); | 
					
						
							| 
									
										
										
										
											2014-05-04 09:01:18 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-15 08:58:10 -07:00
										 |  |  | OutputRedirect::OutputRedirect(FILE *file) : file_(file) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   flush(); | 
					
						
							| 
									
										
										
										
											2014-05-03 15:26:44 -07:00
										 |  |  |   int fd = FMT_POSIX(fileno(file)); | 
					
						
							| 
									
										
										
										
											2014-05-04 09:01:18 -07:00
										 |  |  |   // Create a File object referring to the original file.
 | 
					
						
							| 
									
										
										
										
											2014-05-03 16:47:00 -07:00
										 |  |  |   original_ = File::dup(fd); | 
					
						
							|  |  |  |   // Create a pipe.
 | 
					
						
							| 
									
										
										
										
											2014-05-03 12:28:02 -07:00
										 |  |  |   File write_end; | 
					
						
							|  |  |  |   File::pipe(read_end_, write_end); | 
					
						
							| 
									
										
										
										
											2014-05-04 09:01:18 -07:00
										 |  |  |   // Connect the passed FILE object to the write end of the pipe.
 | 
					
						
							| 
									
										
										
										
											2014-05-03 12:28:02 -07:00
										 |  |  |   write_end.dup2(fd); | 
					
						
							| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-04 06:44:50 -07:00
										 |  |  | OutputRedirect::~OutputRedirect() FMT_NOEXCEPT(true) { | 
					
						
							| 
									
										
										
										
											2014-05-03 16:47:00 -07:00
										 |  |  |   try { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |     restore(); | 
					
						
							| 
									
										
										
										
											2014-05-03 16:47:00 -07:00
										 |  |  |   } catch (const std::exception &e) { | 
					
						
							| 
									
										
										
										
											2014-05-04 10:08:29 -07:00
										 |  |  |     std::fputs(e.what(), stderr); | 
					
						
							| 
									
										
										
										
											2014-05-03 16:47:00 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | std::string OutputRedirect::restore_and_read() { | 
					
						
							| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  |   // Restore output.
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   restore(); | 
					
						
							| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-03 11:26:46 -07:00
										 |  |  |   // Read everything from the pipe.
 | 
					
						
							|  |  |  |   std::string content; | 
					
						
							| 
									
										
										
										
											2014-05-04 10:08:29 -07:00
										 |  |  |   if (read_end_.descriptor() == -1) | 
					
						
							|  |  |  |     return content;  // Already read.
 | 
					
						
							| 
									
										
										
										
											2014-05-03 11:26:46 -07:00
										 |  |  |   enum { BUFFER_SIZE = 4096 }; | 
					
						
							| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-05-03 11:26:46 -07:00
										 |  |  |   std::streamsize count = 0; | 
					
						
							|  |  |  |   do { | 
					
						
							| 
									
										
										
										
											2014-05-03 12:28:02 -07:00
										 |  |  |     count = read_end_.read(buffer, BUFFER_SIZE); | 
					
						
							| 
									
										
										
										
											2014-05-03 15:50:22 -07:00
										 |  |  |     content.append(buffer, static_cast<std::size_t>(count)); | 
					
						
							| 
									
										
										
										
											2014-05-03 11:26:46 -07:00
										 |  |  |   } while (count != 0); | 
					
						
							| 
									
										
										
										
											2014-05-04 10:08:29 -07:00
										 |  |  |   read_end_.close(); | 
					
						
							| 
									
										
										
										
											2014-05-03 11:26:46 -07:00
										 |  |  |   return content; | 
					
						
							| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  | std::string format_system_error(int error_code, fmt::StringRef message) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   fmt::MemoryWriter out; | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  |   fmt::internal::format_system_error(out, error_code, message); | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   return out.str(); | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  | } |