StreamHandlerFactory.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright 2017-present Facebook, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #pragma once
  17. #include <folly/logging/LogHandlerFactory.h>
  18. namespace folly {
  19. /**
  20. * StreamHandlerFactory is a LogHandlerFactory that constructs log handlers
  21. * that write to stdout or stderr.
  22. *
  23. * This is quite similar to FileHandlerFactory, but it always writes to an
  24. * existing open file descriptor rather than opening a new file. This handler
  25. * factory is separate from FileHandlerFactory primarily for safety reasons:
  26. * FileHandlerFactory supports appending to arbitrary files via config
  27. * parameters, while StreamHandlerFactory does not.
  28. */
  29. class StreamHandlerFactory : public LogHandlerFactory {
  30. public:
  31. StringPiece getType() const override {
  32. return "stream";
  33. }
  34. std::shared_ptr<LogHandler> createHandler(const Options& options) override;
  35. private:
  36. class WriterFactory;
  37. };
  38. } // namespace folly