invisible_logger 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ca46784d89f34c1e96402d85cde389a0ea5b6b30
4
+ data.tar.gz: 47164053247b9cc2c5431d6410f9ed3c27b3d6ed
5
+ SHA512:
6
+ metadata.gz: 60a2cc5d7e198ae3c3fe166a070038a113fbddf4b9d2551499e9bed8de2327a2388b8961ac75087b007d1f18a4d6beafab33939fec01e63d7b8dac6b004abd97
7
+ data.tar.gz: e0b1c67e297e9b0547e22b1c64dc4b41cc655f7141d9af8357ee9de325474a4824b45b4040bdf5bac8f88c5ab7755d69683db5d473abed5370816c0691cfcc98
data/.editorconfig ADDED
@@ -0,0 +1,12 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [*.md]
12
+ trim_trailing_whitespace = false
data/.gitignore ADDED
@@ -0,0 +1,88 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
13
+
14
+ ### Ruby ###
15
+ .byebug_history
16
+ *.gem
17
+
18
+ ### macOS ###
19
+ *.DS_Store
20
+ .AppleDouble
21
+ .LSOverride
22
+
23
+ # Icon must end with two \r
24
+ Icon
25
+
26
+ # Thumbnails
27
+ ._*
28
+
29
+ # Files that might appear in the root of a volume
30
+ .DocumentRevisions-V100
31
+ .fseventsd
32
+ .Spotlight-V100
33
+ .TemporaryItems
34
+ .Trashes
35
+ .VolumeIcon.icns
36
+ .com.apple.timemachine.donotpresent
37
+
38
+ # Directories potentially created on remote AFP share
39
+ .AppleDB
40
+ .AppleDesktop
41
+ Network Trash Folder
42
+ Temporary Items
43
+ .apdisk
44
+
45
+ ### Config ###
46
+ /config/*
47
+ !/config/*.sample
48
+
49
+ # Used by dotenv library to load environment variables.
50
+ .env
51
+ .env.*
52
+ .env.local
53
+ .env.local.*
54
+ !.env.local.test
55
+
56
+ ## Documentation cache and generated files:
57
+ /.yardoc/
58
+ /_yardoc/
59
+ /doc/
60
+ /rdoc/
61
+
62
+ ## Environment normalization:
63
+ /.bundle/
64
+ /vendor/bundle
65
+ /lib/bundler/man/
66
+
67
+ # for a library or gem, you might want to ignore these files since the code is
68
+ # intended to run in multiple environments; otherwise, check them in:
69
+ Gemfile.lock
70
+ .ruby-version
71
+ .ruby-gemset
72
+
73
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
74
+ .rvmrc
75
+
76
+ ### Vim ###
77
+ # swap
78
+ [._]*.s[a-v][a-z]
79
+ [._]*.sw[a-p]
80
+ [._]s[a-v][a-z]
81
+ [._]sw[a-p]
82
+ # session
83
+ Session.vim
84
+ # temporary
85
+ .netrwhist
86
+ *~
87
+ # auto-generated tag files
88
+ tags
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,34 @@
1
+ AllCops:
2
+ DisabledByDefault: false
3
+ TargetRubyVersion: 2.4
4
+ Exclude:
5
+ - 'spec/fixtures/**/*'
6
+
7
+ Metrics/LineLength:
8
+ Max: 120
9
+ # To make it possible to copy or click on URIs in the code, we allow lines
10
+ # containing a URI to be longer than Max.
11
+ AllowHeredoc: true
12
+ AllowURI: true
13
+ URISchemes:
14
+ - http
15
+ - https
16
+ # The IgnoreCopDirectives option causes the LineLength rule to ignore cop
17
+ # directives like '# rubocop: enable ...' when calculating a line's length.
18
+ IgnoreCopDirectives: false
19
+ # The IgnoredPatterns option is a list of !ruby/regexp and/or string
20
+ # elements. Strings will be converted to Regexp objects. A line that matches
21
+ # any regular expression listed in this option will be ignored by LineLength.
22
+ IgnoredPatterns: []
23
+
24
+ Metrics/BlockLength:
25
+ Enabled: false
26
+
27
+ Style/AsciiComments:
28
+ Enabled: false
29
+
30
+ Metrics/MethodLength:
31
+ Max: 25
32
+
33
+ Metrics/AbcSize:
34
+ Max: 20
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.1
5
+ before_install: gem install bundler -v 1.16.0
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at smileart21@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
+
7
+ # Specify your gem's dependencies in invisible_logger.gemspec
8
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 smileart
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,159 @@
1
+ # 🕵🏻‍♂️ InvisibleLogger
2
+
3
+ > A tool to output complex logs with minimal intrusion and smallest possible footprint in the "host" code + additional ability to aggregate separate logs.
4
+
5
+ You know how sometimes one can't see the wood for the trees? The same happens with an extensive logging, when long or even multiline logs polute your code and it's hard to see the business logic behind all the noise they create. InvisibleLogger is an attempt to solve this issue.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'invisible_logger'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install invisible_logger
22
+
23
+ ## Usage
24
+
25
+ Have you ever encountered the situation when you can hardly see the business logic behind the logging? Let's consider an example:
26
+
27
+ ```ruby
28
+ # 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧
29
+
30
+ class SomeService
31
+ def initialize(api_key, logger)
32
+ logger.info "Service → count#auth_attempt=1"
33
+ logger.info "Trying to login with the API key: #{api_key}" if ENV['DEBUG']
34
+
35
+ auth_result = ThirdPartyAPI.auth(api_key)
36
+
37
+ if auth_result[:status] == :success
38
+ @tmp_token = auth_result[:auth_token]
39
+
40
+ logger.info %W[
41
+ Service → Authentication was successful! ::
42
+ Status: #{auth_result[:status]} ::
43
+ API Version: #{auth_result[:api_version]} ::
44
+ Temporary token: #{auth_result[:auth_token]}
45
+ ].join ' '
46
+ else
47
+ logger.error %W[
48
+ Service → count#auth_errors=1 ::
49
+ Authentication failed with status #{auth_result[:status]} ::
50
+ Error code: #{auth_result[:error_code]} ::
51
+ Error message: #{auth_result[:error_message]}
52
+ ].join ' '
53
+
54
+ raise ThirdPartyAPIAuthError, auth_result[:error_message]
55
+ end
56
+ end
57
+ end
58
+
59
+ # 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧
60
+ ```
61
+
62
+ With InvisibleLogger you'd be able to refactor it into something like this:
63
+
64
+ ```ruby
65
+ # 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧
66
+
67
+ class SomeService
68
+ include LogStencils::SomeService
69
+
70
+ def initialize(api_key, logger)
71
+ @il = InvisibleLogger.new(logger: logger, log_stencil: LOG_STENCIL)
72
+
73
+ @il.l(binding, :auth_attempt)
74
+ @il.l(binding, :debug_api_key) if ENV['DEBUG']
75
+
76
+ auth_result = ThirdPartyAPI.auth(api_key)
77
+
78
+ if auth_result[:status] == :success
79
+ @tmp_token = auth_result[:auth_token]
80
+ @il.l(binding, :success)
81
+ else
82
+ @il.l(binding, :failure)
83
+ raise ThirdPartyAPIAuthError, auth_result[:error_message]
84
+ end
85
+ end
86
+ end
87
+
88
+ # 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧 🚧
89
+ ```
90
+
91
+ While the log messages themselves live in a separate dedicated place (*but, don't worry about any context lose, InvisibleLogger has DEBUG mode and customisable markers for each messag, plus error messages about wrong var names are quite readable*):
92
+
93
+ ```ruby
94
+ module LogStencils
95
+ module SomeService
96
+ LOG_STENCIL = {
97
+ auth_attempt: {
98
+ level: :info,
99
+ template: <<~LOG
100
+ Service → count#auth_attempt=1
101
+ LOG
102
+ },
103
+ debug_api_key: {
104
+ vars: [: api_key],
105
+ level: :info,
106
+ template: <<~LOG
107
+ Trying to login with the API key: %<api_key>s
108
+ LOG
109
+ },
110
+ success: {
111
+ vars: [
112
+ { status: 'auth_result[:status]' },
113
+ { api_version: 'auth_result[:api_version]' },
114
+ { tmp_token: 'auth_result[:auth_token]' }
115
+ ],
116
+ level: :info,
117
+ template: <<~LOG
118
+ Service → Authentication was successful! ::|
119
+ Status: %<status>s ::|
120
+ API Version: %<api_version>s ::|
121
+ Temporary token: %<tmp_token>s
122
+ LOG
123
+ },
124
+ failure: {
125
+ vars: [
126
+ { status: 'auth_result[:status]' },
127
+ { err_code: 'auth_result[:error_code]' },
128
+ { err_msg: 'auth_result[:error_message]' }
129
+ ],
130
+ level: :error,
131
+ template: <<~LOG
132
+ Service → count#auth_errors=1 ::
133
+ Authentication failed with status %<status>s ::
134
+ Error code: %<err_code>s ::
135
+ Error message: %<err_msg>s
136
+ LOG
137
+ }
138
+ }
139
+ end
140
+ end
141
+ ```
142
+
143
+ ## Development
144
+
145
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
146
+
147
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
148
+
149
+ ## Contributing
150
+
151
+ Bug reports and pull requests are welcome on GitHub at https://github.com/smileart/invisible_logger. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
152
+
153
+ ## License
154
+
155
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
156
+
157
+ ## Code of Conduct
158
+
159
+ Everyone interacting in the InvisibleLogger project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/smileart/invisible_logger/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'invisible_logger'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'invisible_logger'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'invisible_logger'
9
+ spec.version = InvisibleLogger::VERSION
10
+ spec.authors = ['smileart']
11
+ spec.email = ['smileart21@gmail.com']
12
+
13
+ spec.summary = 'A tool to minimise logs footprint in the host code'
14
+ spec.description = 'A tool to output complex logs with minimal intrusion and smallest possible ' \
15
+ 'footprint in the "host" code + additional ability to aggregate separate logs'
16
+ spec.homepage = 'http://github.com/smileart/invisible_logger'
17
+ spec.license = 'MIT'
18
+
19
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
20
+ f.match(%r{^(test|spec|features)/})
21
+ end
22
+ spec.bindir = 'exe'
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ['lib']
25
+
26
+ spec.add_development_dependency 'bundler', '~> 1.16'
27
+ spec.add_development_dependency 'byebug', '~> 9.1'
28
+ spec.add_development_dependency 'inch', '~> 0.7'
29
+ spec.add_development_dependency 'letters', '~> 0.4'
30
+ spec.add_development_dependency 'rake', '~> 12.2'
31
+ spec.add_development_dependency 'rspec', '~> 3.7'
32
+ spec.add_development_dependency 'rubocop', '~> 0.51'
33
+ spec.add_development_dependency 'rubygems-tasks', '~> 0.2'
34
+ spec.add_development_dependency 'simplecov', '~> 0.15'
35
+ spec.add_development_dependency 'timecop', '~> 0.9'
36
+ spec.add_development_dependency 'yard', '~> 0.8'
37
+ end
@@ -0,0 +1,240 @@
1
+ # frozen_string_literal: true
2
+ # encoding: UTF-8
3
+
4
+ # A tool to output complex logs with minimal intrusion and smallest possible
5
+ # footprint in the "host" code + additional ability to aggregate separate logs
6
+ class InvisibleLogger
7
+ # Lib Semantic Version Constant
8
+ VERSION = '0.1.0'
9
+
10
+ # Read-only content of the buffered logs
11
+ # @see #buffer
12
+ attr_reader :aggregator
13
+
14
+ # Read-only "level" the aggregated log is going to be flushed with
15
+ # @see Logger
16
+ # @see #level
17
+ attr_reader :log_level
18
+
19
+ # Create new invisible logger instance
20
+ #
21
+ # @note Use `INV_LOGGER_DEBUG` env var to enable global debug mode
22
+ # @note Use `INV_LOGGER_DEBUG_MARKER` env var to change default debug marker
23
+ #
24
+ # @example
25
+ # LOG_STENCIL = {
26
+ # sum: {
27
+ # vars: [:a, :b, :@sum],
28
+ # level: :debug,
29
+ # template: <<~LOG
30
+ # %<a>s +|
31
+ # %<b>s → |
32
+ # %<@sum>s
33
+ # Splendid! Magnificent!
34
+ # LOG
35
+ # },
36
+ # warning: {
37
+ # vars: [:text],
38
+ # level: :warn,
39
+ # template: '>>>>>>> %<text>s'
40
+ # },
41
+ # additional_info: {
42
+ # template: "Additional INFO and nothing more... 👐"
43
+ # },
44
+ # eval_example: {
45
+ # vars: { const: 'self.class.const_get(:LOG_STENCIL)' },
46
+ # template: 'We can log constants and method calls:: %<const>s'
47
+ # }
48
+ # }
49
+ #
50
+ # ENV['INV_LOGGER_DEBUG'] = '1'
51
+ # ENV['INV_LOGGER_DEBUG_MARKER'] = '🚀 '
52
+ #
53
+ # class Test
54
+ # include TestLogStencil
55
+ #
56
+ # def initialize
57
+ # @logger = Logger.new(STDOUT)
58
+ # @il = InvisibleLogger.new(logger: @logger, log_stencil: LOG_STENCIL)
59
+ #
60
+ # @sum = '42 (Wonderful! Glorious!)'
61
+ # end
62
+ #
63
+ # def sum(a, b)
64
+ # a + b
65
+ # @il.l(binding, :sum, aggregate: true)
66
+ # end
67
+ #
68
+ # def one(text)
69
+ # @il.l(binding, :warning, aggregate: false, debug: true)
70
+ # @il.l(binding, :eval_example)
71
+ # end
72
+ #
73
+ # def test
74
+ # @il.l(binding, :additional_info, aggregate: true)
75
+ # @il.f!
76
+ # end
77
+ # end
78
+ #
79
+ # t = Test.new
80
+ # t.sum(2, 3)
81
+ # t.one('Beware of beavers!')
82
+ # t.test
83
+ #
84
+ # @param [Object] logger any object with standard Logger compartable interface
85
+ # @param [Hash] log_stencil a Hash with the names, levels, templates and var lists (see example!)
86
+ def initialize(logger:, log_stencil:)
87
+ @logger = logger
88
+ @log_stencil = log_stencil
89
+
90
+ @aggregator = ''
91
+ @log_level = :info
92
+
93
+ @debug_marker = ENV['INV_LOGGER_DEBUG_MARKER'] || '▶️ '
94
+ end
95
+
96
+ # Log something
97
+ #
98
+ # @param [Binding] context pass the current context (aka binding)
99
+ # @param [Symbol] name the name of the log stencil to use
100
+ # @param [Boolean] aggregate should the logger aggregate this message or log (default: false)
101
+ # @param [Boolean] debug the debug mode flag. Outputs the marker
102
+ # and the name along with tht message (default: false)
103
+ #
104
+ # @note ⚠️ WARNING!!! Keep in mind that `debug` parameter could be overwritten with INV_LOGGER_DEBUG
105
+ # environment variable
106
+ #
107
+ # @raise [KeyError] if we work in debug mode
108
+ # @return [Boolean] true if the message was logged successfully, false if the message wasn't logged
109
+ # due to anny reason (including aggregation)
110
+ def log(context, name, aggregate: false, debug: false)
111
+ return unless context.respond_to?(:eval) && @log_stencil&.fetch(name, nil)
112
+
113
+ @log_level, log_template, log_values = init_stencil_for(context, name, debug)
114
+
115
+ log_text = render_log(log_template, log_values)
116
+
117
+ aggregate ? accumulate(log_text) : flush(@log_level, log_text)
118
+ rescue KeyError => e
119
+ handle_template_error(e, debug)
120
+ end
121
+
122
+ # Flush the aggregated message and clean the accumulator var on success
123
+ #
124
+ # @note ⚠️ WARNING!!! This method empties the message accumulator on successfull log flushing
125
+ # @note ⚠️ WARNING!!! Aggregated message will be logged with the level of the last stencil
126
+ #
127
+ # @return [String, Nil] empty String (latest aggregator state) of nil
128
+ def flush!(dev_null = false)
129
+ @aggregator = '' if dev_null || flush(@log_level, @aggregator)
130
+ end
131
+
132
+ # A short alias for the flush! method (to make the logging footprint even smaller)
133
+ alias f! flush!
134
+
135
+ # A short alias for the log method (to make the logging footprint even smaller)
136
+ # @note Beware of potential letters gem incompartability http://lettersrb.com
137
+ alias l log
138
+
139
+ # An alias to get the content of the buffered logs
140
+ alias buffer aggregator
141
+
142
+ # An alias to get a level the aggregated log is going to be flushed with
143
+ alias level log_level
144
+
145
+ private
146
+
147
+ # Flush the aggregated message if the level is supported by the Logger provided
148
+ #
149
+ # @return [Boolean] true if the level method is supported and called, false otherwise
150
+ def flush(level, log)
151
+ return if !log || log.empty?
152
+ @logger.respond_to?(level) ? !@logger.send(level, log).nil? : false
153
+ end
154
+
155
+ # Stencil handling method — extracts level, template and vars, converts vars to String,
156
+ # encodes them to UTF-8, links var names to the values from context
157
+ # @see Ruby `format` method for template string / template values Hash reference
158
+ #
159
+ # @param [Binding] context context to evaluate vars/expression in
160
+ # @param [Symbol] name the name of the log stencil
161
+ # @param [Boolean] debug render template in debug mode
162
+ #
163
+ # @return [Array(Symbol, String, Hash)] returns and array of log_method (Symbol), log_template (template String),
164
+ # log_values (Hash for the template String)
165
+ def init_stencil_for(context, name, debug = false)
166
+ stencil = @log_stencil&.fetch(name)
167
+
168
+ log_method = stencil.fetch(:level, nil) || :info
169
+ log_template = init_log_template(stencil, name, debug)
170
+ log_values = init_log_values(stencil, context)
171
+
172
+ [log_method, log_template, log_values]
173
+ end
174
+
175
+ # Accumulate aggreagated log message and return false
176
+ #
177
+ # @param [String] message the message to put to the "aggregator" buffer
178
+ #
179
+ # @return [Boolean] false to return from log method (meaning nothing was logged to the output)
180
+ def accumulate(message)
181
+ @aggregator += " #{message}" if message
182
+ false
183
+ end
184
+
185
+ # Fetch the template for the given name from the stencil + take the debug mode into account
186
+ #
187
+ # @param [Hash] stencil a Hash with the names, levels, templates and var lists (see example!)
188
+ # @param [Symbol] name the name of the log stencil
189
+ # @param [Boolean] debug render template in debug mode
190
+ #
191
+ # @return [String, Nil] fully prepared template string or nil
192
+ def init_log_template(stencil, name, debug = false)
193
+ log_template = stencil.fetch(:template, nil)
194
+ log_template = debug || ENV['INV_LOGGER_DEBUG'] ? "#{@debug_marker}#{name} :: #{log_template}" : log_template
195
+ log_template&.split("|\n")&.join(' ')&.strip
196
+ end
197
+
198
+ # Form log values to put into the template using given context
199
+ #
200
+ # @param [Hash] stencil a Hash with the names, levels, templates and var lists (see example!)
201
+ # @param [Binding] context context to take vars/expression values from
202
+ #
203
+ # @return [Hash, Nil] Hash with all the values ready for `format` method or nil in case of no vars
204
+ def init_log_values(stencil, context)
205
+ log_values = {}
206
+ log_vars = stencil.fetch(:vars, [])
207
+
208
+ log_vars.each do |v|
209
+ if v.respond_to?(:each_pair)
210
+ log_values[v.keys.first] = context.eval(v.values.first.to_s)
211
+ else
212
+ log_values[v] = context.eval(v.to_s)
213
+ end
214
+ end
215
+
216
+ log_values = log_values.each_with_object({}) { |(k, v), h| h[k.to_sym] = v.to_s.dup.force_encoding('UTF-8') }
217
+
218
+ log_values.empty? ? nil : log_values
219
+ end
220
+
221
+ # Render log message (fill template placeholders with the respective values) or receive a static String
222
+ #
223
+ # @param [String] template standard ruby tempalte string with named placeholders
224
+ # @param [Hash] values standard ruby Hash with respective key names to fill placeholders
225
+ #
226
+ # @return [String] Rendered template string with filled placeholders filled with the respective values
227
+ def render_log(template, values)
228
+ template && values ? format(template, values) : template
229
+ end
230
+
231
+ # Handle log method exceptions (takes into account the debug mode)
232
+ #
233
+ # @param [Exception] exception the exception to handle
234
+ #
235
+ # @raise [KeyError] if we work in debug mode
236
+ # @return [String] Rendered template string with filled placeholders filled with the respective values
237
+ def handle_template_error(exception, debug = false)
238
+ raise exception if debug || ENV['INV_LOGGER_DEBUG']
239
+ end
240
+ end
metadata ADDED
@@ -0,0 +1,213 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: invisible_logger
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - smileart
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-12-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: byebug
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '9.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '9.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: inch
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.7'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.7'
55
+ - !ruby/object:Gem::Dependency
56
+ name: letters
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.4'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.4'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.2'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.7'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.7'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.51'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.51'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubygems-tasks
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.2'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.2'
125
+ - !ruby/object:Gem::Dependency
126
+ name: simplecov
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '0.15'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '0.15'
139
+ - !ruby/object:Gem::Dependency
140
+ name: timecop
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.9'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.9'
153
+ - !ruby/object:Gem::Dependency
154
+ name: yard
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '0.8'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '0.8'
167
+ description: A tool to output complex logs with minimal intrusion and smallest possible
168
+ footprint in the "host" code + additional ability to aggregate separate logs
169
+ email:
170
+ - smileart21@gmail.com
171
+ executables: []
172
+ extensions: []
173
+ extra_rdoc_files: []
174
+ files:
175
+ - ".editorconfig"
176
+ - ".gitignore"
177
+ - ".rspec"
178
+ - ".rubocop.yml"
179
+ - ".travis.yml"
180
+ - CODE_OF_CONDUCT.md
181
+ - Gemfile
182
+ - LICENSE.txt
183
+ - README.md
184
+ - Rakefile
185
+ - bin/console
186
+ - bin/setup
187
+ - invisible_logger.gemspec
188
+ - lib/invisible_logger.rb
189
+ homepage: http://github.com/smileart/invisible_logger
190
+ licenses:
191
+ - MIT
192
+ metadata: {}
193
+ post_install_message:
194
+ rdoc_options: []
195
+ require_paths:
196
+ - lib
197
+ required_ruby_version: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ required_rubygems_version: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ requirements: []
208
+ rubyforge_project:
209
+ rubygems_version: 2.6.14
210
+ signing_key:
211
+ specification_version: 4
212
+ summary: A tool to minimise logs footprint in the host code
213
+ test_files: []