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


Python extensions.POLL_OK属性代码示例

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


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

示例1: wait_select_inter

# 需要导入模块: from psycopg2 import extensions [as 别名]
# 或者: from psycopg2.extensions import POLL_OK [as 别名]
def wait_select_inter(conn):
    while True:
        try:
            state = conn.poll()
            if state == POLL_OK:
                break
            elif state == POLL_READ:
                select([conn.fileno()], [], [])
            elif state == POLL_WRITE:
                select([], [conn.fileno()], [])
            else:
                raise conn.OperationalError(
                    "bad state from poll: %s" % state)
        except KeyboardInterrupt:
            conn.cancel()
            # the loop will be broken by a server error
            continue 
开发者ID:Yelp,项目名称:mycroft,代码行数:19,代码来源:redshift_psql.py

示例2: test_notifies_received_on_poll

# 需要导入模块: from psycopg2 import extensions [as 别名]
# 或者: from psycopg2.extensions import POLL_OK [as 别名]
def test_notifies_received_on_poll(self):
        self.autocommit(self.conn)
        self.listen('foo')

        proc = self.notify('foo', 1)

        t0 = time.time()
        ready = select.select([self.conn], [], [], 5)
        t1 = time.time()
        self.assert_(0.99 < t1 - t0 < 4, t1 - t0)

        pid = int(proc.communicate()[0])
        self.assertEqual(0, len(self.conn.notifies))
        self.assertEqual(extensions.POLL_OK, self.conn.poll())
        self.assertEqual(1, len(self.conn.notifies))
        self.assertEqual(pid, self.conn.notifies[0][0])
        self.assertEqual('foo', self.conn.notifies[0][1]) 
开发者ID:synthetichealth,项目名称:syntheticmass,代码行数:19,代码来源:test_notify.py

示例3: test_many_notifies

# 需要导入模块: from psycopg2 import extensions [as 别名]
# 或者: from psycopg2.extensions import POLL_OK [as 别名]
def test_many_notifies(self):
        self.autocommit(self.conn)
        for name in ['foo', 'bar', 'baz']:
            self.listen(name)

        pids = {}
        for name in ['foo', 'bar', 'baz', 'qux']:
            pids[name] = int(self.notify(name).communicate()[0])

        self.assertEqual(0, len(self.conn.notifies))
        for i in range(10):
            self.assertEqual(extensions.POLL_OK, self.conn.poll())
        self.assertEqual(3, len(self.conn.notifies))

        names = dict.fromkeys(['foo', 'bar', 'baz'])
        for (pid, name) in self.conn.notifies:
            self.assertEqual(pids[name], pid)
            names.pop(name) # raise if name found twice 
开发者ID:synthetichealth,项目名称:syntheticmass,代码行数:20,代码来源:test_notify.py

示例4: wait_select

# 需要导入模块: from psycopg2 import extensions [as 别名]
# 或者: from psycopg2.extensions import POLL_OK [as 别名]
def wait_select(conn):
    """Wait until a connection or cursor has data available.

    The function is an example of a wait callback to be registered with
    `~psycopg2.extensions.set_wait_callback()`. This function uses
    :py:func:`~select.select()` to wait for data available.

    """
    import select
    from psycopg2.extensions import POLL_OK, POLL_READ, POLL_WRITE

    while 1:
        state = conn.poll()
        if state == POLL_OK:
            break
        elif state == POLL_READ:
            select.select([conn.fileno()], [], [])
        elif state == POLL_WRITE:
            select.select([], [conn.fileno()], [])
        else:
            raise conn.OperationalError("bad state from poll: %s" % state) 
开发者ID:synthetichealth,项目名称:syntheticmass,代码行数:23,代码来源:extras.py

示例5: _wait_select

# 需要导入模块: from psycopg2 import extensions [as 别名]
# 或者: from psycopg2.extensions import POLL_OK [as 别名]
def _wait_select(conn):
    """
        copy-pasted from psycopg2.extras.wait_select
        the default implementation doesn't define a timeout in the select calls
    """
    while 1:
        try:
            state = conn.poll()
            if state == POLL_OK:
                break
            elif state == POLL_READ:
                select.select([conn.fileno()], [], [], _WAIT_SELECT_TIMEOUT)
            elif state == POLL_WRITE:
                select.select([], [conn.fileno()], [], _WAIT_SELECT_TIMEOUT)
            else:
                raise conn.OperationalError("bad state from poll: %s" % state)
        except KeyboardInterrupt:
            conn.cancel()
            # the loop will be broken by a server error
            continue
        except select.error as e:
            errno = e.args[0]
            if errno != 4:
                raise


# When running a query, make pressing CTRL+C raise a KeyboardInterrupt
# See http://initd.org/psycopg/articles/2014/07/20/cancelling-postgresql-statements-python/
# See also https://github.com/psycopg/psycopg2/issues/468 
开发者ID:dbcli,项目名称:pgcli,代码行数:31,代码来源:pgexecute.py

示例6: wait_select

# 需要导入模块: from psycopg2 import extensions [as 别名]
# 或者: from psycopg2.extensions import POLL_OK [as 别名]
def wait_select(conn):
    """Wait until a connection or cursor has data available.

    The function is an example of a wait callback to be registered with
    `~psycopg2.extensions.set_wait_callback()`. This function uses
    :py:func:`~select.select()` to wait for data available.

    """
    import select
    from psycopg2.extensions import POLL_OK, POLL_READ, POLL_WRITE

    while 1:
        try:
            state = conn.poll()
            if state == POLL_OK:
                break
            elif state == POLL_READ:
                select.select([conn.fileno()], [], [])
            elif state == POLL_WRITE:
                select.select([], [conn.fileno()], [])
            else:
                raise conn.OperationalError("bad state from poll: %s" % state)
        except KeyboardInterrupt:
            conn.cancel()
            # the loop will be broken by a server error
            continue 
开发者ID:tryolabs,项目名称:aws-workshop,代码行数:28,代码来源:extras.py


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