libretificacaotjcore 0.1.37__py3-none-any.whl → 0.1.40__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of libretificacaotjcore might be problematic. Click here for more details.

@@ -1,15 +1,16 @@
1
- import pika
1
+ import asyncio
2
+ import aio_pika
2
3
  import json
3
4
 
4
-
5
5
  class RabbitMQConsumer:
6
6
  def __init__(
7
7
  self,
8
+ *,
8
9
  host: str,
9
10
  queue: str,
10
11
  username: str,
11
12
  password: str,
12
- vhost: str ="/",
13
+ vhost: str = "/",
13
14
  ):
14
15
  self.host = host
15
16
  self.queue = queue
@@ -18,39 +19,41 @@ class RabbitMQConsumer:
18
19
  self.vhost = vhost
19
20
  self.connection = None
20
21
  self.channel = None
21
- self.connect()
22
-
23
- def connect(self):
24
- credentials = pika.PlainCredentials(self.username, self.password)
25
- parameters = pika.ConnectionParameters(
26
- host=self.host,
27
- credentials=credentials,
28
- virtual_host=self.vhost,
22
+
23
+ async def connect(self):
24
+ self.connection = await aio_pika.connect_robust(
25
+ host=self.host,
26
+ login=self.username,
27
+ password=self.password,
28
+ virtualhost=self.vhost,
29
29
  heartbeat=600,
30
- blocked_connection_timeout=1200,
31
30
  )
32
-
33
- self.connection = pika.BlockingConnection(parameters)
34
- self.channel = self.connection.channel()
35
- self.channel.queue_declare(queue=self.queue, durable=True)
36
-
37
- def start_consuming(self, callback):
38
- def on_message(ch, method, properties, body):
39
- mensagem = json.loads(body)
40
- callback(mensagem)
41
- ch.basic_ack(delivery_tag=method.delivery_tag)
42
- self.close()
43
-
31
+ self.channel = await self.connection.channel()
32
+ await self.channel.set_qos(prefetch_count=1)
33
+ await self.channel.declare_queue(self.queue, durable=True)
34
+
35
+ async def start_consuming(self, callback):
44
36
  if not self.channel:
45
37
  raise RuntimeError("❌ Canal RabbitMQ não conectado. Chame connect() antes.")
46
38
 
47
- self.channel.basic_qos(prefetch_count=1)
48
- self.channel.basic_consume(queue=self.queue, on_message_callback=on_message)
49
- print(
50
- f'[*] Aguardando mensagens na fila "{self.queue}". Para sair pressione CTRL+C'
51
- )
52
- self.channel.start_consuming()
39
+ queue = await self.channel.get_queue(self.queue)
40
+
41
+ async def on_message(message):
42
+ async with message.process():
43
+ try:
44
+ mensagem = json.loads(message.body.decode())
45
+ await callback(mensagem) # aqui sim passa o DTO
46
+ except Exception as e:
47
+ print(f"❌ Erro ao processar mensagem: {e}")
48
+
49
+ await queue.consume(on_message) # registra callback
50
+
51
+ print(f'[*] Aguardando mensagens na fila "{self.queue}". Para sair pressione CTRL+C')
52
+
53
+ # Mantém o consumer rodando
54
+ await asyncio.Future()
55
+
53
56
 
54
- def close(self):
57
+ async def close(self):
55
58
  if self.connection:
56
- self.connection.close()
59
+ await self.connection.close()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: libretificacaotjcore
3
- Version: 0.1.37
3
+ Version: 0.1.40
4
4
  Summary: Biblioteca para centralizar conexao com filas no rabbit e banco de dados no mongodb para os servicos de retificacao da TJ
5
5
  Author-email: Jhonatan Azevedo <dev.azevedo@outlook.com>
6
6
  Project-URL: Homepage, https://github.com/seu-usuario/libretificacaotjcore
@@ -13,11 +13,11 @@ libretificacaotjcore/enums/e_fase_retificacao.py,sha256=g7xVlIMKpo9QUDnOdwYzsx8o
13
13
  libretificacaotjcore/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  libretificacaotjcore/services/crypto_pass_service.py,sha256=9D0vyjan6f_8AfNxGkLpGdvyMpojsJq_AAySpv_zKMc,740
15
15
  libretificacaotjcore/services/file_service.py,sha256=14CJokBbrsryQGmL0_unH2QKZpnteEAfxf5CPFdv6cE,2075
16
- libretificacaotjcore/services/rabbitmq_consumer.py,sha256=zk3DDjWZMDHcj32pTeu4zQTabRbDtvreypmr_loNRFg,1762
16
+ libretificacaotjcore/services/rabbitmq_consumer.py,sha256=yRS3sAkaMIIn8Y06icwkO1bpddlLC7BmNSHJVhUalzY,1818
17
17
  libretificacaotjcore/services/rabbitmq_publisher.py,sha256=xsb9LmIuZizzq5lxnEEZKMK3U952KSQ2oqlTBZi2Lt8,1787
18
18
  libretificacaotjcore/services/request_servico_api.py,sha256=G7vnmvOfwrCGL-Jy_5tCKG-l5E00OCkJfkuoa5Y6sHo,613
19
19
  libretificacaotjcore/services/s3_service.py,sha256=HKR_jt2H3XdV1PCzo5R5bnhmoQ3I46Yn5IqAvVPhsjs,2946
20
- libretificacaotjcore-0.1.37.dist-info/METADATA,sha256=Z9mls_R_1NA7XPbeJPvPRzWWeeNCjJ8euXjZqsIKuDc,2564
21
- libretificacaotjcore-0.1.37.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
- libretificacaotjcore-0.1.37.dist-info/top_level.txt,sha256=J9vnz_X9OUnxC-eXHiAzlc9xIrWBwZ5bgnIDQIIFY4c,21
23
- libretificacaotjcore-0.1.37.dist-info/RECORD,,
20
+ libretificacaotjcore-0.1.40.dist-info/METADATA,sha256=3dB_2pwlsN-Xgb2zFhn3N__WBIxHPPmeMfXuupIk-l0,2564
21
+ libretificacaotjcore-0.1.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
+ libretificacaotjcore-0.1.40.dist-info/top_level.txt,sha256=J9vnz_X9OUnxC-eXHiAzlc9xIrWBwZ5bgnIDQIIFY4c,21
23
+ libretificacaotjcore-0.1.40.dist-info/RECORD,,