src/hotspot/share/logging/logFileOutput.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 49180 9637557def32
child 53369 55cee96fefec
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49180
diff changeset
     2
 * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     4
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     7
 * published by the Free Software Foundation.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     8
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    13
 * accompanied this code).
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    14
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    18
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    21
 * questions.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    22
 *
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    23
 */
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49180
diff changeset
    24
#ifndef SHARE_LOGGING_LOGFILEOUTPUT_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49180
diff changeset
    25
#define SHARE_LOGGING_LOGFILEOUTPUT_HPP
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    26
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    27
#include "logging/logFileStreamOutput.hpp"
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    28
#include "runtime/semaphore.hpp"
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    29
#include "utilities/globalDefinitions.hpp"
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    30
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    31
class LogDecorations;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    32
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    33
// The log file output, with support for file rotation based on a target size.
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    34
class LogFileOutput : public LogFileStreamOutput {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    35
 private:
46672
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    36
  static const char* const FileOpenMode;
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    37
  static const char* const FileCountOptionKey;
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    38
  static const char* const FileSizeOptionKey;
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    39
  static const char* const PidFilenamePlaceholder;
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    40
  static const char* const TimestampFilenamePlaceholder;
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    41
  static const char* const TimestampFormat;
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    42
  static const size_t DefaultFileCount = 5;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    43
  static const size_t DefaultFileSize = 20 * M;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    44
  static const size_t StartTimeBufferSize = 20;
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    45
  static const size_t PidBufferSize = 21;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    46
  static const uint   MaxRotationFileCount = 1000;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    47
  static char         _pid_str[PidBufferSize];
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    48
  static char         _vm_start_time_str[StartTimeBufferSize];
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    49
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    50
  const char* _name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    51
  char* _file_name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    52
  char* _archive_name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    53
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    54
  uint  _current_file;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    55
  uint  _file_count;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    56
  uint  _file_count_max_digits;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    57
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    58
  size_t  _archive_name_len;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    59
  size_t  _rotate_size;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    60
  size_t  _current_size;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    61
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    62
  // Semaphore used for synchronizing file rotations and writes
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    63
  Semaphore _rotation_semaphore;
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    64
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    65
  void archive();
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    66
  void rotate();
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    67
  bool parse_options(const char* options, outputStream* errstream);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    68
  char *make_file_name(const char* file_name, const char* pid_string, const char* timestamp_string);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    69
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    70
  bool should_rotate() {
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    71
    return _file_count > 0 && _rotate_size > 0 && _current_size >= _rotate_size;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    72
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    73
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    74
  void increment_file_count() {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    75
    _current_file++;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    76
    if (_current_file == _file_count) {
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    77
      _current_file = 0;
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    78
    }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    79
  }
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    80
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    81
 public:
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    82
  LogFileOutput(const char *name);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    83
  virtual ~LogFileOutput();
37465
1d5551f466ee 8146879: Add option for handling existing log files in UL
mlarsson
parents: 35230
diff changeset
    84
  virtual bool initialize(const char* options, outputStream* errstream);
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    85
  virtual int write(const LogDecorations& decorations, const char* msg);
38263
a7488329ad27 8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents: 37465
diff changeset
    86
  virtual int write(LogMessageBuffer::Iterator msg_iterator);
35230
a528ea8203ec 8145294: TestLogRotation.java triggers a race in the UL framework
mlarsson
parents: 34637
diff changeset
    87
  virtual void force_rotate();
49180
9637557def32 8190346: improve unified JVM logging help message and warnings
mlarsson
parents: 47216
diff changeset
    88
  virtual void describe(outputStream* out);
34637
9b9298044d23 8140556: Add force rotation option to VM.log jcmd
ysuenaga
parents: 33097
diff changeset
    89
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    90
  virtual const char* name() const {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    91
    return _name;
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    92
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    93
46672
dc24cb5e50a1 8184309: Buld warnings from GCC 7.1 on Fedora 26
ysuenaga
parents: 40902
diff changeset
    94
  static const char* const Prefix;
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    95
  static void set_file_name_parameters(jlong start_time);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    96
};
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents:
diff changeset
    97
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49180
diff changeset
    98
#endif // SHARE_LOGGING_LOGFILEOUTPUT_HPP