~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_write.cc

  • Committer: Brian Aker
  • Date: 2010-08-12 17:19:46 UTC
  • mfrom: (1701.1.1 turn-off-csv)
  • Revision ID: brian@tangent.org-20100812171946-n44naaqhg27gehlh
MErge Monty, remove CSV from auto-build

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
 
 
16
 
#include <config.h>
17
 
 
18
 
#include <drizzled/internal/my_sys.h>
19
 
#include <drizzled/internal/thread_var.h>
20
 
#include <drizzled/error.h>
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#include "config.h"
 
17
 
 
18
#include "drizzled/internal/my_sys.h"
 
19
#include "drizzled/internal/thread_var.h"
 
20
#include "drizzled/error.h"
21
21
#include <cerrno>
22
22
 
23
23
namespace drizzled
48
48
      Count-=writenbytes;
49
49
    }
50
50
    errno=errno;
 
51
#ifndef NO_BACKGROUND
 
52
    if (my_thread_var->abort)
 
53
      MyFlags&= ~ MY_WAIT_IF_FULL;              /* End if aborted by user */
 
54
    if ((errno == ENOSPC || errno == EDQUOT) &&
 
55
        (MyFlags & MY_WAIT_IF_FULL))
 
56
    {
 
57
      if (!(errors++ % MY_WAIT_GIVE_USER_A_MESSAGE))
 
58
        my_error(EE_DISK_FULL,MYF(ME_BELL | ME_NOREFRESH),
 
59
                 "unknown", errno,MY_WAIT_FOR_USER_TO_FIX_PANIC);
 
60
      sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC);
 
61
      continue;
 
62
    }
 
63
 
 
64
    if ((writenbytes == 0 || writenbytes == (size_t) -1))
 
65
    {
 
66
      if (errno == EINTR)
 
67
      {
 
68
        continue;                               /* Interrupted */
 
69
      }
 
70
 
 
71
      if (!writenbytes && !errors++)            /* Retry once */
 
72
      {
 
73
        /* We may come here if the file quota is exeeded */
 
74
        errno=EFBIG;                            /* Assume this is the error */
 
75
        continue;
 
76
      }
 
77
    }
 
78
    else
 
79
      continue;                                 /* Retry */
 
80
#endif
51
81
    if (MyFlags & (MY_NABP | MY_FNABP))
52
82
    {
53
83
      if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))