| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // 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
|