Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "logrecord.hxx"
21 :
22 : #include <osl/time.h>
23 : #include <osl/thread.h>
24 : #include <osl/thread.hxx>
25 : #include <osl/diagnose.h>
26 :
27 :
28 : namespace logging
29 : {
30 :
31 :
32 : using ::com::sun::star::logging::LogRecord;
33 : using ::com::sun::star::util::DateTime;
34 :
35 :
36 : //= helper
37 :
38 :
39 : namespace
40 : {
41 : /** returns a string representation of the current thread
42 :
43 : @todo
44 : We need a way to retrieve the current UNO thread ID as string,
45 : which is issue #i77342#
46 : */
47 0 : OUString getCurrentThreadID()
48 : {
49 0 : oslThreadIdentifier nThreadID( osl::Thread::getCurrentIdentifier() );
50 0 : return OUString::number( (sal_Int64)nThreadID );
51 : }
52 : }
53 :
54 :
55 0 : LogRecord createLogRecord( const OUString& _rLoggerName, const OUString& _rClassName,
56 : const OUString& _rMethodName, const OUString& _rMessage,
57 : sal_Int32 _nLogLevel, oslInterlockedCount _nEventNumber )
58 : {
59 : TimeValue aTimeValue;
60 0 : osl_getSystemTime( &aTimeValue );
61 :
62 : oslDateTime aDateTime;
63 0 : OSL_VERIFY( osl_getDateTimeFromTimeValue( &aTimeValue, &aDateTime ) );
64 :
65 0 : DateTime aTimeStamp;
66 0 : aTimeStamp.Year = aDateTime.Year;
67 0 : aTimeStamp.Month = aDateTime.Month;
68 0 : aTimeStamp.Day = aDateTime.Day;
69 0 : aTimeStamp.Hours = aDateTime.Hours;
70 0 : aTimeStamp.Minutes = aDateTime.Minutes;
71 0 : aTimeStamp.Seconds = aDateTime.Seconds;
72 0 : aTimeStamp.NanoSeconds = aDateTime.NanoSeconds;
73 :
74 : return LogRecord(
75 : _rLoggerName,
76 : _rClassName,
77 : _rMethodName,
78 : _rMessage,
79 : aTimeStamp,
80 : _nEventNumber,
81 : getCurrentThreadID(),
82 : _nLogLevel
83 0 : );
84 : }
85 :
86 :
87 : } // namespace logging
88 :
89 :
90 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|