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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/** @file
Record compatibility definitions
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "tscore/ink_platform.h"
#include "tscore/ink_string.h"
#include "P_RecFile.h"
#include "P_RecDefs.h"
#include "P_RecUtils.h"
#include <array>
//-------------------------------------------------------------------------
// RecFileOpenR
//-------------------------------------------------------------------------
RecHandle
RecFileOpenR(const char *file)
{
RecHandle h_file;
return ((h_file = ::open(file, O_RDONLY)) < 0) ? REC_HANDLE_INVALID : h_file;
}
//-------------------------------------------------------------------------
// RecFileOpenW
//-------------------------------------------------------------------------
RecHandle
RecFileOpenW(const char *file)
{
RecHandle h_file;
if ((h_file = ::open(file, O_WRONLY | O_TRUNC | O_CREAT, 0600)) < 0) {
return REC_HANDLE_INVALID;
}
fcntl(h_file, F_SETFD, FD_CLOEXEC);
return h_file;
}
//-------------------------------------------------------------------------
// RecFileSync
//-------------------------------------------------------------------------
int
RecFileSync(RecHandle h_file)
{
return (fsync(h_file) == 0) ? REC_ERR_OKAY : REC_ERR_FAIL;
}
//-------------------------------------------------------------------------
// RecFileClose
//-------------------------------------------------------------------------
int
RecFileClose(RecHandle h_file)
{
return (close(h_file) == 0) ? REC_ERR_OKAY : REC_ERR_FAIL;
}
//-------------------------------------------------------------------------
// RecSnapFileRead
//-------------------------------------------------------------------------
int
RecSnapFileRead(RecHandle h_file, char *buf, int size, int *bytes_read)
{
if ((*bytes_read = ::pread(h_file, buf, size, VERSION_HDR_SIZE)) <= 0) {
*bytes_read = 0;
return REC_ERR_FAIL;
}
return REC_ERR_OKAY;
}
//-------------------------------------------------------------------------
// RecFileRead
//-------------------------------------------------------------------------
int
RecFileRead(RecHandle h_file, char *buf, int size, int *bytes_read)
{
if ((*bytes_read = ::read(h_file, buf, size)) <= 0) {
*bytes_read = 0;
return REC_ERR_FAIL;
}
return REC_ERR_OKAY;
}
//-------------------------------------------------------------------------
// RecSnapFileWrite
//-------------------------------------------------------------------------
int
RecSnapFileWrite(RecHandle h_file, char *buf, int size, int *bytes_written)
{
// First write the version byes for snap file
std::array<char, VERSION_HDR_SIZE> VERSION_HDR{{'V', PACKAGE_VERSION[0], PACKAGE_VERSION[2], PACKAGE_VERSION[4], '\0'}};
if (::write(h_file, VERSION_HDR.data(), VERSION_HDR_SIZE) < 0) {
return REC_ERR_FAIL;
}
if ((*bytes_written = ::pwrite(h_file, buf, size, VERSION_HDR_SIZE)) < 0) {
*bytes_written = 0;
return REC_ERR_FAIL;
}
return REC_ERR_OKAY;
}
//-------------------------------------------------------------------------
// RecFileWrite
//-------------------------------------------------------------------------
int
RecFileWrite(RecHandle h_file, char *buf, int size, int *bytes_written)
{
if ((*bytes_written = ::write(h_file, buf, size)) < 0) {
*bytes_written = 0;
return REC_ERR_FAIL;
}
return REC_ERR_OKAY;
}
//-------------------------------------------------------------------------
// RecFileGetSize
//-------------------------------------------------------------------------
int
RecFileGetSize(RecHandle h_file)
{
struct stat fileStats;
fstat(h_file, &fileStats);
return static_cast<int>(fileStats.st_size);
}
//-------------------------------------------------------------------------
// RecFileExists
//-------------------------------------------------------------------------
int
RecFileExists(const char *file)
{
RecHandle h_file;
if ((h_file = RecFileOpenR(file)) == REC_HANDLE_INVALID) {
return REC_ERR_FAIL;
}
RecFileClose(h_file);
return REC_ERR_OKAY;
}
|