Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / pithos / backends / util.py @ 369a7b41

History | View | Annotate | Download (5.8 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from objpool import ObjectPool
35
from new import instancemethod
36
from select import select
37
from traceback import print_exc
38
from pithos.backends import connect_backend
39

    
40
USAGE_LIMIT = 500
41

    
42

    
43
class PithosBackendPool(ObjectPool):
44
    def __init__(self, size=None, db_module=None, db_connection=None,
45
                 block_module=None, block_path=None, block_umask=None,
46
                 block_size=None, hash_algorithm=None,
47
                 queue_module=None, queue_hosts=None,
48
                 queue_exchange=None, free_versioning=True,
49
                 astakos_url=None, service_token=None,
50
                 astakosclient_poolsize=None,
51
                 block_params=None,
52
                 public_url_security=None,
53
                 public_url_alphabet=None,
54
                 account_quota_policy=None,
55
                 container_quota_policy=None,
56
                 container_versioning_policy=None
57
        ):
58
        super(PithosBackendPool, self).__init__(size=size)
59
        self.db_module = db_module
60
        self.db_connection = db_connection
61
        self.block_module = block_module
62
        self.block_path = block_path
63
        self.block_umask = block_umask
64
        self.block_size = block_size
65
        self.hash_algorithm = hash_algorithm
66
        self.queue_module = queue_module
67
        self.block_params = block_params
68
        self.queue_hosts = queue_hosts
69
        self.queue_exchange = queue_exchange
70
        self.astakos_url = astakos_url
71
        self.service_token = service_token
72
        self.astakosclient_poolsize = astakosclient_poolsize
73
        self.free_versioning = free_versioning
74
        self.public_url_security = public_url_security
75
        self.public_url_alphabet = public_url_alphabet
76
        self.account_quota_policy = account_quota_policy
77
        self.container_quota_policy = container_quota_policy
78
        self.container_versioning_policy = container_versioning_policy
79

    
80
    def _pool_create(self):
81
        backend = connect_backend(
82
                db_module=self.db_module,
83
                db_connection=self.db_connection,
84
                block_module=self.block_module,
85
                block_path=self.block_path,
86
                block_umask=self.block_umask,
87
                block_size = self.block_size,
88
                hash_algorithm = self.hash_algorithm,
89
                queue_module=self.queue_module,
90
                block_params=self.block_params,
91
                queue_hosts=self.queue_hosts,
92
                queue_exchange=self.queue_exchange,
93
                astakos_url=self.astakos_url,
94
                service_token=self.service_token,
95
                astakosclient_poolsize=self.astakosclient_poolsize,
96
                free_versioning=self.free_versioning,
97
                public_url_security=self.public_url_security,
98
                public_url_alphabet=self.public_url_alphabet,
99
                account_quota_policy=self.account_quota_policy,
100
                container_quota_policy=self.container_quota_policy,
101
                container_versioning_policy=self.container_versioning_policy)
102

    
103
        backend._real_close = backend.close
104
        backend.close = instancemethod(_pooled_backend_close, backend,
105
                                       type(backend))
106
        backend._pool = self
107
        backend._use_count = USAGE_LIMIT
108
        backend.messages = []
109
        return backend
110

    
111
    def _pool_verify(self, backend):
112
        wrapper = backend.wrapper
113
        conn = wrapper.conn
114
        if conn.closed:
115
            return False
116

    
117
        if conn.in_transaction():
118
            conn.close()
119
            return False
120

    
121
        try:
122
            fd = conn.connection.connection.fileno()
123
            r, w, x = select([fd], (), (), 0)
124
            if r:
125
                conn.close()
126
                return False
127
        except:
128
            print_exc()
129
            return False
130

    
131
        return True
132

    
133
    def _pool_cleanup(self, backend):
134
        c = backend._use_count - 1
135
        if c < 0:
136
            backend._real_close()
137
            return True
138

    
139
        backend._use_count = c
140
        wrapper = backend.wrapper
141
        if wrapper.trans is not None:
142
            conn = wrapper.conn
143
            if conn.closed:
144
                wrapper.trans = None
145
            else:
146
                wrapper.rollback()
147
        backend.messages = []
148
        return False
149

    
150

    
151
def _pooled_backend_close(backend):
152
    backend._pool.pool_put(backend)