-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Move the 'thread-local stack' implementation up from datastore. #622
Merged
tseaver
merged 3 commits into
googleapis:master
from
tseaver:move-thread_local_stack_up
Feb 12, 2015
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
"""Thread-local resource stack. | ||
|
||
Not an API. | ||
""" | ||
|
||
try: | ||
from threading import local as Local | ||
except ImportError: # pragma: NO COVER (who doesn't have it?) | ||
class Local(object): | ||
"""Placeholder for non-threaded applications.""" | ||
|
||
|
||
class _LocalStack(Local): | ||
"""Manage a thread-local LIFO stack of resources. | ||
|
||
Intended for use in :class:`gcloud.datastore.batch.Batch.__enter__`, | ||
:class:`gcloud.storage.batch.Batch.__enter__`, etc. | ||
""" | ||
def __init__(self): | ||
super(_LocalStack, self).__init__() | ||
self._stack = [] | ||
|
||
def __iter__(self): | ||
"""Iterate the stack in LIFO order. | ||
""" | ||
return iter(reversed(self._stack)) | ||
|
||
def push(self, resource): | ||
"""Push a resource onto our stack. | ||
""" | ||
self._stack.append(resource) | ||
|
||
def pop(self): | ||
"""Pop a resource from our stack. | ||
|
||
:raises: IndexError if the stack is empty. | ||
:returns: the top-most resource, after removing it. | ||
""" | ||
return self._stack.pop() | ||
|
||
@property | ||
def top(self): | ||
"""Get the top-most resource | ||
|
||
:returns: the top-most item, or None if the stack is empty. | ||
""" | ||
if len(self._stack) > 0: | ||
return self._stack[-1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import unittest2 | ||
|
||
|
||
class Test__LocalStack(unittest2.TestCase): | ||
|
||
def _getTargetClass(self): | ||
from gcloud._localstack import _LocalStack | ||
|
||
return _LocalStack | ||
|
||
def _makeOne(self): | ||
return self._getTargetClass()() | ||
|
||
def test_it(self): | ||
batch1, batch2 = object(), object() | ||
batches = self._makeOne() | ||
self.assertEqual(list(batches), []) | ||
self.assertTrue(batches.top is None) | ||
batches.push(batch1) | ||
self.assertTrue(batches.top is batch1) | ||
batches.push(batch2) | ||
self.assertTrue(batches.top is batch2) | ||
popped = batches.pop() | ||
self.assertTrue(popped is batch2) | ||
self.assertTrue(batches.top is batch1) | ||
self.assertEqual(list(batches), [batch1]) | ||
popped = batches.pop() | ||
self.assertTrue(batches.top is None) | ||
self.assertEqual(list(batches), []) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.