• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python bufferedhttp.jresponse函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中swift.common.bufferedhttp.jresponse函数的典型用法代码示例。如果您正苦于以下问题:Python jresponse函数的具体用法?Python jresponse怎么用?Python jresponse使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了jresponse函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: __call__

    def __call__(self, env, start_response):

        start_time = time.time()
        req = Request(env)
        self.logger.txn_id = req.headers.get('x-trans-id', None)
        
        if not check_utf8(req.path_info):
            res = jresponse('-1', 'invalid utf8', req,412)
        else:
            try:
                # disallow methods which are not publicly accessible
                try:
                    method = getattr(self, req.method)
                    getattr(method, 'publicly_accessible')
                except AttributeError:
                    res = jresponse('-1', 'method not allowed', req,405)
                else:
                    res = method(req)
            except (Exception, Timeout):
                self.logger.exception(_('ERROR __call__ error with %(method)s'
                    ' %(path)s '), {'method': req.method, 'path': req.path})
                res = jresponse('-1', 'InternalServerError', req,500)
                
        additional_info = ''
        if res.headers.get('x-container-timestamp') is not None:
            additional_info += 'x-container-timestamp: %s' % \
                res.headers['x-container-timestamp']
        
        return res(env, start_response)
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:29,代码来源:server.py


示例2: check_object_creation

def check_object_creation(req, object_name):
    """
    Check to ensure that everything is alright about an object to be created.

    :param req: HTTP request object
    :param object_name: name of object to be created
    :raises HTTPRequestEntityTooLarge: the object is too large
    :raises HTTPLengthRequered: missing content-length header and not
                                a chunked request
    :raises HTTPBadRequest: missing or bad content-type header, or
                            bad metadata
    """
    if req.content_length and req.content_length > MAX_FILE_SIZE:
        respbody='Your request is too large.'
        return jresponse('-1', respbody, req,413)
            
    if req.content_length is None and \
            req.headers.get('transfer-encoding') != 'chunked':
        
        return jresponse('-1', 'length required', req,411)
    
    if len(object_name) > MAX_OBJECT_NAME_LENGTH:
        respbody='Object name length of %d longer than %d' % (len(object_name), MAX_OBJECT_NAME_LENGTH)
        return jresponse('-1', respbody, req,400)    
    
    return None
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:26,代码来源:constraints.py


示例3: __call__

    def __call__(self, request):
       
        if request.method not in ("PUT","COPY"):
            return self.app

        try:
            split_path(request.path,2, 4, rest_with_last=True)
        except ValueError:
            return self.app

        new_quota = request.headers.get('X-Account-Meta-Quota-Bytes')
        if new_quota:
            if not new_quota.isdigit():
                return jresponse('-1', 'bad request', request, 400)
            return self.app

        account_info = get_account_info(request.environ, self.app)
        new_size = int(account_info['bytes']) + (request.content_length or 0)
        quota = int(account_info['meta'].get('quota-bytes', -1))

        if 0 <= quota < new_size:
            respbody='Your request is too large.'
            return jresponse('-1', respbody, request,413)

        return self.app
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:25,代码来源:account_quotas.py


示例4: MOVE

    def MOVE(self,req):
        if 'ftype' not in req.GET:
            return jresponse('-1', 'param error', req,404)

        (container_partition, containers,object_versions) = self.container_info(self.account_name, self.container_name,
                account_autocreate=self.app.account_autocreate)
        
        if not containers:
            return jresponse('-1', 'not found', req,404) 
        
        direr_partition, direr_nodes = self.app.direr_ring.get_nodes(self.account_name, self.container_name, self.direr_name)
        
        headers = []
        for container in containers:
            
            nheaders = {'X-Timestamp': normalize_timestamp(time.time()),
                        'x-trans-id': self.trans_id,
                        'X-Container-Host': '%(ip)s:%(port)s' % container,
                        'X-Container-Partition': container_partition,
                        'X-Container-Device': container['device'],
                        'x-move-dst':req.headers['Destination'],
                        'x-ftype':req.GET['ftype'],
                        'Connection': 'close'}
                 
            if object_versions:
                nheaders['x-versions-location'] = object_versions
                
            self.transfer_headers(req.headers, nheaders)
            headers.append(nheaders)
            
       
        resp = self.make_requests(self.account_name,req, self.app.direr_ring,
                direr_partition, 'MOVE', req.path_info, headers)
        return resp
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:34,代码来源:direr.py


示例5: PUT

 def PUT(self, req):
     """HTTP PUT request handler."""
     if req.body:
         return jresponse('-1','param error',req,400)
     if len(self.container_name) > MAX_CONTAINER_NAME_LENGTH:
         
         respbody = 'Container name length of %d longer than %d' % \
                     (len(self.container_name), MAX_CONTAINER_NAME_LENGTH)
         return jresponse('-1', respbody, req,400)
     
     account_partition, accounts = \
         self.account_info(self.account_name,
                           autocreate=self.app.account_autocreate)
     
     if not accounts:
         return jresponse('-1', 'not found', req,404)
     
     container_partition, containers = self.app.container_ring.get_nodes(self.account_name, self.container_name)
     headers = []
     for account in accounts:
         
         nheaders = {'X-Timestamp': normalize_timestamp(time.time()),
                     'x-trans-id': self.trans_id,
                     'X-Account-Host': '%(ip)s:%(port)s' % account,
                     'X-Account-Partition': account_partition,
                     'X-Account-Device': self.account_name,
                     'Connection': 'close'}
         self.transfer_headers(req.headers, nheaders)
         headers.append(nheaders)
     
     resp = self.make_requests(self.account_name,req, self.app.container_ring,
             container_partition, 'PUT', req.path_info, headers)
     return resp
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:33,代码来源:container.py


示例6: __call__

 def __call__(self, env, start_response):
     
     start_time = time.time()
     req = Request(env)
     self.logger.txn_id = req.headers.get('x-trans-id', None)
     if not check_utf8(req.path_info):
         res = jresponse('-1','Invalid UTF8',req,412)
     else:
         try:
             # disallow methods which have not been marked 'public'
             try:
                 method = getattr(self, req.method)
                 getattr(method, 'publicly_accessible')
             except AttributeError:
                 res = jresponse('-1', 'method not allowed', req,405) 
             else:
                 res = method(req)
                 # if req.method == 'PUT':
                 #    print 'path:   '+req.path +  '      status:  '+str(res.status_int) + '  msg: '+res.body
         except (Exception, Timeout):
             self.logger.exception(_('ERROR __call__ error with %(method)s'
                 ' %(path)s '), {'method': req.method, 'path': req.path})
             res = jresponse('-1', 'InternalServerError', req,500)
     
     return res(env, start_response)
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:25,代码来源:server.py


示例7: PUT

 def PUT(self, req):
     """Handle HTTP PUT request."""
     if req.body:
         return jresponse('-1', 'param error', req,400)
     
     start_time = time.time()
     try:
         drive, part, account, container, obj = split_path(
             unquote(req.path), 4, 5, True)
         validate_device_partition(drive, part)
     except ValueError, err:
         return jresponse('-1', 'bad request', req,400)
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:12,代码来源:server.py


示例8: MOVE

    def MOVE(self,req):   

        if 'ftype' not in req.GET:
            return jresponse('-1', 'param error', req,404)

        (container_partition, containers,object_versions) = self.container_info(self.account_name, self.container_name,
                account_autocreate=self.app.account_autocreate)
        
        if not containers:
            return jresponse('-1', 'not found', req,404)
        
        object_partition, object_nodes = self.app.object_ring.get_nodes(self.account_name, self.container_name, self.object_name)
        
        headers = []
        req.GET['ftype'] = 'f'
        for container in containers:
            
            nheaders = {'X-Timestamp': normalize_timestamp(time.time()),
                        'x-trans-id': self.trans_id,
                        'X-Container-Host': '%(ip)s:%(port)s' % container,
                        'X-Container-Partition': container_partition,
                        'X-Container-Device': container['device'],
                        'x-move-dst':req.headers['Destination'],
                        'x-ftype':req.GET['ftype'],
                        'x-overwrite':req.GET.get('overwrite','false'),
                        'Connection': 'close'}
                 
            self.transfer_headers(req.headers, nheaders)
            headers.append(nheaders)
            
        resp = self.make_requests(self.account_name,req, self.app.object_ring,
                object_partition, 'MOVE', req.path_info, headers)
        
        if False and object_versions:
            # this is a version manifest and needs to be handled differently
            
            lcontainer = object_versions.split('/')[0]
            # prefix_len = '%03x' % len(self.object_name)
            lprefix = self.object_name + '/'
            last_item = None
            try:
                for last_item in self._listing_iter(lcontainer, lprefix,
                                                    req.environ):
                    pass
            except ListingIterNotFound:
                # no worries, last_item is None
                pass
            except ListingIterNotAuthorized, err:
                return err.aresp
            except ListingIterError:
                return jresponse('-1','ServerERROR',req,500)
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:51,代码来源:obj.py


示例9: DELETE

 def DELETE(self, req):
     """HTTP DELETE request handler."""
     
     account_partition, accounts = self.account_info(self.account_name,autocreate=False)
     account = accounts[0]
     
     (container_partition, containers,object_versions) = self.container_info(self.account_name, self.container_name)
            
     if not containers:
         return jresponse('-1', 'not found', req,404)
     partition, nodes = self.app.object_ring.get_nodes(self.account_name, self.container_name, self.object_name)
     
     
     headers = []
     for container in containers:
         nheaders = dict(req.headers.iteritems())
         nheaders['X-Timestamp']= normalize_timestamp(time.time())
         nheaders['Connection'] = 'close'
         nheaders['X-Container-Host'] = '%(ip)s:%(port)s' % container
         nheaders['X-Container-Partition'] = container_partition
         nheaders['X-Container-Device'] = container['device']
         
         nheaders['X-Account-Host'] = '%(ip)s:%(port)s' % account
         nheaders['X-Account-Partition'] = account_partition
         nheaders['X-Account-Device'] = self.account_name
                                 
         headers.append(nheaders)
     resp = self.make_requests(self.account_name,req, self.app.object_ring,
             partition, 'DELETE_RECYCLE', req.path_info, headers)
     
     if object_versions and req.GET.get('cover') == 'true':
         # this is a version manifest and needs to be handled differently
         
             
         lcontainer = object_versions.split('/')[0]
         # prefix_len = '%03x' % len(self.object_name)
         lprefix = self.object_name + '/'
         last_item = None
         try:
             for last_item in self._listing_iter(lcontainer, lprefix,
                                                 req.environ):
                 pass
         except ListingIterNotFound:
             # no worries, last_item is None
             pass
         except ListingIterNotAuthorized, err:
             return err.aresp
         except ListingIterError:
             return jresponse('-1','ServerERROR',req,500)
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:49,代码来源:obj.py


示例10: handle_register

    def handle_register(self, req):

        rdatas = {'failed_files':[],'success_count':0,'not_found_count':0}
        
        req.accept = 'application/json'
        out_content_type = 'application/json'
        
        self.handle_normal(req,rdatas)
    
        self.handle_quota(req,rdatas)
        
        self.handle_normal_versions(req,rdatas)
        
        self.handle_normal_metadata(req,rdatas)
    
        self.handle_segments(req,rdatas)
        
        self.handle_recycle(req,rdatas)
        
        self.handle_recycle_meta(req,rdatas)
        
        self.handle_recycle_user(req,rdatas)
        
        self.handle_private(req,rdatas)
        
        self.handle_private_versions(req,rdatas)
        
        self.handle_private_metadata(req,rdatas)
        
        self.handle_backup(req,rdatas)
        
        self.handle_backup_versions(req,rdatas)
        
        self.handle_backup_metadata(req,rdatas)
        
        resp_body = get_response_body(
            out_content_type,
            {'Number successed': rdatas['success_count'],
             'Number failed': rdatas['not_found_count']},
            rdatas['failed_files'])
        
        if (rdatas['success_count'] or rdatas['not_found_count']) and not rdatas['failed_files']:
            
            return jresponse('0','',req,200,param=resp_body)
        
        if rdatas['failed_files']:
            return jresponse('-1',json.dumps(resp_body), req,400)
            
        return jresponse('-1', 'Invalid userinit register', req, 400) 
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:49,代码来源:userinit.py


示例11: PUT

 def PUT(self, req):
     
     (container_partition, containers,_) = self.container_info(self.account_name, self.container_name,
             account_autocreate=self.app.account_autocreate)
     
     if not containers:
         return jresponse('-1', 'not found', req,404) 
     
     direr_partition, direr_nodes = self.app.direr_ring.get_nodes(self.account_name, self.container_name, self.direr_name)
     
     headers = []
     for container in containers:
         
         nheaders = {'X-Timestamp': normalize_timestamp(time.time()),
                     'x-trans-id': self.trans_id,
                     'X-Container-Host': '%(ip)s:%(port)s' % container,
                     'X-Container-Partition': container_partition,
                     'X-Container-Device': container['device'],
                     'x-ftype':req.GET['ftype'],
                     'Connection': 'close'}
              
         self.transfer_headers(req.headers, nheaders)
         headers.append(nheaders)
         
    
     resp = self.make_requests(self.account_name,req, self.app.direr_ring,
             direr_partition, 'PUT', req.path_info, headers)
     return resp
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:28,代码来源:direr.py


示例12: best_response

 def best_response(self, req, statuses, reasons, bodies, server_type,
                   etag=None,jsondata=None):
     """
     :param req: webob.Request object
     :param statuses: list of statuses returned
     :param reasons: list of reasons for each status
     :param bodies: bodies of each response
     :param server_type: type of server the responses came from
     :param etag: etag
     :returns: webob.Response object with the correct status, body, etc. set
     """
     
     resp = Response(request=req)
     
     if len(statuses):
         for hundred in (HTTP_OK, HTTP_MULTIPLE_CHOICES, HTTP_BAD_REQUEST):
             hstatuses = \
                 [s for s in statuses if hundred <= s < hundred + 100]
             if len(hstatuses) > len(statuses) / 2:
                 status = max(hstatuses)
                 status_index = statuses.index(status)
                 resp.status = '%s %s' % (status, reasons[status_index]) 
                 resp.body = bodies[status_index]
                 
                 return resp
     
     resp.status = '503 Internal Server Error'
     return jresponse('-1', 'internal server error', req,503)
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:28,代码来源:base.py


示例13: DELETE_RECYCLE

 def DELETE_RECYCLE(self, req):
     try:
         device, partition, account, src_container, src_obj = split_path(
             unquote(req.path), 4, 5, True)
         validate_device_partition(device, partition)
     except ValueError, err:
         return jresponse('-1', 'bad request', req,400)
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:7,代码来源:server.py


示例14: META

 def META(self, req):
     """Handler for HTTP GET/HEAD requests."""
     
     partition, nodes = self.app.account_ring.get_nodes(self.account_name)
     shuffle(nodes)
     resp = self.META_base(req, _('Account'), partition, nodes,
             req.path_info.rstrip('/'), len(nodes))
     
     if resp.status_int == HTTP_NOT_FOUND and self.app.account_autocreate:
         if len(self.account_name) > MAX_ACCOUNT_NAME_LENGTH:
             
             respbody = 'Account name length of %d longer than %d' % \
                         (len(self.account_name), MAX_ACCOUNT_NAME_LENGTH)
             return jresponse('-1', respbody, req,400)
         
         headers = {'X-Timestamp': normalize_timestamp(time.time()),
                    'X-Trans-Id': self.trans_id,
                    'Connection': 'close'}
         resp = self.make_requests(self.account_name,
             Request.blank('/v1/' + self.account_name),
             self.app.account_ring, partition, 'PUT',
             '/' + self.account_name, [headers] * len(nodes))
         if not is_success(resp.status_int):
             self.app.logger.warning('Could not autocreate account %r' %
                                     self.account_name)
             return resp
         resp = self.META_base(req, _('Account'), partition, nodes,
             req.path_info.rstrip('/'), len(nodes))
         
     return resp
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:30,代码来源:account.py


示例15: gluster_check_object_creation

def gluster_check_object_creation(req, object_name):
    """
    Check to ensure that everything is alright about an object to be created.
    Monkey patches swift.common.constraints.check_object_creation, invoking
    the original, and then adding an additional check for individual object
    name components.

    :param req: HTTP request object
    :param object_name: name of object to be created
    :raises HTTPRequestEntityTooLarge: the object is too large
    :raises HTTPLengthRequered: missing content-length header and not
                                a chunked request
    :raises HTTPBadRequest: missing or bad content-type header, or
                            bad metadata
    """
    ret = __check_object_creation(req, object_name)

    if ret is None:
        for obj in object_name.split('/'):
            reason = validate_obj_name_component(obj)
            if reason:
                bdy = 'Invalid object name "%s", component "%s" %s' \
                        % (object_name, obj, reason)
                ret = jresponse('-1',bdy,req,400)
                
                

    return ret
开发者ID:sun3shines,项目名称:ufo,代码行数:28,代码来源:constraints.py


示例16: POST

 def POST(self, req):
     """HTTP POST request handler."""
     
     account_partition, accounts = self.app.account_ring.get_nodes(self.account_name)
     headers = {'X-Timestamp': normalize_timestamp(time.time()),
                'X-Trans-Id': self.trans_id,
                'Connection': 'close'}
     self.transfer_headers(req.headers, headers)
     
     resp = self.make_requests(self.account_name,req, self.app.account_ring,
         account_partition, 'POST', req.path_info,
         [headers] * len(accounts))
     if resp.status_int == HTTP_NOT_FOUND and self.app.account_autocreate:
         if len(self.account_name) > MAX_ACCOUNT_NAME_LENGTH:
             
             respbody = 'Account name length of %d longer than %d' % \
                         (len(self.account_name), MAX_ACCOUNT_NAME_LENGTH)
             return jresponse('-1', respbody, req,400)
         
         resp = self.make_requests(self.account_name,
             Request.blank('/v1/' + self.account_name),
             self.app.account_ring, account_partition, 'PUT',
             '/' + self.account_name, [headers] * len(accounts))
         if not is_success(resp.status_int):
             self.app.logger.warning('Could not autocreate account %r' %
                                     self.account_name)
             return resp
     return resp
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:28,代码来源:account.py


示例17: GET

 def GET(self, req):
     try:
         drive, part, account, container, direr = split_path(
             unquote(req.path), 4, 5, True)
         validate_device_partition(drive, part)
     except ValueError, err:
         return jresponse('-1', 'bad request', req,400)
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:7,代码来源:server.py


示例18: POST

 def POST(self, req):
     
     error_response = check_metadata(req, 'object')
     if error_response:
         return error_response
     
     container_partition, containers,_ = self.container_info(self.account_name, self.container_name,
             account_autocreate=self.app.account_autocreate)
         
     if not containers:
         return jresponse('-1', 'not found', req,404)
     
     partition, nodes = self.app.object_ring.get_nodes(self.account_name, self.container_name, self.object_name)
     
     req.headers['X-Timestamp'] = normalize_timestamp(time.time())
     
     headers = []
     for container in containers:
         nheaders = dict(req.headers.iteritems())
         nheaders['Connection'] = 'close'
         nheaders['X-Container-Host'] = '%(ip)s:%(port)s' % container
         nheaders['X-Container-Partition'] = container_partition
         nheaders['X-Container-Device'] = container['device']
         
         headers.append(nheaders)
     resp = self.make_requests(self.account_name,req, self.app.object_ring, partition,
                               'POST', req.path_info, headers)
     return resp
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:28,代码来源:obj.py


示例19: DELETE_RECYCLE

 def DELETE_RECYCLE(self, req):
     try:
         drive, part, account, src_container, src_direr = split_path(
             unquote(req.path), 4, 5, True)
         validate_device_partition(drive, part)
     except ValueError, err:
         return jresponse('-1', str(err), req,400)
开发者ID:sun3shines,项目名称:swift-1.7.4,代码行数:7,代码来源:server.py


示例20: MOVE_VERSION

 def MOVE_VERSION(self,req):    
     
     (container_partition, containers,_) = self.container_info(self.account_name, self.container_name,
             account_autocreate=self.app.account_autocreate)
     
     if not containers:
         return jresponse('-1', 'not found', req,404)
     
     object_partition, object_nodes = self.app.object_ring.get_nodes(self.account_name, self.container_name, self.object_name)
     
     headers = []
     req.GET['ftype'] = 'f'
     for container in containers:
         
         nheaders = {'X-Timestamp': normalize_timestamp(time.time()),
                     'x-trans-id': self.trans_id,
                     'X-Container-Host': '%(ip)s:%(port)s' % container,
                     'X-Container-Partition': container_partition,
                     'X-Container-Device': container['device'],
                     'x-move-dst':req.headers['Destination'],
                     'x-ftype':req.GET['ftype'],
                     'x-fhr-dir':'True',
                     'Connection': 'close'}
              
         self.transfer_headers(req.headers, nheaders)
         headers.append(nheaders)
         
     resp = self.make_requests(self.account_name,req, self.app.object_ring,
             object_partition, 'MOVE', req.path_info, headers)
            
     return resp
开发者ID:sun7shines,项目名称:Cloudfs,代码行数:31,代码来源:obj.py



注:本文中的swift.common.bufferedhttp.jresponse函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python bufferedhttp.BufferedHTTPConnection类代码示例发布时间:2022-05-27
下一篇:
Python bufferedhttp.http_connect函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap