⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serviceproxy.py

📁 HADOOP 0.18.0安装源代码头文件
💻 PY
字号:
#Licensed to the Apache Software Foundation (ASF) under one#or more contributor license agreements.  See the NOTICE file#distributed with this work for additional information#regarding copyright ownership.  The ASF licenses this file#to you 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."""HOD Service Proxy Implementation"""# -*- python -*-import sys, time, signal, httplib, socket, threadingimport sha, base64, hmacimport xml.dom.minidomfrom hodlib.Common.socketServers import hodHTTPServerfrom hodlib.Common.hodsvc import hodBaseServicefrom hodlib.Common.threads import loopfrom hodlib.Common.tcp import tcpSocketfrom hodlib.Common.util import get_exception_stringfrom hodlib.Common.AllocationManagerUtil import *class svcpxy(hodBaseService):    def __init__(self, config):        hodBaseService.__init__(self, 'serviceProxy', config['service_proxy'],                                xrtype='twisted')        self.amcfg=config['allocation_manager']    def _xr_method_isProjectUserValid(self, userid, project, ignoreErrors = False, timeOut = 15):       return self.isProjectUserValid(userid, project, ignoreErrors, timeOut)        def isProjectUserValid(self, userid, project, ignoreErrors, timeOut):        """Method thats called upon by        the hodshell to verify if the         specified (user, project) combination         is valid"""        self.logs['main'].info("Begin isProjectUserValid()")        am = AllocationManagerUtil.getAllocationManager(self.amcfg['id'],                                                         self.amcfg,                                                        self.logs['main'])        self.logs['main'].info("End isProjectUserValid()")        return am.getQuote(userid, project)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -