12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #include "QsLogDest.h"
- #include "QsLogDestConsole.h"
- #include "QsLogDestFile.h"
- #include "QsLogDestFunctor.h"
- #include <QString>
- namespace QsLogging
- {
- Destination::~Destination()
- {
- }
- DestinationPtr DestinationFactory::MakeFileDestination(const QString& filePath,
- LogRotationOption rotation, const MaxSizeBytes &sizeInBytesToRotateAfter,
- const MaxOldLogCount &oldLogsToKeep)
- {
- if (EnableLogRotation == rotation || EnableLogRotationOnOpen == rotation) {
- QScopedPointer<SizeRotationStrategy> logRotation(new SizeRotationStrategy);
- logRotation->setMaximumSizeInBytes(sizeInBytesToRotateAfter.size);
- logRotation->setBackupCount(oldLogsToKeep.count);
- FileDestination *dest = new FileDestination(filePath, RotationStrategyPtr(logRotation.take()));
- if (EnableLogRotationOnOpen == rotation && dest->rotationStrategy()->currentSizeInBytes() > 0)
- dest->rotate();
- return DestinationPtr(dest);
- }
- return DestinationPtr(new FileDestination(filePath, RotationStrategyPtr(new NullRotationStrategy)));
- }
- DestinationPtr DestinationFactory::MakeDebugOutputDestination()
- {
- return DestinationPtr(new DebugOutputDestination);
- }
- DestinationPtr DestinationFactory::MakeFunctorDestination(QsLogging::Destination::LogFunction f)
- {
- return DestinationPtr(new FunctorDestination(f));
- }
- DestinationPtr DestinationFactory::MakeFunctorDestination(QObject *receiver, const char *member)
- {
- return DestinationPtr(new FunctorDestination(receiver, member));
- }
- }
|