2021-09-02 08:14:01 +00:00
|
|
|
//===-- runtime/connection.cpp --------------------------------------------===//
|
2020-02-04 16:55:45 -08:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "connection.h"
|
|
|
|
#include "environment.h"
|
2021-11-03 15:33:29 -07:00
|
|
|
#include "io-stmt.h"
|
2020-03-12 12:52:29 -05:00
|
|
|
#include <algorithm>
|
2020-02-04 16:55:45 -08:00
|
|
|
|
|
|
|
namespace Fortran::runtime::io {
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_OFFLOAD_API_GROUP_BEGIN
|
2020-02-04 16:55:45 -08:00
|
|
|
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_API_ATTRS std::size_t ConnectionState::RemainingSpaceInRecord() const {
|
2022-02-17 15:32:06 -08:00
|
|
|
auto recl{recordLength.value_or(openRecl.value_or(
|
|
|
|
executionEnvironment.listDirectedOutputLineLengthLimit))};
|
2020-02-13 14:41:56 -08:00
|
|
|
return positionInRecord >= recl ? 0 : recl - positionInRecord;
|
|
|
|
}
|
|
|
|
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_API_ATTRS bool ConnectionState::NeedAdvance(std::size_t width) const {
|
2021-05-05 11:37:49 -07:00
|
|
|
return positionInRecord > 0 && width > RemainingSpaceInRecord();
|
|
|
|
}
|
|
|
|
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_API_ATTRS bool ConnectionState::IsAtEOF() const {
|
2020-02-13 14:41:56 -08:00
|
|
|
return endfileRecordNumber && currentRecordNumber >= *endfileRecordNumber;
|
|
|
|
}
|
|
|
|
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_API_ATTRS bool ConnectionState::IsAfterEndfile() const {
|
2022-01-07 10:29:23 -08:00
|
|
|
return endfileRecordNumber && currentRecordNumber > *endfileRecordNumber;
|
|
|
|
}
|
|
|
|
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_API_ATTRS void ConnectionState::HandleAbsolutePosition(std::int64_t n) {
|
2020-02-13 14:41:56 -08:00
|
|
|
positionInRecord = std::max(n, std::int64_t{0}) + leftTabLimit.value_or(0);
|
|
|
|
}
|
|
|
|
|
2024-03-25 16:01:25 -07:00
|
|
|
RT_API_ATTRS void ConnectionState::HandleRelativePosition(std::int64_t n) {
|
2020-02-13 14:41:56 -08:00
|
|
|
positionInRecord = std::max(leftTabLimit.value_or(0), positionInRecord + n);
|
2020-02-04 16:55:45 -08:00
|
|
|
}
|
2021-11-03 15:33:29 -07:00
|
|
|
|
|
|
|
SavedPosition::SavedPosition(IoStatementState &io) : io_{io} {
|
|
|
|
ConnectionState &conn{io_.GetConnectionState()};
|
|
|
|
saved_ = conn;
|
|
|
|
conn.pinnedFrame = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SavedPosition::~SavedPosition() {
|
2023-12-26 15:44:31 -08:00
|
|
|
if (!cancelled_) {
|
|
|
|
ConnectionState &conn{io_.GetConnectionState()};
|
|
|
|
while (conn.currentRecordNumber > saved_.currentRecordNumber) {
|
|
|
|
io_.BackspaceRecord();
|
|
|
|
}
|
|
|
|
conn.leftTabLimit = saved_.leftTabLimit;
|
|
|
|
conn.furthestPositionInRecord = saved_.furthestPositionInRecord;
|
|
|
|
conn.positionInRecord = saved_.positionInRecord;
|
|
|
|
conn.pinnedFrame = saved_.pinnedFrame;
|
2021-11-03 15:33:29 -07:00
|
|
|
}
|
|
|
|
}
|
2024-03-25 16:01:25 -07:00
|
|
|
|
|
|
|
RT_OFFLOAD_API_GROUP_END
|
2020-03-28 21:00:16 -07:00
|
|
|
} // namespace Fortran::runtime::io
|