-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jason Ray <[email protected]>
- Loading branch information
Showing
4 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import argparse | ||
import sys | ||
from icecream import ic | ||
from loguru import logger | ||
from pulpo_messaging.message import Message | ||
from pulpo_messaging.queue_adapter import QueueAdapter | ||
from pulpo_messaging.kessel import Pulpo, PulpoConfig | ||
|
||
|
||
def main(): | ||
# logger.remove() # Remove default stderr handler | ||
# logger.add(sys.stdout, format="{message}") | ||
|
||
parser = argparse.ArgumentParser(prog='pulpo-cli', description='Provides a set of common pulpo-messaging utilities') | ||
parser.add_argument('command') | ||
parser.add_argument('-v', '--verbose', dest='verbose', action='store_true') | ||
# parser.add_argument('--config', type=str, help='path to config file') | ||
# parser.add_argument('--server', '-s', dest='host', default='127.0.0.1', help='beanstalkd host/server', type=str) | ||
# parser.add_argument('--port', '-p', dest='port', default=11300, help='beanstalkd port', type=int) | ||
# parser.add_argument('--encoding', '-e', dest='encoding', default='utf-8', help='encoding', type=str) | ||
# parser.add_argument('--tube', '-t', dest='tube', default='default', help='beanstalkd tube', type=str) | ||
# parser.add_argument('--id', dest='job_id', help='job id (for peek)', type=int) | ||
# parser.add_argument('--put.priority', '--priority', dest='priority', default=5, help='when performing `put`, priority of message', type=int) | ||
# parser.add_argument('--put.delay', '--delay', dest='delay', default=0, help='when performing `put`, delay of message in seconds', type=int) | ||
# parser.add_argument('--put.ttr', '--ttr', dest='ttr', default=0, help='when performing `put`, ttr in seconds', type=int) | ||
|
||
args, unknown = parser.parse_known_args() | ||
|
||
if args.verbose: | ||
logger.remove(0) | ||
logger.add(sys.stdout, level="TRACE") | ||
else: | ||
logger.remove(0) | ||
logger.add(sys.stdout, format="{message}", level="SUCCESS") | ||
|
||
|
||
command_parts = args.command.split('.') | ||
command_parent = command_parts[0] | ||
|
||
match command_parent: | ||
case 'queue': | ||
QueueCommands.run() | ||
|
||
return 0 | ||
|
||
|
||
class QueueCommands(): | ||
@staticmethod | ||
def run(): | ||
parser = argparse.ArgumentParser(prog='pulpo-cli-queue-utilities', description='Provides a set of common pulpo-messaging queue utilities') | ||
parser.add_argument('command') | ||
parser.add_argument('--config', required=True, type=str, help='path to config file' ) | ||
parser.add_argument('--publish.payload', '--payload', dest='payload', help='when performing `publish`, payload portion of the body of the message', type=str) | ||
parser.add_argument('--publish.number', '--n', dest='number_of_messages', help='when performing `publish`, number of messages to publish', type=int) | ||
|
||
args = parser.parse_args() | ||
command_parts = args.command.split('.') | ||
command_child = command_parts[1] | ||
|
||
pulpo = Pulpo(PulpoConfig().fromJsonFile(file_path=args.config)) | ||
client = pulpo.initialize_queue_adapter() | ||
|
||
match command_child: | ||
case 'pop' | 'dequeue': | ||
QueueCommands.pop(client=client) | ||
# case 'peek': | ||
# QueueCommands.peek(client=client, job_id=args.job_id) | ||
# case 'delete': | ||
# QueueCommands.delete(client=client, job_id=args.job_id) | ||
case 'publish' | 'put' | 'enqueue': | ||
if args.number_of_messages: | ||
n=args.number_of_messages | ||
else: | ||
n=1 | ||
for i in range(1,n+1): | ||
QueueCommands.publish(client=client, body=args.payload) | ||
case _: | ||
raise Exception(f'invalid command [{command_child}]') | ||
|
||
|
||
@staticmethod | ||
def pop(client: QueueAdapter): | ||
message = client.dequeue() | ||
if message: | ||
client.commit (message) | ||
logger.success(f'pop: {message.id=} \n{message}') | ||
else: | ||
logger.warning(f'pop: no message available') | ||
|
||
|
||
# @staticmethod | ||
# def peek(client: QueueAdapter, job_id: int): | ||
# if not job_id: | ||
# raise Exception(f'invalid job id {job_id}') | ||
# job = client.peek(id=job_id) | ||
# logger.info(f'peek: {job.id=} \n{job.body}') | ||
|
||
|
||
@staticmethod | ||
def publish(client: QueueAdapter, body: str): | ||
message = Message(payload = body) | ||
message.set_header_item("source", "pulpo-cli.py") | ||
message = client.enqueue(message) | ||
logger.success(f'put: {message.id=}') | ||
|
||
# @staticmethod | ||
# def delete(client: QueueAdapter, job_id: int): | ||
# client.delete(job=job_id) | ||
# logger.info(f'delete: {job_id=}') | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"shutdown_after_number_of_empty_iterations": 7, | ||
"enable_output_buffering": false, | ||
"queue_adapter_type": "file_queue_adapter", | ||
"enable_statman_reporting": false, | ||
"banner": { | ||
"enable":true, | ||
"name":"pulpo" | ||
}, | ||
"file_queue_adapter": { | ||
"base_path": "/tmp/pulpo/fqa", | ||
"skip_random_messages_range": 0, | ||
"message_format": "json", | ||
"enable_history": "True" | ||
}, | ||
"beanstalkd_queue_adapter": { | ||
"host": "127.0.0.1", | ||
"port": 11300, | ||
"default_tube": "pulpo-beanstalk-queue-adapter", | ||
"encoding": "UTF-8", | ||
"reserve_timeout": 0 | ||
}, | ||
"echo_handler": { | ||
"destination_directory": "/tmp/pulpo/echo" | ||
}, | ||
"lower_handler": { | ||
"destination_directory": "/tmp/pulpo/lower" | ||
}, | ||
"upper_handler": { | ||
"destination_directory": "/tmp/pulpo/upper" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters