mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
//
|
|
// LogFile_VMS.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/include/Poco/LogFile_VMS.h#1 $
|
|
//
|
|
// Library: Foundation
|
|
// Package: Logging
|
|
// Module: LogFile
|
|
//
|
|
// Definition of the LogFileImpl class using C I/O with OpenVMS extensions.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Foundation_LogFile_VMS_INCLUDED
|
|
#define Foundation_LogFile_VMS_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "Poco/Timestamp.h"
|
|
#include <stdio.h>
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
class Foundation_API LogFileImpl
|
|
/// The implementation of LogFile for OpenVMS.
|
|
/// The C Standard Library functions for file I/O
|
|
/// are used with OpenVMS-specific extensions to
|
|
/// control sharing and locking behavior.
|
|
{
|
|
public:
|
|
LogFileImpl(const std::string& path);
|
|
~LogFileImpl();
|
|
void writeImpl(const std::string& text, bool flush);
|
|
UInt64 sizeImpl() const;
|
|
Timestamp creationDateImpl() const;
|
|
const std::string& pathImpl() const;
|
|
|
|
private:
|
|
std::string _path;
|
|
mutable FILE* _file;
|
|
Timestamp _creationDate;
|
|
};
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
#endif // Foundation_LogFile_VMS_INCLUDED
|