1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
//=============================================================================
/**
* @file test_ostream.cpp
*
* $Id: test_ostream.cpp 93639 2011-03-24 13:32:13Z johnnyw $
*
* This program tests the Log_Msg abstraction wrt writing to
* stderr and to a file.
*
*
* @author Irfan Pyarali <irfan@cse.wustl.edu>
*/
//=============================================================================
#include "ace/OS_main.h"
// FUZZ: disable check_for_streams_include
#include "ace/streams.h"
#include "ace/Log_Msg.h"
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
// This message should show up in stderr.
ACE_DEBUG ((LM_DEBUG,
"first message\n"));
ACE_LOG_MSG->clr_flags (ACE_Log_Msg::STDERR);
// This message should not show up anywhere.
ACE_DEBUG ((LM_DEBUG,
"second message\n"));
ACE_LOG_MSG->set_flags (ACE_Log_Msg::OSTREAM);
// This message should not show up anywhere since no ostream has
// been specified.
ACE_DEBUG ((LM_DEBUG,
"third message\n"));
#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
// Create a persistent store.
const char *filename = "output";
ofstream outfile (filename, ios::out | ios::trunc);
// Check for errors.
if (outfile.bad ())
return 1;
// Set the ostream.
ACE_LOG_MSG->msg_ostream (&outfile);
// This message should show up in the ostream.
ACE_DEBUG ((LM_DEBUG,
"fourth message\n"));
#endif /* ACE_LACKS_IOSTREAM_TOTALLY */
ACE_LOG_MSG->set_flags (ACE_Log_Msg::STDERR);
// This message should show up in stderr and the ostream (without
// ACE_LACKS_IOSTREAM_TOTALLY).
ACE_DEBUG ((LM_DEBUG,
"fifth message\n"));
#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
ifstream infile (filename, ios::in);
if (infile.bad ())
return 1;
// This loop should print out the contents of file "output", which should
// have the strings "fourth\n" and "fifth\n" in them.
char line[BUFSIZ];
while (infile.getline (line, BUFSIZ, '\n'))
std::cout << line << std::endl;
#endif /* ACE_LACKS_IOSTREAM_TOTALLY */
return 0;
}
|