mirror of
https://github.com/Bryanthelol/namekoplus
synced 2025-09-13 20:26:02 +08:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
37bdf56862 | |||
c76238125f |
@@ -0,0 +1,25 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
rabbitmq:
|
||||||
|
image: rabbitmq:3-management
|
||||||
|
container_name: 'rabbitmq'
|
||||||
|
hostname: 'rabbitmq'
|
||||||
|
ports:
|
||||||
|
- "5672:5672"
|
||||||
|
- "15672:15672"
|
||||||
|
- "25672:25672"
|
||||||
|
volumes:
|
||||||
|
- rabbitmq_data:/var/lib/rabbitmq
|
||||||
|
- rabbitmq_log:/var/log/rabbitmq
|
||||||
|
environment:
|
||||||
|
RABBITMQ_DEFAULT_USER: ${RABBITMQ_DEFAULT_USER:-admin}
|
||||||
|
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_DEFAULT_PASS:-admin}
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
rabbitmq_data:
|
||||||
|
driver: local
|
||||||
|
rabbitmq_log:
|
||||||
|
driver: local
|
@@ -3,6 +3,22 @@ import shutil
|
|||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
|
|
||||||
import click
|
import click
|
||||||
|
from python_on_whales import DockerException, ClientNotFoundError, DockerClient, docker as docker_testing
|
||||||
|
|
||||||
|
|
||||||
|
def check_docker():
|
||||||
|
try:
|
||||||
|
docker_testing.ps()
|
||||||
|
except ClientNotFoundError:
|
||||||
|
click.echo('Please install docker first', err=True)
|
||||||
|
raise
|
||||||
|
except DockerException:
|
||||||
|
click.echo('Please start docker correctly', err=True)
|
||||||
|
raise
|
||||||
|
|
||||||
|
if not docker_testing.compose.is_installed():
|
||||||
|
click.echo('Please install docker-compose first', err=True)
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
@contextmanager
|
@contextmanager
|
||||||
@@ -21,9 +37,8 @@ def status(status_msg: str, newline: bool = False, quiet: bool = False):
|
|||||||
|
|
||||||
|
|
||||||
def get_template_directory() -> str:
|
def get_template_directory() -> str:
|
||||||
"""Return the directory where nameko_plus setup templates are found.
|
"""
|
||||||
|
Return the directory where nameko_plus setup templates are found.
|
||||||
This method is used by the nameko_plus ``init`` commands.
|
|
||||||
"""
|
"""
|
||||||
import namekoplus
|
import namekoplus
|
||||||
|
|
||||||
@@ -31,6 +46,16 @@ def get_template_directory() -> str:
|
|||||||
return os.path.join(package_dir, 'templates')
|
return os.path.join(package_dir, 'templates')
|
||||||
|
|
||||||
|
|
||||||
|
def get_agent_directory() -> str:
|
||||||
|
"""
|
||||||
|
Return the directory where nameko_plus setup agent are found.
|
||||||
|
"""
|
||||||
|
import namekoplus
|
||||||
|
|
||||||
|
package_dir = os.path.abspath(os.path.dirname(namekoplus.__file__))
|
||||||
|
return os.path.join(package_dir, 'chassis-agent')
|
||||||
|
|
||||||
|
|
||||||
@click.group()
|
@click.group()
|
||||||
def cli():
|
def cli():
|
||||||
pass
|
pass
|
||||||
@@ -43,7 +68,7 @@ def cli():
|
|||||||
@click.option('-t', '--type', '_type',
|
@click.option('-t', '--type', '_type',
|
||||||
default='all',
|
default='all',
|
||||||
show_default=True,
|
show_default=True,
|
||||||
type=click.Choice(['all', 'rpc', 'event', 'http', 'timer'], case_sensitive=False),
|
type=click.Choice(['all', 'rpc', 'event', 'http', 'timer', 'demo'], case_sensitive=False),
|
||||||
help='The template type of nameko service')
|
help='The template type of nameko service')
|
||||||
def init(directory, _type):
|
def init(directory, _type):
|
||||||
"""
|
"""
|
||||||
@@ -74,11 +99,51 @@ def init(directory, _type):
|
|||||||
|
|
||||||
|
|
||||||
@cli.command()
|
@cli.command()
|
||||||
def start():
|
@click.option('-m', '--middleware',
|
||||||
|
required=True,
|
||||||
|
type=click.Choice(['rabbitmq'], case_sensitive=False),
|
||||||
|
help='The middleware name')
|
||||||
|
@click.option('-u', '--user',
|
||||||
|
required=False,
|
||||||
|
help='The user name of the middleware')
|
||||||
|
@click.option('-p', '--password',
|
||||||
|
required=False,
|
||||||
|
help='The password of the middleware')
|
||||||
|
def start(middleware, user, password):
|
||||||
"""
|
"""
|
||||||
Start a middleware, such as RabbitMQ.
|
Start a middleware that the nameko service depends on.
|
||||||
"""
|
"""
|
||||||
click.echo('Initialized the database')
|
check_docker()
|
||||||
|
|
||||||
|
if user and password:
|
||||||
|
os.environ['RABBITMQ_DEFAULT_USER'] = user
|
||||||
|
os.environ['RABBITMQ_DEFAULT_PASS'] = password
|
||||||
|
|
||||||
|
docker_compose_file_dir = os.path.join(get_agent_directory(), middleware)
|
||||||
|
for file_ in os.listdir(docker_compose_file_dir):
|
||||||
|
compose_file_path = os.path.join(docker_compose_file_dir, file_)
|
||||||
|
with status(f'Starting {middleware}'):
|
||||||
|
docker = DockerClient(compose_files=[compose_file_path])
|
||||||
|
docker.compose.up(detach=True)
|
||||||
|
|
||||||
|
|
||||||
|
@cli.command()
|
||||||
|
@click.option('-m', '--middleware',
|
||||||
|
required=True,
|
||||||
|
type=click.Choice(['rabbitmq'], case_sensitive=False),
|
||||||
|
help='The middleware name')
|
||||||
|
def stop(middleware):
|
||||||
|
"""
|
||||||
|
Stop a middleware that the nameko service depends on.
|
||||||
|
"""
|
||||||
|
check_docker()
|
||||||
|
|
||||||
|
docker_compose_file_dir = os.path.join(get_agent_directory(), middleware)
|
||||||
|
for file_ in os.listdir(docker_compose_file_dir):
|
||||||
|
compose_file_path = os.path.join(docker_compose_file_dir, file_)
|
||||||
|
with status(f'Stoping {middleware}'):
|
||||||
|
docker = DockerClient(compose_files=[compose_file_path])
|
||||||
|
docker.compose.down()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
AMQP_URI: pyamqp://${RABBIT_USER:guest}:${RABBIT_PASSWORD:guest}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
AMQP_URI: pyamqp://${RABBIT_USER:admin}:${RABBIT_PASSWORD:admin}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
||||||
|
WEB_SERVER_ADDRESS: '0.0.0.0:8000'
|
||||||
RPC_EXCHANGE: 'nameko-rpc'
|
RPC_EXCHANGE: 'nameko-rpc'
|
||||||
|
|
||||||
max_workers: 10
|
max_workers: 10
|
||||||
|
0
namekoplus/templates/demo/__init__.py
Normal file
0
namekoplus/templates/demo/__init__.py
Normal file
5
namekoplus/templates/demo/config.yml
Normal file
5
namekoplus/templates/demo/config.yml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
AMQP_URI: pyamqp://${RABBIT_USER:admin}:${RABBIT_PASSWORD:admin}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
||||||
|
RPC_EXCHANGE: 'nameko-rpc'
|
||||||
|
|
||||||
|
max_workers: 10
|
||||||
|
parent_calls_tracked: 20
|
20
namekoplus/templates/demo/rpc_demo.py
Normal file
20
namekoplus/templates/demo/rpc_demo.py
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
from nameko.rpc import rpc, ServiceRpc
|
||||||
|
|
||||||
|
|
||||||
|
class RpcResponderDemoService:
|
||||||
|
name = "rpc_responder_demo_service"
|
||||||
|
|
||||||
|
@rpc
|
||||||
|
def hello(self, name):
|
||||||
|
return "Hello, {}!".format(name)
|
||||||
|
|
||||||
|
|
||||||
|
class RpcCallerDemoService:
|
||||||
|
name = "rpc_caller_demo_service"
|
||||||
|
|
||||||
|
remote = ServiceRpc("rpc_responder_demo_service")
|
||||||
|
|
||||||
|
@rpc
|
||||||
|
def remote_hello(self, value="John Doe"):
|
||||||
|
res = u"{}".format(value)
|
||||||
|
return self.remote.hello(res)
|
@@ -1,4 +1,4 @@
|
|||||||
AMQP_URI: pyamqp://${RABBIT_USER:guest}:${RABBIT_PASSWORD:guest}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
AMQP_URI: pyamqp://${RABBIT_USER:admin}:${RABBIT_PASSWORD:admin}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
||||||
RPC_EXCHANGE: 'nameko-rpc'
|
RPC_EXCHANGE: 'nameko-rpc'
|
||||||
|
|
||||||
max_workers: 10
|
max_workers: 10
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
AMQP_URI: pyamqp://${RABBIT_USER:guest}:${RABBIT_PASSWORD:guest}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
AMQP_URI: pyamqp://${RABBIT_USER:admin}:${RABBIT_PASSWORD:admin}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
||||||
|
WEB_SERVER_ADDRESS: '0.0.0.0:8000'
|
||||||
RPC_EXCHANGE: 'nameko-rpc'
|
RPC_EXCHANGE: 'nameko-rpc'
|
||||||
|
|
||||||
max_workers: 10
|
max_workers: 10
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
AMQP_URI: pyamqp://${RABBIT_USER:guest}:${RABBIT_PASSWORD:guest}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
AMQP_URI: pyamqp://${RABBIT_USER:admin}:${RABBIT_PASSWORD:admin}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
||||||
RPC_EXCHANGE: 'nameko-rpc'
|
RPC_EXCHANGE: 'nameko-rpc'
|
||||||
|
|
||||||
max_workers: 10
|
max_workers: 10
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
AMQP_URI: pyamqp://${RABBIT_USER:guest}:${RABBIT_PASSWORD:guest}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
AMQP_URI: pyamqp://${RABBIT_USER:admin}:${RABBIT_PASSWORD:admin}@${RABBIT_HOST:localhost}:${RABBIT_PORT:5672}/
|
||||||
RPC_EXCHANGE: 'nameko-rpc'
|
RPC_EXCHANGE: 'nameko-rpc'
|
||||||
|
|
||||||
max_workers: 10
|
max_workers: 10
|
||||||
|
35
setup.py
35
setup.py
@@ -9,12 +9,16 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='namekoplus',
|
name='namekoplus',
|
||||||
version='0.1.2',
|
version='0.2.1',
|
||||||
description='A lightweight Python distributed microservice solution',
|
description='A lightweight Python distributed microservice solution',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
url='https://github.com/Bryanthelol/namekoplus',
|
url='',
|
||||||
|
project_urls={
|
||||||
|
'Documentation': 'https://doc.bearcatlog.com/',
|
||||||
|
'Source Code': 'https://github.com/Bryanthelol/namekoplus',
|
||||||
|
'Bug Tracker': 'https://github.com/Bryanthelol/namekoplus/issues',
|
||||||
|
},
|
||||||
author='Bryant He',
|
author='Bryant He',
|
||||||
author_email='bryantsisu@qq.com',
|
author_email='bryantsisu@qq.com',
|
||||||
|
|
||||||
@@ -45,20 +49,19 @@ setup(
|
|||||||
|
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'nameko==3.0.0rc11',
|
'nameko==3.0.0rc11',
|
||||||
'nameko-sentry==1.0.0',
|
|
||||||
'nameko-tracer==1.4.0',
|
|
||||||
'click==8.1.5',
|
'click==8.1.5',
|
||||||
'pytest==7.4.0',
|
'python-on-whales==0.62.0',
|
||||||
'environs==9.5.0',
|
'pytest==7.4.0'
|
||||||
'logstash_formatter==0.5.17',
|
|
||||||
'statsd==4.0.1',
|
|
||||||
'tenacity==8.2.2',
|
|
||||||
'cachetools==5.3.0',
|
|
||||||
'circuitbreaker==2.0.0',
|
|
||||||
'shortuuid==1.0.11',
|
|
||||||
'cryptography'
|
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
|
'ha': ['tenacity==8.2.2',
|
||||||
|
'cachetools==5.3.0',
|
||||||
|
'circuitbreaker==2.0.0',
|
||||||
|
'statsd==4.0.1',
|
||||||
|
'logstash_formatter==0.5.17',
|
||||||
|
'nameko-sentry==1.0.0',
|
||||||
|
'nameko-tracer==1.4.0',
|
||||||
|
'shortuuid==1.0.11'],
|
||||||
'apiflask': ['apiflask>=1.3.1',
|
'apiflask': ['apiflask>=1.3.1',
|
||||||
'gevent>=22.10.2',
|
'gevent>=22.10.2',
|
||||||
'gunicorn==20.1.0'],
|
'gunicorn==20.1.0'],
|
||||||
@@ -68,6 +71,8 @@ setup(
|
|||||||
'sqlalchemy==2.0.15',
|
'sqlalchemy==2.0.15',
|
||||||
'sqlacodegen==2.3.0',
|
'sqlacodegen==2.3.0',
|
||||||
'alembic==1.11.1'],
|
'alembic==1.11.1'],
|
||||||
'dev': ['mako==1.2.4'],
|
'ssl': ['cryptography'],
|
||||||
|
'dev': ['mako==1.2.4',
|
||||||
|
'environs==9.5.0']
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user