Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a context manager object and a method to call said object #357

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Changes from 14 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8d1ae15
quick context manager prototype
Oct 20, 2020
529f0a4
adding some defaults
Oct 20, 2020
5bac851
default param added
Oct 20, 2020
4eeed1a
assignment, duh
Oct 20, 2020
4714ba4
debugging
Oct 20, 2020
021661d
dont delete feature flag data if exception was raise
Oct 20, 2020
2401f78
some quick refactoring to flush data when getting out of scope
Oct 20, 2020
00e4967
adding user default params
Oct 20, 2020
9c51dcc
Utilize linked list structure for scope of context manager
Oct 28, 2020
642cc20
Create watch wrapper method and rename FeatureFlags
Nov 4, 2020
ea80652
Revert renamte of FeatureFlags
Nov 4, 2020
83b77b5
Generalize FeatureFlags context manager
Nov 6, 2020
9e4c34a
Remove unnecessary re-assignment
Nov 9, 2020
5b63fc0
Clear out scopes after report_exc_info is called
Nov 9, 2020
0483523
Merge branch 'master' into context-manager-ld
Nov 10, 2020
ae692bf
Clear scope on exit only
Nov 11, 2020
fa6cf69
Change reference to scope to tag and force extra_data to be a dict
Nov 11, 2020
e7c0b5c
Attach the tag to the exception on exit
Nov 12, 2020
8d89888
Refactor tags check
Nov 17, 2020
9ca6df6
Implement specific feature flags interface
Nov 17, 2020
48eaa57
change context manager object to take in dict
Nov 17, 2020
e5fb916
Make feature flags stack thread safe
Nov 17, 2020
5bae76e
Use tags instead of feature flags
Nov 18, 2020
7378835
Add check for attr
Nov 18, 2020
69b035e
Model feature flags with tags
Nov 20, 2020
430fd29
Fix typo in comment
Nov 24, 2020
5eb2da2
Add test cases for the feature_flag context manager
Nov 25, 2020
00c89ec
Use [0][0] to index mocked object
Nov 25, 2020
25045f9
Remove feature_flag.data.order
Nov 25, 2020
bcece26
use self.tags rather than self.tag
Nov 30, 2020
1153529
Initialize _tags in thread_local on append and value
Dec 1, 2020
d3894db
Move flattening to _LocalTags and rename _tags
Dec 4, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,23 @@ def wait(f=None):
return f()


def watch(key, extra_data=None):
ajtran marked this conversation as resolved.
Show resolved Hide resolved
"""
Sets the scope for the code wrapped by this method.

key: key for the current scope.
extra_data: optional, will be included in the root level of the 'scope' object. If not
a dict, the value can be found under the 'extra' key in the 'scope' object.
The keyword 'key' is reserved.

Usage:

with Rollbar.watch('foobar'):
do_something_risky()
"""
return _BigBrother(key, extra_data)


class ApiException(Exception):
"""
This exception will be raised if there was a problem decoding the
Expand Down Expand Up @@ -702,6 +719,12 @@ def _report_exc_info(exc_info, request, extra_data, payload_data, level=None):
if extra_trace_data and not extra_data:
data['custom'] = extra_trace_data

if scopes:
data['scope'] = scopes[-1]
ajtran marked this conversation as resolved.
Show resolved Hide resolved

global scopes
ajtran marked this conversation as resolved.
Show resolved Hide resolved
scopes = []

request = _get_actual_request(request)
_add_request_data(data, request)
_add_person_data(data, request)
Expand Down Expand Up @@ -787,6 +810,9 @@ def _report_message(message, level, request, extra_data, payload_data):
_add_person_data(data, request)
_add_lambda_context_data(data)
data['server'] = _build_server_data()

if scopes:
data['scope'] = scopes[-1]

if payload_data:
data = dict_merge(data, payload_data, silence_errors=True)
Expand Down Expand Up @@ -1606,3 +1632,34 @@ def _wsgi_extract_user_ip(environ):
if real_ip:
return real_ip
return environ['REMOTE_ADDR']


scopes = []


class _BigBrother(object):
ajtran marked this conversation as resolved.
Show resolved Hide resolved
"""
Context manager object that interfaces with the `scopes` stack:

On enter, puts current scope object on top of stack.
On exit and there is no exception, pops off top element from stack.
"""
def __init__(self, key, extra_data):
scope = {'key': key}

if extra_data:
if not isinstance(extra_data, dict):
extra_data = {'extra': extra_data}

extra_data.update(scope)
scope = extra_data

self.scope = scope

def __enter__(self):
scopes.append(self.scope)
return self

def __exit__(self, exc_type, exc_value, traceback):
if not exc_type:
scopes.pop()
ajtran marked this conversation as resolved.
Show resolved Hide resolved