Basic usage
- Define starting state
- Set up delegates
- Run the server
Starting State
You can use starting component objects to help define the starting state
rigatoni.StartingComponent(Type[Component], dict[Component_Attr, Value])
- You can refer to the objects listed here to find all the available delegates along with their mandatory, default, and optional attributes. Additional information on NOODLE components and their attributes can be found here
- When creating methods, an additional callable object should be attached. This method will be injected onto the server, and it will be associated with its corresponding method component.
rigatoni.StartingComponent(Type[Component], dict[Component_Attr, Value], Callable)
Defining Methods
To help with creating methods that manipulate the server's state, Rigatoni provides several methods that can be used manage objects in the scene. More information on these methods can be found in the server section of the API reference tab. Also, it is important to note that since each method is injected onto the server, they are called with a couple of arguments by default. The first two arguments to each method should always be the server object itself and a context. This provides easy access to essential information that can be used in the method. Exceptions raised in these methods should be MethodException objects. These exceptions will be caught by the server and sent to clients in a method reply message.
Delegates
The server comes with a default delegate class for each component that is maintained in the server's state. These default delegates can be subclassed to add more functionality to each component in the scene. For example, the table delegate doesn't store any data by default, but users can customize it using any data structure they like. Below is a simple example where the table delegate uses an added dataframe. A more complete version of this example can be found in here.
Note
In this library, delegates are Pydantic models. This means that they come with some built in functionality, and it might be helpful to read the Pydantic docs to learn more about how to use them.
import pandas as pd
from rigatoni import Table
class CustomTableDelegate(Table):
dataframe = pd.DataFrame()
def handle_delete(self, keys: list[int]):
self.dataframe.drop(index=keys, inplace=True)
return keys
Logging
Rigatoni uses the standard logging module for Python. The logging level can be set by the user to any of the following:
logging.DEBUG
logging.INFO
logging.WARNING
logging.ERROR
logging.CRITICAL
Here is a snippet you can use to toggle the logging level:
import logging
logging.basicConfig(
format="%(message)s",
level=logging.DEBUG
)
Run the Server
You can run the server indefinitely by calling server.run()
. This will run until server.shutdown()
is called.
server = Server(50000, starting_state, delegates)
server.run()
with Server(50000, starting_state, delegates) as server:
# do stuff