bump product version to 4.1.6.2
[LibreOffice.git] / extensions / source / logging / logrecord.cxx
blobdfd0cb8f21d1b08bea6dbee36e95d6f2bc60c947
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "logrecord.hxx"
22 #include <osl/time.h>
23 #include <osl/thread.h>
24 #include <osl/diagnose.h>
26 //........................................................................
27 namespace logging
29 //........................................................................
31 using ::com::sun::star::logging::LogRecord;
32 using ::com::sun::star::util::DateTime;
34 //====================================================================
35 //= helper
36 //====================================================================
37 //--------------------------------------------------------------------
38 namespace
40 /** returns a string representation of the current thread
42 @todo
43 We need a way to retrieve the current UNO thread ID as string,
44 which is issue #i77342#
46 OUString getCurrentThreadID()
48 oslThreadIdentifier nThreadID( osl_getThreadIdentifier( NULL ) );
49 return OUString::valueOf( (sal_Int64)nThreadID );
53 //--------------------------------------------------------------------
54 LogRecord createLogRecord( const OUString& _rLoggerName, const OUString& _rClassName,
55 const OUString& _rMethodName, const OUString& _rMessage,
56 sal_Int32 _nLogLevel, oslInterlockedCount _nEventNumber )
58 TimeValue aTimeValue;
59 osl_getSystemTime( &aTimeValue );
61 oslDateTime aDateTime;
62 OSL_VERIFY( osl_getDateTimeFromTimeValue( &aTimeValue, &aDateTime ) );
64 DateTime aTimeStamp;
65 aTimeStamp.Year = aDateTime.Year;
66 aTimeStamp.Month = aDateTime.Month;
67 aTimeStamp.Day = aDateTime.Day;
68 aTimeStamp.Hours = aDateTime.Hours;
69 aTimeStamp.Minutes = aDateTime.Minutes;
70 aTimeStamp.Seconds = aDateTime.Seconds;
71 aTimeStamp.NanoSeconds = aDateTime.NanoSeconds;
73 return LogRecord(
74 _rLoggerName,
75 _rClassName,
76 _rMethodName,
77 _rMessage,
78 aTimeStamp,
79 _nEventNumber,
80 getCurrentThreadID(),
81 _nLogLevel
85 //........................................................................
86 } // namespace logging
87 //........................................................................
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */