~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/linebuffer.cc

  • Committer: Brian Aker
  • Date: 2010-10-20 20:26:18 UTC
  • mfrom: (1859.2.13 refactor)
  • Revision ID: brian@tangent.org-20101020202618-9222n39lm329urv5
Merge for Brian 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "config.h"
19
19
#include "drizzled/internal/my_sys.h"
20
20
#include "client/linebuffer.h"
21
 
#include <boost/version.hpp>
22
21
 
23
22
#include <vector>
24
23
 
28
27
LineBuffer::LineBuffer(uint32_t my_max_size,FILE *my_file)
29
28
  :
30
29
    file(my_file),
31
 
    max_size(my_max_size)
 
30
    line(),
 
31
    max_size(my_max_size),
 
32
    eof(false)
32
33
{
33
 
  if (my_file)
34
 
 
35
 
  /*
36
 
    if here beacuse the old way of using file_descriptor is deprecated in boost
37
 
    1.44.  There is a #define to re-enable the function but this is broken in
38
 
    Fedora 14. See https://bugzilla.redhat.com/show_bug.cgi?id=654480
39
 
  */
40
 
#if BOOST_VERSION < 104400
41
 
    file_stream = new boost::iostreams::stream<boost::iostreams::file_descriptor>(fileno(my_file), true);
42
 
#else
43
 
    file_stream = new boost::iostreams::stream<boost::iostreams::file_descriptor>(fileno(my_file), boost::iostreams::never_close_handle);
44
 
#endif
45
 
  else
46
 
    file_stream = new std::stringstream;
47
34
  line.reserve(max_size);
48
35
}
49
36
 
50
37
void LineBuffer::addString(const string &str)
51
38
{
52
 
  (*file_stream) << str << endl;
 
39
  buffer << str << endl;
53
40
}
54
41
 
55
42
char *LineBuffer::readline()
56
43
{
57
 
  file_stream->getline(&line[0], max_size);
58
 
 
59
 
  if (file_stream->fail())
 
44
  uint32_t read_count;
 
45
 
 
46
  if (file && !eof)
 
47
  {
 
48
    if ((read_count= read(fileno(file), (&line[0]), max_size-1)))
 
49
    {
 
50
      line[read_count+1]= '\0';
 
51
      buffer << &line[0];
 
52
    }
 
53
    else
 
54
      eof= true;
 
55
  }
 
56
 
 
57
  buffer.getline(&line[0],max_size);
 
58
 
 
59
  if (buffer.eof())
60
60
    return 0;
61
61
  else
62
62
    return &line[0];