当前位置: 首页>>代码示例>>Python>>正文


Python ACSCorba.getClient方法代码示例

本文整理汇总了Python中Acspy.Util.ACSCorba.getClient方法的典型用法代码示例。如果您正苦于以下问题:Python ACSCorba.getClient方法的具体用法?Python ACSCorba.getClient怎么用?Python ACSCorba.getClient使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Acspy.Util.ACSCorba的用法示例。


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

示例1: PySimpleClient

# 需要导入模块: from Acspy.Util import ACSCorba [as 别名]
# 或者: from Acspy.Util.ACSCorba import getClient [as 别名]
import CDB
import xml.dom.minidom
import datetime
import numpy as np

from Acspy.Clients.SimpleClient import PySimpleClient
client = PySimpleClient()
all_comp = client.availableComponents()
#
# DAL
#
dal = ACSCorba.cdb()
#
# WDAL
#
cdb_obj = ACSCorba.getClient().getService('CDB')
dal_ = cdb_obj._narrow(CDB.WDAL)

prof = {}
prof_wdal = {}
for comp in all_comp:
    print comp.name
    curl = "MACI/Components/"+comp.name
    #
    # DAO
    #
    t0 = datetime.datetime.utcnow()
    xmlstring = dal.get_DAO(curl)
    t1 = datetime.datetime.utcnow()
    delta = (t1 - t0)#.total_seconds()
    prof[comp.name] = (delta.microseconds + 0.0 + (delta.seconds + delta.days * 24 * 3600) * 10 ** 6) / 10 ** 6
开发者ID:normansaez,项目名称:scripts,代码行数:33,代码来源:cdbTest.py

示例2:

# 需要导入模块: from Acspy.Util import ACSCorba [as 别名]
# 或者: from Acspy.Util.ACSCorba import getClient [as 别名]
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
# MA 02111-1307  USA
#
# @(#) $Id: acspyTestAcsCORBA.py,v 1.1.1.1 2012/03/07 17:41:01 acaproni Exp $
###############################################################################
'''
Tests CORBA access.
'''
from Acspy.Util import ACSCorba
###############################################################################
if __name__ == '__main__':
    print 'Manager corbaloc: %s' % ACSCorba.getManagerCorbaloc()
    print 'ORB: %s' % ACSCorba.getORB()
    print 'POA ROOT: %s' % ACSCorba.getPOARoot()
    print 'POA Manager: %s' % ACSCorba.getPOAManager()
    print 'Manager: %s' % ACSCorba.getManager()
    print 'Client: %s' % ACSCorba.getClient()
    print 'Log: %s' % ACSCorba.log()
    print 'LogFactory: %s' % ACSCorba.logFactory()
    print 'NotifyEventChannelFactory: %s' % ACSCorba.notifyEventChannelFactory()
    print 'ArchivingChannel: %s' % ACSCorba.archivingChannel()
    print 'LoggingChannel: %s' % ACSCorba.loggingChannel()
    print 'InterfaceRepository: %s' % ACSCorba.interfaceRepository()
    print 'CDB: %s' % ACSCorba.cdb()
    print 'ACSLogSvc: %s' % ACSCorba.acsLogSvc()
    print 'NameService: %s' % ACSCorba.nameService()
开发者ID:,项目名称:,代码行数:32,代码来源:

示例3: test_ok

# 需要导入模块: from Acspy.Util import ACSCorba [as 别名]
# 或者: from Acspy.Util.ACSCorba import getClient [as 别名]
 def test_ok(self, clientmock):
     self.assertEqual(False, ACSCorba.getClient() is None)
开发者ID:,项目名称:,代码行数:4,代码来源:

示例4: test_create_fault

# 需要导入模块: from Acspy.Util import ACSCorba [as 别名]
# 或者: from Acspy.Util.ACSCorba import getClient [as 别名]
    def test_create_fault(self, clientmock):
        def raiser(*args):
            raise Exception("Boom!")

        clientmock.side_effect = raiser
        self.assertEqual(True, ACSCorba.getClient() is None)
开发者ID:,项目名称:,代码行数:8,代码来源:

示例5: test_client_exists

# 需要导入模块: from Acspy.Util import ACSCorba [as 别名]
# 或者: from Acspy.Util.ACSCorba import getClient [as 别名]
 def test_client_exists(self):
     ACSCorba.SINGLETON_CLIENT = 'foo'
     self.assertEqual('foo', ACSCorba.getClient())
开发者ID:,项目名称:,代码行数:5,代码来源:


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