RabbitMQ队列

这篇博客详细介绍了RabbitMQ的队列使用,包括Work Queues、消息持久化、公平分发、发布订阅模式以及RPC(远程过程调用)。文中还涉及到Memcached、Redis的使用以及Twisted异步网络框架的基础知识,最后讲解了SqlAlchemy ORM中的外键关联。内容涵盖了RabbitMQ的多个核心特性和实际应用案例。
摘要由CSDN通过智能技术生成

RabbitMQ队列  

安装 http://www.rabbitmq.com/install-standalone-mac.html

安装python rabbitMQ module 

1

2

3

4

5

6

7

pip install pika

or

easy_install pika

or

源码

  

https://pypi.python.org/pypi/pika

实现最简单的队列通信

 

send端

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

#!/usr/bin/env python

import pika

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

               'localhost'))

channel = connection.channel()

 

#声明queue

channel.queue_declare(queue='hello')

 

#n RabbitMQ a message can never be sent directly to the queue, it always needs to go through an exchange.

channel.basic_publish(exchange='',

                      routing_key='hello',

                      body='Hello World!')

print(" [x] Sent 'Hello World!'")

connection.close()

receive端

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

#_*_coding:utf-8_*_

__author__ = 'Alex Li'

import pika

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

               'localhost'))

channel = connection.channel()

 

 

#You may ask why we declare the queue again ‒ we have already declared it in our previous code.

# We could avoid that if we were sure that the queue already exists. For example if send.py program

#was run before. But we're not yet sure which program to run first. In such cases it's a good

# practice to repeat declaring the queue in both programs.

channel.queue_declare(queue='hello')

 

def callback(ch, method, properties, body):

    print(" [x] Received %r" % body)

 

channel.basic_consume(callback,

                      queue='hello',

                      no_ack=True)

 

print(' [*] Waiting for messages. To exit press CTRL+C')

channel.start_consuming()

 

远程连接rabbitmq server的话,需要配置权限 噢 

首先在rabbitmq server上创建一个用户

1

sudo rabbitmqctl  add_user alex alex3714  

同时还要配置权限,允许从外面访问

1

sudo rabbitmqctl set_permissions -p / alex ".*" ".*" ".*"

set_permissions [-p vhost] {user} {conf} {write} {read}

vhost

The name of the virtual host to which to grant the user access, defaulting to /.

user

The name of the user to grant access to the specified virtual host.

conf

A regular expression matching resource names for which the user is granted configure permissions.

write

A regular expression matching resource names for which the user is granted write permissions.

read

A regular expression matching resource names for which the user is granted read permissions.

 

 

 

  

客户端连接的时候需要配置认证参数

1

2

3

4

5

6

credentials = pika.PlainCredentials('alex''alex3714')

 

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

    '10.211.55.5',5672,'/',credentials))

channel = connection.channel()

  

  

Work Queues

在这种模式下,RabbitMQ会默认把p发的消息依次分发给各个消费者(c),跟负载均衡差不多

消息提供者代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

import pika

import time

connection = pika.BlockingConnection(pika.ConnectionParameters(

    'localhost'))

channel = connection.channel()

 

# 声明queue

channel.queue_declare(queue='task_queue')

 

# n RabbitMQ a message can never be sent directly to the queue, it always needs to go through an exchange.

import sys

 

message = ' '.join(sys.argv[1:]) or "Hello World! %s" % time.time()

channel.basic_publish(exchange='',

                      routing_key='task_queue',

                      body=message,

                      properties=pika.BasicProperties(

                          delivery_mode=2,  # make message persistent

                      )

                      )

print(" [x] Sent %r" % message)

connection.close()

  

 

消费者代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

#_*_coding:utf-8_*_

 

import pika, time

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

    'localhost'))

channel = connection.channel()

 

 

def callback(ch, method, properties, body):

    print(" [x] Received %r" % body)

    time.sleep(20)

    print(" [x] Done")

    print("method.delivery_tag",method.delivery_tag)

    ch.basic_ack(delivery_tag=method.delivery_tag)

 

 

channel.basic_consume(callback,

                      queue='task_queue',

                      no_ack=True

                      )

 

print(' [*] Waiting for messages. To exit press CTRL+C')

channel.start_consuming()

  

 

此时,先启动消息生产者,然后再分别启动3个消费者,通过生产者多发送几条消息,你会发现,这几条消息会被依次分配到各个消费者身上  

Doing a task can take a few seconds. You may wonder what happens if one of the consumers starts a long task and dies with it only partly done. With our current code once RabbitMQ delivers message to the customer it immediately removes it from memory. In this case, if you kill a worker we will lose the message it was just processing. We'll also lose all the messages that were dispatched to this particular worker but were not yet handled.

But we don't want to lose any tasks. If a worker dies, we'd like the task to be delivered to another worker.

In order to make sure a message is never lost, RabbitMQ supports message acknowledgments. An ack(nowledgement) is sent back from the consumer to tell RabbitMQ that a particular message had been received, processed and that RabbitMQ is free to delete it.

If a consumer dies (its channel is closed, connection is closed, or TCP connection is lost) without sending an ack, RabbitMQ will understand that a message wasn't processed fully and will re-queue it. If there are other consumers online at the same time, it will then quickly redeliver it to another consumer. That way you can be sure that no message is lost, even if the workers occasionally die.

There aren't any message timeouts; RabbitMQ will redeliver the message when the consumer dies. It's fine even if processing a message takes a very, very long time.

Message acknowledgments are turned on by default. In previous examples we explicitly turned them off via the no_ack=True flag. It's time to remove this flag and send a proper acknowledgment from the worker, once we're done with a task.

1

2

3

4

5

6

7

8

def callback(ch, method, properties, body):

    print " [x] Received %r" % (body,)

    time.sleep( body.count('.') )

    print " [x] Done"

    ch.basic_ack(delivery_tag = method.delivery_tag)

 

channel.basic_consume(callback,

                      queue='hello')

  Using this code we can be sure that even if you kill a worker using CTRL+C while it was processing a message, nothing will be lost. Soon after the worker dies all unacknowledged messages will be redelivered

    

消息持久化  

We have learned how to make sure that even if the consumer dies, the task isn't lost(by default, if wanna disable  use no_ack=True). But our tasks will still be lost if RabbitMQ server stops.

When RabbitMQ quits or crashes it will forget the queues and messages unless you tell it not to. Two things are required to make sure that messages aren't lost: we need to mark both the queue and messages as durable.

First, we need to make sure that RabbitMQ will never lose our queue. In order to do so, we need to declare it as durable:

1

channel.queue_declare(queue='hello', durable=True)

  

Although this command is correct by itself, it won't work in our setup. That's because we've already defined a queue called hello which is not durable. RabbitMQ doesn't allow you to redefine an existing queue with different parameters and will return an error to any program that tries to do that. But there is a quick workaround - let's declare a queue with different name, for exampletask_queue:

1

channel.queue_declare(queue='task_queue', durable=True)

  

This queue_declare change needs to be applied to both the producer and consumer code.

At that point we're sure that the task_queue queue won't be lost even if RabbitMQ restarts. Now we need to mark our messages as persistent - by supplying a delivery_mode property with a value 2.

1

2

3

4

5

6

channel.basic_publish(exchange='',

                      routing_key="task_queue",

                      body=message,

                      properties=pika.BasicProperties(

                         delivery_mode = 2# make message persistent

                      ))

消息公平分发

如果Rabbit只管按顺序把消息发到各个消费者身上,不考虑消费者负载的话,很可能出现,一个机器配置不高的消费者那里堆积了很多消息处理不完,同时配置高的消费者却一直很轻松。为解决此问题,可以在各个消费者端,配置perfetch=1,意思就是告诉RabbitMQ在我这个消费者当前消息还没处理完的时候就不要再给我发新消息了。

 

1

channel.basic_qos(prefetch_count=1)

 

带消息持久化+公平分发的完整代码

生产者端

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

#!/usr/bin/env python

import pika

import sys

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.queue_declare(queue='task_queue', durable=True)

 

message = ' '.join(sys.argv[1:]) or "Hello World!"

channel.basic_publish(exchange='',

                      routing_key='task_queue',

                      body=message,

                      properties=pika.BasicProperties(

                         delivery_mode = 2# make message persistent

                      ))

print(" [x] Sent %r" % message)

connection.close()

消费者端

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

#!/usr/bin/env python

import pika

import time

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.queue_declare(queue='task_queue', durable=True)

print(' [*] Waiting for messages. To exit press CTRL+C')

 

def callback(ch, method, properties, body):

    print(" [x] Received %r" % body)

    time.sleep(body.count(b'.'))

    print(" [x] Done")

    ch.basic_ack(delivery_tag = method.delivery_tag)

 

channel.basic_qos(prefetch_count=1)

channel.basic_consume(callback,

                      queue='task_queue')

 

channel.start_consuming()

  

Publish\Subscribe(消息发布\订阅) 

之前的例子都基本都是1对1的消息发送和接收,即消息只能发送到指定的queue里,但有些时候你想让你的消息被所有的Queue收到,类似广播的效果,这时候就要用到exchange了,

An exchange is a very simple thing. On one side it receives messages from producers and the other side it pushes them to queues. The exchange must know exactly what to do with a message it receives. Should it be appended to a particular queue? Should it be appended to many queues? Or should it get discarded. The rules for that are defined by the exchange type.

Exchange在定义的时候是有类型的,以决定到底是哪些Queue符合条件,可以接收消息


fanout: 所有bind到此exchange的queue都可以接收消息
direct: 通过routingKey和exchange决定的那个唯一的queue可以接收消息
topic:所有符合routingKey(此时可以是一个表达式)的routingKey所bind的queue可以接收消息

   表达式符号说明:#代表一个或多个字符,*代表任何字符
      例:#.a会匹配a.a,aa.a,aaa.a等
          *.a会匹配a.a,b.a,c.a等
     注:使用RoutingKey为#,Exchange Type为topic的时候相当于使用fanout 

headers: 通过headers 来决定把消息发给哪些queue

消息publisher

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

import pika

import sys

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.exchange_declare(exchange='logs',

                         type='fanout')

 

message = ' '.join(sys.argv[1:]) or "info: Hello World!"

channel.basic_publish(exchange='logs',

                      routing_key='',

                      body=message)

print(" [x] Sent %r" % message)

connection.close()

消息subscriber

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

#_*_coding:utf-8_*_

__author__ = 'Alex Li'

import pika

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.exchange_declare(exchange='logs',

                         type='fanout')

 

result = channel.queue_declare(exclusive=True#不指定queue名字,rabbit会随机分配一个名字,exclusive=True会在使用此queue的消费者断开后,自动将queue删除

queue_name = result.method.queue

 

channel.queue_bind(exchange='logs',

                   queue=queue_name)

 

print(' [*] Waiting for logs. To exit press CTRL+C')

 

def callback(ch, method, properties, body):

    print(" [x] %r" % body)

 

channel.basic_consume(callback,

                      queue=queue_name,

                      no_ack=True)

 

channel.start_consuming()

  

有选择的接收消息(exchange type=direct) 

RabbitMQ还支持根据关键字发送,即:队列绑定关键字,发送者将数据根据关键字发送到消息exchange,exchange根据 关键字 判定应该将数据发送至指定队列。

publisher

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

import pika

import sys

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.exchange_declare(exchange='direct_logs',

                         type='direct')

 

severity = sys.argv[1if len(sys.argv) > 1 else 'info'

message = ' '.join(sys.argv[2:]) or 'Hello World!'

channel.basic_publish(exchange='direct_logs',

                      routing_key=severity,

                      body=message)

print(" [x] Sent %r:%r" % (severity, message))

connection.close()

subscriber 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

import pika

import sys

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.exchange_declare(exchange='direct_logs',

                         type='direct')

 

result = channel.queue_declare(exclusive=True)

queue_name = result.method.queue

 

severities = sys.argv[1:]

if not severities:

    sys.stderr.write("Usage: %s [info] [warning] [error]\n" % sys.argv[0])

    sys.exit(1)

 

for severity in severities:

    channel.queue_bind(exchange='direct_logs',

                       queue=queue_name,

                       routing_key=severity)

 

print(' [*] Waiting for logs. To exit press CTRL+C')

 

def callback(ch, method, properties, body):

    print(" [x] %r:%r" % (method.routing_key, body))

 

channel.basic_consume(callback,

                      queue=queue_name,

                      no_ack=True)

 

channel.start_consuming()

  

更细致的消息过滤

Although using the direct exchange improved our system, it still has limitations - it can't do routing based on multiple criteria.

In our logging system we might want to subscribe to not only logs based on severity, but also based on the source which emitted the log. You might know this concept from the syslog unix tool, which routes logs based on both severity (info/warn/crit...) and facility (auth/cron/kern...).

That would give us a lot of flexibility - we may want to listen to just critical errors coming from 'cron' but also all logs from 'kern'.

publisher

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

import pika

import sys

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.exchange_declare(exchange='topic_logs',

                         type='topic')

 

routing_key = sys.argv[1if len(sys.argv) > 1 else 'anonymous.info'

message = ' '.join(sys.argv[2:]) or 'Hello World!'

channel.basic_publish(exchange='topic_logs',

                      routing_key=routing_key,

                      body=message)

print(" [x] Sent %r:%r" % (routing_key, message))

connection.close()

subscriber

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

import pika

import sys

 

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

channel = connection.channel()

 

channel.exchange_declare(exchange='topic_logs',

                         type='topic')

 

result = channel.queue_declare(exclusive=True)

queue_name = result.method.queue

 

binding_keys = sys.argv[1:]

if not binding_keys:

    sys.stderr.write("Usage: %s [binding_key]...\n" % sys.argv[0])

    sys.exit(1)

 

for binding_key in binding_keys:

    channel.queue_bind(exchange='topic_logs',

                       queue=queue_name,

                       routing_key=binding_key)

 

print(' [*] Waiting for logs. To exit press CTRL+C')

 

def callback(ch, method, properties, body):

    print(" [x] %r:%r" % (method.routing_key, body))

 

channel.basic_consume(callback,

                      queue=queue_name,

                      no_ack=True)

 

channel.start_consuming()

To receive all the logs run:

python receive_logs_topic.py "#"

To receive all logs from the facility "kern":

python receive_logs_topic.py "kern.*"

Or if you want to hear only about "critical" logs:

python receive_logs_topic.py "*.critical"

You can create multiple bindings:

python receive_logs_topic.py "kern.*" "*.critical"

And to emit a log with a routing key "kern.critical" type:

python emit_log_topic.py "kern.critical" "A critical kernel error"

  

Remote procedure call (RPC)

To illustrate how an RPC service could be used we're going to create a simple client class. It's going to expose a method named call which sends an RPC request and blocks until the answer is received:

1

2

3

fibonacci_rpc = FibonacciRpcClient()

result = fibonacci_rpc.call(4)

print("fib(4) is %r" % result)

RPC server

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

#_*_coding:utf-8_*_

__author__ = 'Alex Li'

import pika

import time

connection = pika.BlockingConnection(pika.ConnectionParameters(

        host='localhost'))

 

channel = connection.channel()

 

channel.queue_declare(queue='rpc_queue')

 

def fib(n):

    if == 0:

        return 0

    elif == 1:

        return 1

    else:

        return fib(n-1+ fib(n-2)

 

def on_request(ch, method, props, body):

    = int(body)

 

    print(" [.] fib(%s)" % n)

    response = fib(n)

 

    ch.basic_publish(exchange='',

                     routing_key=props.reply_to,

                     properties=pika.BasicProperties(correlation_id = \

                                                         props.correlation_id),

                     body=str(response))

    ch.basic_ack(delivery_tag = method.delivery_tag)

 

channel.basic_qos(prefetch_count=1)

channel.basic_consume(on_request, queue='rpc_queue')

 

print(" [x] Awaiting RPC requests")

channel.start_consuming()

RPC client

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

import pika

import uuid

 

class FibonacciRpcClient(object):

    def __init__(self):

        self.connection = pika.BlockingConnection(pika.ConnectionParameters(

                host='localhost'))

 

        self.channel = self.connection.channel()

 

        result = self.channel.queue_declare(exclusive=True)

        self.callback_queue = result.method.queue

 

        self.channel.basic_consume(self.on_response, no_ack=True,

                                   queue=self.callback_queue)

 

    def on_response(self, ch, method, props, body):

        if self.corr_id == props.correlation_id:

            self.response = body

 

    def call(self, n):

        self.response = None

        self.corr_id = str(uuid.uuid4())

        self.channel.basic_publish(exchange='',

                                   routing_key='rpc_queue',

                                   properties=pika.BasicProperties(

                                         reply_to = self.callback_queue,

                                         correlation_id = self.corr_id,

                                         ),

                                   body=str(n))

        while self.response is None:

            self.connection.process_data_events()

        return int(self.response)

 

fibonacci_rpc = FibonacciRpcClient()

 

print(" [x] Requesting fib(30)")

response = fibonacci_rpc.call(30)

print(" [.] Got %r" % response)

  

  

Memcached & Redis使用 

memcached 

http://www.cnblogs.com/wupeiqi/articles/5132791.html  

 

redis 使用

http://www.cnblogs.com/alex3714/articles/6217453.html  

 

Twsited异步网络框架

Twisted是一个事件驱动的网络框架,其中包含了诸多功能,例如:网络协议、线程、数据库管理、网络操作、电子邮件等。 

事件驱动

简而言之,事件驱动分为二个部分:第一,注册事件;第二,触发事件。

自定义事件驱动框架,命名为:“弑君者”:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

#!/usr/bin/env python

# -*- coding:utf-8 -*-

 

# event_drive.py

 

event_list = []

 

 

def run():

    for event in event_list:

        obj = event()

        obj.execute()

 

 

class BaseHandler(object):

    """

    用户必须继承该类,从而规范所有类的方法(类似于接口的功能)

    """

    def execute(self):

        raise Exception('you must overwrite execute')

 

最牛逼的事件驱动框架

程序员使用“弑君者框架”:  

1

2

3

4

5

6

7

8

9

10

11

12

13

14

#!/usr/bin/env python

# -*- coding:utf-8 -*-

 

from source import event_drive

 

 

class MyHandler(event_drive.BaseHandler):

 

    def execute(self):

        print 'event-drive execute MyHandler'

 

 

event_drive.event_list.append(MyHandler)

event_drive.run()

 

Protocols

Protocols描述了如何以异步的方式处理网络中的事件。HTTP、DNS以及IMAP是应用层协议中的例子。Protocols实现了IProtocol接口,它包含如下的方法:

makeConnection               在transport对象和服务器之间建立一条连接
connectionMade               连接建立起来后调用
dataReceived                 接收数据时调用
connectionLost               关闭连接时调用

Transports

Transports代表网络中两个通信结点之间的连接。Transports负责描述连接的细节,比如连接是面向流式的还是面向数据报的,流控以及可靠性。TCP、UDP和Unix套接字可作为transports的例子。它们被设计为“满足最小功能单元,同时具有最大程度的可复用性”,而且从协议实现中分离出来,这让许多协议可以采用相同类型的传输。Transports实现了ITransports接口,它包含如下的方法:

write                   以非阻塞的方式按顺序依次将数据写到物理连接上
writeSequence           将一个字符串列表写到物理连接上
loseConnection          将所有挂起的数据写入,然后关闭连接
getPeer                 取得连接中对端的地址信息
getHost                 取得连接中本端的地址信息

将transports从协议中分离出来也使得对这两个层次的测试变得更加简单。可以通过简单地写入一个字符串来模拟传输,用这种方式来检查。

  

 

EchoServer

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

from twisted.internet import protocol

from twisted.internet import reactor

 

class Echo(protocol.Protocol):

    def dataReceived(self, data):

        self.transport.write(data)

 

def main():

    factory = protocol.ServerFactory()

    factory.protocol = Echo

 

    reactor.listenTCP(1234,factory)

    reactor.run()

 

if __name__ == '__main__':

    main()

  

EchoClient

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

from twisted.internet import reactor, protocol

 

 

# a client protocol

 

class EchoClient(protocol.Protocol):

    """Once connected, send a message, then print the result."""

 

    def connectionMade(self):

        self.transport.write("hello alex!")

 

    def dataReceived(self, data):

        "As soon as any data is received, write it back."

        print "Server said:", data

        self.transport.loseConnection()

 

    def connectionLost(self, reason):

        print "connection lost"

 

class EchoFactory(protocol.ClientFactory):

    protocol = EchoClient

 

    def clientConnectionFailed(self, connector, reason):

        print "Connection failed - goodbye!"

        reactor.stop()

 

    def clientConnectionLost(self, connector, reason):

        print "Connection lost - goodbye!"

        reactor.stop()

 

 

# this connects the protocol to a server running on port 8000

def main():

    = EchoFactory()

    reactor.connectTCP("localhost"1234, f)

    reactor.run()

 

# this only runs if the module was *not* imported

if __name__ == '__main__':

    main()

运行服务器端脚本将启动一个TCP服务器,监听端口1234上的连接。服务器采用的是Echo协议,数据经TCP transport对象写出。运行客户端脚本将对服务器发起一个TCP连接,回显服务器端的回应然后终止连接并停止reactor事件循环。这里的Factory用来对连接的双方生成protocol对象实例。两端的通信是异步的,connectTCP负责注册回调函数到reactor事件循环中,当socket上有数据可读时通知回调处理。

一个传送文件的例子 

server side 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

#_*_coding:utf-8_*_

# This is the Twisted Fast Poetry Server, version 1.0

 

import optparse, os

 

from twisted.internet.protocol import ServerFactory, Protocol

 

 

def parse_args():

    usage = """usage: %prog [options] poetry-file

 

This is the Fast Poetry Server, Twisted edition.

Run it like this:

 

  python fastpoetry.py <path-to-poetry-file>

 

If you are in the base directory of the twisted-intro package,

you could run it like this:

 

  python twisted-server-1/fastpoetry.py poetry/ecstasy.txt

 

to serve up John Donne's Ecstasy, which I know you want to do.

"""

 

    parser = optparse.OptionParser(usage)

 

    help = "The port to listen on. Default to a random available port."

    parser.add_option('--port'type='int'help=help)

 

    help = "The interface to listen on. Default is localhost."

    parser.add_option('--iface'help=help, default='localhost')

 

    options, args = parser.parse_args()

    print("--arg:",options,args)

 

    if len(args) != 1:

        parser.error('Provide exactly one poetry file.')

 

    poetry_file = args[0]

 

    if not os.path.exists(args[0]):

        parser.error('No such file: %s' % poetry_file)

 

    return options, poetry_file

 

 

class PoetryProtocol(Protocol):

 

    def connectionMade(self):

        self.transport.write(self.factory.poem)

        self.transport.loseConnection()

 

 

class PoetryFactory(ServerFactory):

 

    protocol = PoetryProtocol

 

    def __init__(self, poem):

        self.poem = poem

 

 

def main():

    options, poetry_file = parse_args()

 

    poem = open(poetry_file).read()

 

    factory = PoetryFactory(poem)

 

    from twisted.internet import reactor

 

    port = reactor.listenTCP(options.port or 9000, factory,

                             interface=options.iface)

 

    print 'Serving %s on %s.' % (poetry_file, port.getHost())

 

    reactor.run()

 

 

if __name__ == '__main__':

    main()

client side   

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

# This is the Twisted Get Poetry Now! client, version 3.0.

 

# NOTE: This should not be used as the basis for production code.

 

import optparse

 

from twisted.internet.protocol import Protocol, ClientFactory

 

 

def parse_args():

    usage = """usage: %prog [options] [hostname]:port ...

 

This is the Get Poetry Now! client, Twisted version 3.0

Run it like this:

 

  python get-poetry-1.py port1 port2 port3 ...

"""

 

    parser = optparse.OptionParser(usage)

 

    _, addresses = parser.parse_args()

 

    if not addresses:

        print parser.format_help()

        parser.exit()

 

    def parse_address(addr):

        if ':' not in addr:

            host = '127.0.0.1'

            port = addr

        else:

            host, port = addr.split(':'1)

 

        if not port.isdigit():

            parser.error('Ports must be integers.')

 

        return host, int(port)

 

    return map(parse_address, addresses)

 

 

class PoetryProtocol(Protocol):

 

    poem = ''

 

    def dataReceived(self, data):

        self.poem += data

 

    def connectionLost(self, reason):

        self.poemReceived(self.poem)

 

    def poemReceived(self, poem):

        self.factory.poem_finished(poem)

 

 

class PoetryClientFactory(ClientFactory):

 

    protocol = PoetryProtocol

 

    def __init__(self, callback):

        self.callback = callback

 

    def poem_finished(self, poem):

        self.callback(poem)

 

 

def get_poetry(host, port, callback):

    """

    Download a poem from the given host and port and invoke

 

      callback(poem)

 

    when the poem is complete.

    """

    from twisted.internet import reactor

    factory = PoetryClientFactory(callback)

    reactor.connectTCP(host, port, factory)

 

 

def poetry_main():

    addresses = parse_args()

 

    from twisted.internet import reactor

 

    poems = []

 

    def got_poem(poem):

        poems.append(poem)

        if len(poems) == len(addresses):

            reactor.stop()

 

    for address in addresses:

        host, port = address

        get_poetry(host, port, got_poem)

 

    reactor.run()

 

    for poem in poems:

        print poem

 

 

if __name__ == '__main__':

    poetry_main()

  

  

Twisted深入

http://krondo.com/an-introduction-to-asynchronous-programming-and-twisted/ 

http://blog.csdn.net/hanhuili/article/details/9389433 

  

  

SqlAlchemy ORM  

SQLAlchemy是Python编程语言下的一款ORM框架,该框架建立在数据库API之上,使用关系对象映射进行数据库操作,简言之便是:将对象转换成SQL,然后使用数据API执行SQL并获取执行结果

Dialect用于和数据API进行交流,根据配置文件的不同调用不同的数据库API,从而实现对数据库的操作,如:

1

2

3

4

5

6

7

8

9

10

11

12

13

MySQL-Python

    mysql+mysqldb://<user>:<password>@<host>[:<port>]/<dbname>

  

pymysql

    mysql+pymysql://<username>:<password>@<host>/<dbname>[?<options>]

  

MySQL-Connector

    mysql+mysqlconnector://<user>:<password>@<host>[:<port>]/<dbname>

  

cx_Oracle

    oracle+cx_oracle://user:pass@host:port/dbname[?key=value&key=value...]

  

更多详见:http://docs.sqlalchemy.org/en/latest/dialects/index.html

  

步骤一:

使用 Engine/ConnectionPooling/Dialect 进行数据库操作,Engine使用ConnectionPooling连接数据库,然后再通过Dialect执行SQL语句。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

#!/usr/bin/env python

# -*- coding:utf-8 -*-

  

from sqlalchemy import create_engine

  

  

engine = create_engine("mysql+mysqldb://root:123@127.0.0.1:3306/s11", max_overflow=5)

  

engine.execute(

    "INSERT INTO ts_test (a, b) VALUES ('2', 'v1')"

)

  

engine.execute(

     "INSERT INTO ts_test (a, b) VALUES (%s, %s)",

    ((555"v1"),(666"v1"),)

)

engine.execute(

    "INSERT INTO ts_test (a, b) VALUES (%(id)s, %(name)s)",

    id=999, name="v1"

)

  

result = engine.execute('select * from ts_test')

result.fetchall()

  

步骤二:

使用 Schema Type/SQL Expression Language/Engine/ConnectionPooling/Dialect 进行数据库操作。Engine使用Schema Type创建一个特定的结构对象,之后通过SQL Expression Language将该对象转换成SQL语句,然后通过 ConnectionPooling 连接数据库,再然后通过 Dialect 执行SQL,并获取结果。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

#!/usr/bin/env python

# -*- coding:utf-8 -*-

 

from sqlalchemy import create_engine, Table, Column, Integer, String, MetaData, ForeignKey

 

metadata = MetaData()

 

user = Table('user', metadata,

    Column('id', Integer, primary_key=True),

    Column('name', String(20)),

)

 

color = Table('color', metadata,

    Column('id', Integer, primary_key=True),

    Column('name', String(20)),

)

engine = create_engine("mysql+mysqldb://root@localhost:3306/test", max_overflow=5)

 

metadata.create_all(engine)

增删改查

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

#!/usr/bin/env python

# -*- coding:utf-8 -*-

 

from sqlalchemy import create_engine, Table, Column, Integer, String, MetaData, ForeignKey

 

metadata = MetaData()

 

user = Table('user', metadata,

    Column('id', Integer, primary_key=True),

    Column('name', String(20)),

)

 

color = Table('color', metadata,

    Column('id', Integer, primary_key=True),

    Column('name', String(20)),

)

engine = create_engine("mysql+mysqldb://root:123@127.0.0.1:3306/s11", max_overflow=5)

 

conn = engine.connect()

 

# 创建SQL语句,INSERT INTO "user" (id, name) VALUES (:id, :name)

conn.execute(user.insert(),{'id':7,'name':'seven'})

conn.close()

 

# sql = user.insert().values(id=123, name='wu')

# conn.execute(sql)

# conn.close()

 

# sql = user.delete().where(user.c.id > 1)

 

# sql = user.update().values(fullname=user.c.name)

# sql = user.update().where(user.c.name == 'jack').values(name='ed')

 

# sql = select([user, ])

# sql = select([user.c.id, ])

# sql = select([user.c.name, color.c.name]).where(user.c.id==color.c.id)

# sql = select([user.c.name]).order_by(user.c.name)

# sql = select([user]).group_by(user.c.name)

 

# result = conn.execute(sql)

# print result.fetchall()

# conn.close()

 

一个简单的完整例子

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

from sqlalchemy import create_engine

from sqlalchemy.ext.declarative import declarative_base

from sqlalchemy import Column, Integer, String

from  sqlalchemy.orm import sessionmaker

 

Base = declarative_base() #生成一个SqlORM 基类

 

 

engine = create_engine("mysql+mysqldb://root@localhost:3306/test",echo=False)

 

 

class Host(Base):

    __tablename__ = 'hosts'

    id = Column(Integer,primary_key=True,autoincrement=True)

    hostname = Column(String(64),unique=True,nullable=False)

    ip_addr = Column(String(128),unique=True,nullable=False)

    port = Column(Integer,default=22)

 

Base.metadata.create_all(engine) #创建所有表结构

 

if __name__ == '__main__':

    SessionCls = sessionmaker(bind=engine) #创建与数据库的会话session class ,注意,这里返回给session的是个class,不是实例

    session = SessionCls()

    #h1 = Host(hostname='localhost',ip_addr='127.0.0.1')

    #h2 = Host(hostname='ubuntu',ip_addr='192.168.2.243',port=20000)

    #h3 = Host(hostname='ubuntu2',ip_addr='192.168.2.244',port=20000)

    #session.add(h3)

    #session.add_all( [h1,h2])

    #h2.hostname = 'ubuntu_test' #只要没提交,此时修改也没问题

    #session.rollback()

    #session.commit() #提交

    res = session.query(Host).filter(Host.hostname.in_(['ubuntu2','localhost'])).all()

    print(res)

  

 

更多内容详见:

    http://www.jianshu.com/p/e6bba189fcbd

    http://docs.sqlalchemy.org/en/latest/core/expression_api.html

注:SQLAlchemy无法修改表结构,如果需要可以使用SQLAlchemy开发者开源的另外一个软件Alembic来完成。

步骤三:

使用 ORM/Schema Type/SQL Expression Language/Engine/ConnectionPooling/Dialect 所有组件对数据进行操作。根据类创建对象,对象转换成SQL,执行SQL。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

#!/usr/bin/env python

# -*- coding:utf-8 -*-

  

from sqlalchemy.ext.declarative import declarative_base

from sqlalchemy import Column, Integer, String

from sqlalchemy.orm import sessionmaker

from sqlalchemy import create_engine

  

engine = create_engine("mysql+mysqldb://root:123@127.0.0.1:3306/s11", max_overflow=5)

  

Base = declarative_base()

  

  

class User(Base):

    __tablename__ = 'users'

    id = Column(Integer, primary_key=True)

    name = Column(String(50))

  

# 寻找Base的所有子类,按照子类的结构在数据库中生成对应的数据表信息

# Base.metadata.create_all(engine)

  

Session = sessionmaker(bind=engine)

session = Session()

  

  

# ########## 增 ##########

# u = User(id=2, name='sb')

# session.add(u)

# session.add_all([

#     User(id=3, name='sb'),

#     User(id=4, name='sb')

# ])

# session.commit()

  

# ########## 删除 ##########

# session.query(User).filter(User.id > 2).delete()

# session.commit()

  

# ########## 修改 ##########

# session.query(User).filter(User.id > 2).update({'cluster_id' : 0})

# session.commit()

# ########## 查 ##########

# ret = session.query(User).filter_by(name='sb').first()

  

# ret = session.query(User).filter_by(name='sb').all()

# print ret

  

# ret = session.query(User).filter(User.name.in_(['sb','bb'])).all()

# print ret

  

# ret = session.query(User.name.label('name_label')).all()

# print ret,type(ret)

  

# ret = session.query(User).order_by(User.id).all()

# print ret

  

# ret = session.query(User).order_by(User.id)[1:3]

# print ret

# session.commit()

外键关联

A one to many relationship places a foreign key on the child table referencing the parent.relationship() is then specified on the parent, as referencing a collection of items represented by the child

from sqlalchemy import Table, Column, Integer, ForeignKey
from sqlalchemy.orm import relationship
from sqlalchemy.ext.declarative import declarative_base

Base = declarative_base()

1

2

3

4

5

6

7

8

9

<br>class Parent(Base):

    __tablename__ = 'parent'

    id = Column(Integer, primary_key=True)

    children = relationship("Child")

 

class Child(Base):

    __tablename__ = 'child'

    id = Column(Integer, primary_key=True)

    parent_id = Column(Integer, ForeignKey('parent.id'))

To establish a bidirectional relationship in one-to-many, where the “reverse” side is a many to one, specify an additional relationship() and connect the two using therelationship.back_populates parameter:

1

2

3

4

5

6

7

8

9

10

class Parent(Base):

    __tablename__ = 'parent'

    id = Column(Integer, primary_key=True)

    children = relationship("Child", back_populates="parent")

 

class Child(Base):

    __tablename__ = 'child'

    id = Column(Integer, primary_key=True)

    parent_id = Column(Integer, ForeignKey('parent.id'))

    parent = relationship("Parent", back_populates="children")

Child will get a parent attribute with many-to-one semantics.

Alternatively, the backref option may be used on a single relationship() instead of usingback_populates:

1

2

3

4

class Parent(Base):

    __tablename__ = 'parent'

    id = Column(Integer, primary_key=True)

    children = relationship("Child", backref="parent")

  

  

附,原生sql join查询

几个Join的区别 http://stackoverflow.com/questions/38549/difference-between-inner-and-outer-joins 

  • INNER JOIN: Returns all rows when there is at least one match in BOTH tables
  • LEFT JOIN: Return all rows from the left table, and the matched rows from the right table
  • RIGHT JOIN: Return all rows from the right table, and the matched rows from the left table

1

select host.id,hostname,ip_addr,port,host_group.name from host right join host_group on host.id = host_group.host_id

in SQLAchemy

1

session.query(Host).join(Host.host_groups).filter(HostGroup.name=='t1').group_by("Host").all()

  

group by 查询

1

select name,count(host.id) as NumberOfHosts from host right join host_group on host.id= host_group.host_id group by name;

in SQLAchemy

1

2

3

4

5

6

from sqlalchemy import func

session.query(HostGroup, func.count(HostGroup.name )).group_by(HostGroup.name).all()

 

#another example

session.query(func.count(User.name), User.name).group_by(User.name).all() SELECT count(users.nameAS count_1, users.name AS users_name

FROM users GROUP BY users.name

  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在信号处理领域,DOA(Direction of Arrival)估计是一项关键技术,主要用于确定多个信号源到达接收阵列的方向。本文将详细探讨三种ESPRIT(Estimation of Signal Parameters via Rotational Invariance Techniques)算法在DOA估计中的实现,以及它们在MATLAB环境中的具体应用。 ESPRIT算法是由Paul Kailath等人于1986年提出的,其核心思想是利用阵列数据的旋转不变性来估计信号源的角度。这种算法相比传统的 MUSIC(Multiple Signal Classification)算法具有较低的计算复杂度,且无需进行特征值分解,因此在实际应用中颇具优势。 1. 普通ESPRIT算法 普通ESPRIT算法分为两个主要步骤:构造等效旋转不变系统和估计角度。通过空间平移(如延时)构建两个子阵列,使得它们之间的关系具有旋转不变性。然后,通过对子阵列数据进行最小二乘拟合,可以得到信号源的角频率估计,进一步转换为DOA估计。 2. 常规ESPRIT算法实现 在描述中提到的`common_esprit_method1.m`和`common_esprit_method2.m`是两种不同的普通ESPRIT算法实现。它们可能在实现细节上略有差异,比如选择子阵列的方式、参数估计的策略等。MATLAB代码通常会包含预处理步骤(如数据归一化)、子阵列构造、旋转不变性矩阵的建立、最小二乘估计等部分。通过运行这两个文件,可以比较它们在估计精度和计算效率上的异同。 3. TLS_ESPRIT算法 TLS(Total Least Squares)ESPRIT是对普通ESPRIT的优化,它考虑了数据噪声的影响,提高了估计的稳健性。在TLS_ESPRIT算法中,不假设数据噪声是高斯白噪声,而是采用总最小二乘准则来拟合数据。这使得算法在噪声环境下表现更优。`TLS_esprit.m`文件应该包含了TLS_ESPRIT算法的完整实现,包括TLS估计的步骤和旋转不变性矩阵的改进处理。 在实际应用中,选择合适的ESPRIT变体取决于系统条件,例如噪声水平、信号质量以及计算资源。通过MATLAB实现,研究者和工程师可以方便地比较不同算法的效果,并根据需要进行调整和优化。同时,这些代码也为教学和学习DOA估计提供了一个直观的平台,有助于深入理解ESPRIT算法的工作原理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值