diff --git a/bogdanov_dmitry_lab_4/README.md b/bogdanov_dmitry_lab_4/README.md new file mode 100644 index 0000000..1efa097 --- /dev/null +++ b/bogdanov_dmitry_lab_4/README.md @@ -0,0 +1,34 @@ +# Богданов Дмитрий ПИбд-42 +# Лабораторная работа №4 + + +## Предметная область: +Автоматизация работы теплицы + +## Результаты выполнения туториалов: + +- Первый туториал: +![изображение 1](./images/tut1.png) + +- Второй туториал: +![изображение 2](./images/tut2.png) + +- Третий туториал: +![изображение 3](./images/tut3.png) + + +## Данные из RabbitMQ: + +![изображение 1](./images/rmq1.png) +![изображение 2](./images/rmq2.png) +![изображение 3](./images/rmq3.png) +![изображение 3](./images/rmq4.png) + +### Вывод: +Из-за моментальной обработки сообщений в Consumer2, его очередь никогда не заполняется. +Consumer1 же тратит на обработку 2 секунды, из-за чего соответствующая очередь существенно заполняется при одном +запущенном экземпляре. +При нескольких запущенных экземплярах Consumer1 очередь заполняется существенно медленнее, и перестаёт заполняться совсем при определенном кол-ве запущенных экземпляров. + + +## [Видео](https://drive.google.com/file/d/1KWHHYWiK8OX48OfhDnEKDtMz-Umfs0uj/view?usp=sharing) \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/Sample Program/consumer1.py b/bogdanov_dmitry_lab_4/Sample Program/consumer1.py new file mode 100644 index 0000000..7defb87 --- /dev/null +++ b/bogdanov_dmitry_lab_4/Sample Program/consumer1.py @@ -0,0 +1,27 @@ +import pika +import time + + +def callback(ch, method, properties, body): + print(f'Receiver 1: получено сообщение. {body.decode()}') + + time.sleep(3) + + print('Receiver 1 закончил обработку') + + +def consume_events_1(): + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) + channel = connection.channel() + + channel.queue_declare(queue='receiver1_queue') + channel.queue_bind(exchange='greenhouse_events', queue='receiver1_queue') + + channel.basic_consume(queue='receiver1_queue', on_message_callback=callback, auto_ack=True) + + print('Ожидание сообщения...') + channel.start_consuming() + + +if __name__ == "__main__": + consume_events_1() diff --git a/bogdanov_dmitry_lab_4/Sample Program/consumer2.py b/bogdanov_dmitry_lab_4/Sample Program/consumer2.py new file mode 100644 index 0000000..2151864 --- /dev/null +++ b/bogdanov_dmitry_lab_4/Sample Program/consumer2.py @@ -0,0 +1,24 @@ +import pika + + +def callback(ch, method, properties, body): + print(f'Receiver 2: получено сообщение. {body.decode()}') + + print('Receiver 2 закончил обработку') + + +def consume_events_2(): + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) + channel = connection.channel() + + channel.queue_declare(queue='receiver2_queue') + channel.queue_bind(exchange='greenhouse_events', queue='receiver2_queue') + + channel.basic_consume(queue='receiver2_queue', on_message_callback=callback, auto_ack=True) + + print('Ожидание сообщения...') + channel.start_consuming() + + +if __name__ == "__main__": + consume_events_2() diff --git a/bogdanov_dmitry_lab_4/Sample Program/publisher.py b/bogdanov_dmitry_lab_4/Sample Program/publisher.py new file mode 100644 index 0000000..cb5debe --- /dev/null +++ b/bogdanov_dmitry_lab_4/Sample Program/publisher.py @@ -0,0 +1,25 @@ +import pika +import time + +def publish_events(): + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) + channel = connection.channel() + + channel.exchange_declare(exchange='greenhouse_events', exchange_type='fanout') + + events = [ + "Влажность превысила верхнюю границу", + "Влажность упала за нижнюю границу", + "Полив начат", + "Полив остановлен" + ] + + while True: + event = events[int(time.time()) % len(events)] + channel.basic_publish(exchange='greenhouse_events', routing_key='', body=event) + print(f'Отправлено: {event}') + time.sleep(1) + + +if __name__ == "__main__": + publish_events() diff --git a/bogdanov_dmitry_lab_4/Tutorial 1/receive.py b/bogdanov_dmitry_lab_4/Tutorial 1/receive.py new file mode 100644 index 0000000..03b817d --- /dev/null +++ b/bogdanov_dmitry_lab_4/Tutorial 1/receive.py @@ -0,0 +1,25 @@ +import pika, sys, os + +def main(): + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) + channel = connection.channel() + + channel.queue_declare(queue='hello') + + def callback(ch, method, properties, body): + print(f" [x] Received {body}") + + channel.basic_consume(queue='hello', on_message_callback=callback, auto_ack=True) + + print(' [*] Waiting for messages. To exit press CTRL+C') + channel.start_consuming() + +if __name__ == '__main__': + try: + main() + except KeyboardInterrupt: + print('Interrupted') + try: + sys.exit(0) + except SystemExit: + os._exit(0) diff --git a/bogdanov_dmitry_lab_4/Tutorial 1/send.py b/bogdanov_dmitry_lab_4/Tutorial 1/send.py new file mode 100644 index 0000000..64b411d --- /dev/null +++ b/bogdanov_dmitry_lab_4/Tutorial 1/send.py @@ -0,0 +1,13 @@ +import pika + +connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) +channel = connection.channel() + +channel.queue_declare('hello') + +channel.basic_publish(exchange='', + routing_key='hello', + body='Hello world!') +print(" [x] Sent 'Hello world!'") + +connection.close() \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/Tutorial 2/new_task.py b/bogdanov_dmitry_lab_4/Tutorial 2/new_task.py new file mode 100644 index 0000000..5ed2d91 --- /dev/null +++ b/bogdanov_dmitry_lab_4/Tutorial 2/new_task.py @@ -0,0 +1,19 @@ +import pika +import sys + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) +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=pika.DeliveryMode.Persistent + )) +print(f" [x] Sent {message}") +connection.close() \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/Tutorial 2/worker.py b/bogdanov_dmitry_lab_4/Tutorial 2/worker.py new file mode 100644 index 0000000..d83d59a --- /dev/null +++ b/bogdanov_dmitry_lab_4/Tutorial 2/worker.py @@ -0,0 +1,22 @@ +import pika +import time + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) +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(f" [x] Received {body.decode()}") + 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(queue='task_queue', on_message_callback=callback) + +channel.start_consuming() \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/Tutorial 3/emit_log.py b/bogdanov_dmitry_lab_4/Tutorial 3/emit_log.py new file mode 100644 index 0000000..a02a070 --- /dev/null +++ b/bogdanov_dmitry_lab_4/Tutorial 3/emit_log.py @@ -0,0 +1,13 @@ +import pika +import sys + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) +channel = connection.channel() + +channel.exchange_declare(exchange='logs', exchange_type='fanout') + +message = ' '.join(sys.argv[1:]) or "info: Hello World!" +channel.basic_publish(exchange='logs', routing_key='', body=message) +print(f" [x] Sent {message}") +connection.close() \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/Tutorial 3/receive_logs.py b/bogdanov_dmitry_lab_4/Tutorial 3/receive_logs.py new file mode 100644 index 0000000..6363847 --- /dev/null +++ b/bogdanov_dmitry_lab_4/Tutorial 3/receive_logs.py @@ -0,0 +1,22 @@ +import pika + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost', port=5672, credentials=pika.PlainCredentials("user", "password"))) +channel = connection.channel() + +channel.exchange_declare(exchange='logs', exchange_type='fanout') + +result = channel.queue_declare(queue='', exclusive=True) +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(f" [x] {body}") + +channel.basic_consume( + queue=queue_name, on_message_callback=callback, auto_ack=True) + +channel.start_consuming() \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/compose.yaml b/bogdanov_dmitry_lab_4/compose.yaml new file mode 100644 index 0000000..7e7c284 --- /dev/null +++ b/bogdanov_dmitry_lab_4/compose.yaml @@ -0,0 +1,12 @@ +version: '3.8' + +services: + rabbitmq: + image: rabbitmq:3-management + container_name: rabbitmq + environment: + RABBITMQ_DEFAULT_USER: user + RABBITMQ_DEFAULT_PASS: password + ports: + - "5672:5672" + - "15672:15672" \ No newline at end of file diff --git a/bogdanov_dmitry_lab_4/images/rmq1.png b/bogdanov_dmitry_lab_4/images/rmq1.png new file mode 100644 index 0000000..0f89de7 Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/rmq1.png differ diff --git a/bogdanov_dmitry_lab_4/images/rmq2.png b/bogdanov_dmitry_lab_4/images/rmq2.png new file mode 100644 index 0000000..916118c Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/rmq2.png differ diff --git a/bogdanov_dmitry_lab_4/images/rmq3.png b/bogdanov_dmitry_lab_4/images/rmq3.png new file mode 100644 index 0000000..e9529ad Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/rmq3.png differ diff --git a/bogdanov_dmitry_lab_4/images/rmq4.png b/bogdanov_dmitry_lab_4/images/rmq4.png new file mode 100644 index 0000000..4e1b089 Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/rmq4.png differ diff --git a/bogdanov_dmitry_lab_4/images/tut1.png b/bogdanov_dmitry_lab_4/images/tut1.png new file mode 100644 index 0000000..90be8e5 Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/tut1.png differ diff --git a/bogdanov_dmitry_lab_4/images/tut2.png b/bogdanov_dmitry_lab_4/images/tut2.png new file mode 100644 index 0000000..ce16eda Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/tut2.png differ diff --git a/bogdanov_dmitry_lab_4/images/tut3.png b/bogdanov_dmitry_lab_4/images/tut3.png new file mode 100644 index 0000000..847cddf Binary files /dev/null and b/bogdanov_dmitry_lab_4/images/tut3.png differ