write-full.c revision ca8863af6ce6b695a369dfb7b50e909420dc45df
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen/*
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen write-full.c - Simpler API to write to file
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen Copyright (c) 2002 Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen Permission is hereby granted, free of charge, to any person obtaining
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen a copy of this software and associated documentation files (the
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen "Software"), to deal in the Software without restriction, including
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen without limitation the rights to use, copy, modify, merge, publish,
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen distribute, sublicense, and/or sell copies of the Software, and to
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen permit persons to whom the Software is furnished to do so, subject to
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen the following conditions:
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen The above copyright notice and this permission notice shall be
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen included in all copies or substantial portions of the Software.
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen*/
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
d2f5aacd3d549c3d39dae41b6522d585244b016dTimo Sirainen#include "lib.h"
ca8863af6ce6b695a369dfb7b50e909420dc45dfTimo Sirainen#include "write-full.h"
d2f5aacd3d549c3d39dae41b6522d585244b016dTimo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen#include <unistd.h>
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainenint write_full(int fd, const void *data, size_t size)
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen{
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen ssize_t ret;
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
279184dd3ab877f8f08c05f81a5570b20c6c215eTimo Sirainen while (size > 0) {
d2f5aacd3d549c3d39dae41b6522d585244b016dTimo Sirainen ret = write(fd, data, size < SSIZE_T_MAX ? size : SSIZE_T_MAX);
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen if (ret < 0)
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen return -1;
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen if (ret == 0) {
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen /* nothing was written, only reason for this should
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen be out of disk space */
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen errno = ENOSPC;
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen return -1;
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen }
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen size -= ret;
279184dd3ab877f8f08c05f81a5570b20c6c215eTimo Sirainen }
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen return 0;
c27c55fe2c083c7573cde51e366ef689c1a69708Timo Sirainen}