Server
rigatoni.Server
Server(port, starting_state, delegate_map=None, json_output=None)
Bases: object
Overarching object for managing the state of a NOODLES session
Handles communication and multiple client connections. The server provides several methods for interacting with and creating delegates. These are especially useful for defining custom methods that the server will expose to clients. Can be instatiated normally, or it can be used as a context manager to automatically start and stop the server while running in a new thread.
Attributes:
Name | Type | Description |
---|---|---|
port |
int
|
port server is running on |
clients |
set
|
client connections |
ids |
dict
|
maps object type to slot tracking info (next_slot, on_deck) |
state |
dict
|
document's current state, contains all components with component ID as the key |
client_state |
dict
|
lagging state to keep track of how up-to-date clients are |
references |
dict
|
maps component ID to all the component ID's that reference it |
delete_queue |
set
|
components that are referenced but have been requested to be deleted |
ready |
Event
|
event to signal when server is ready to accept connections |
shutdown_event |
Event
|
event to signal when server is shutting down |
thread |
Thread
|
thread server is running on if using context manager |
byte_server |
ByteServer
|
slot to store reference to server that serves uri bytes |
json_output |
str
|
path to json file to output message logs |
custom_delegates |
dict
|
maps component type to delegate class |
id_map |
dict
|
maps component type to ID type |
id_decoder |
dict
|
maps ID type to base component type, useful for getting base class from ID |
message_map |
dict
|
maps action and type to message ID |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
port |
int
|
port to run server on |
required |
starting_state |
list[StartingComponent]
|
list of objects containing the info to create components on initialization |
required |
delegate_map |
dict
|
maps noodles component type to instance of delegate class |
None
|
json_output |
str
|
path to json file to output message logs |
None
|
Raises:
Type | Description |
---|---|
TypeError
|
invalid arguments to create starting component |
ValueError
|
no method specified for method starting component |
Source code in rigatoni/core.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
broadcast
broadcast(message)
Broadcast message to all connected clients
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message |
[tuple]
|
fully constructed message in form (tag/id, contents) |
required |
Source code in rigatoni/core.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
|
create_buffer
create_buffer(name=None, size=None, inline_bytes=None, uri_bytes=None)
Add a Buffer object for the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the buffer, defaults to "No-Name |
None
|
size |
int
|
size of the buffer in bytes |
None
|
inline_bytes |
bytes
|
bytes for the buffer |
None
|
uri_bytes |
str
|
uri to get the bytes from the web |
None
|
Returns:
Name | Type | Description |
---|---|---|
Buffer |
Buffer
|
buffer delegate that was created |
Source code in rigatoni/core.py
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 |
|
create_bufferview
create_bufferview(source_buffer, offset, length, name=None, type='UNK')
Add a BufferView object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source_buffer |
BufferID
|
buffer that the view is based on |
required |
offset |
int
|
offset in bytes from the start of the buffer |
required |
length |
int
|
length of the view in bytes |
required |
name |
str
|
name of the buffer view |
None
|
type |
str
|
type of the buffer view |
'UNK'
|
Returns:
Name | Type | Description |
---|---|---|
BufferView |
BufferView
|
buffer view delegate that was created |
Source code in rigatoni/core.py
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 |
|
create_component
create_component(comp_type, **kwargs)
Officially create new component in state
This method updates state, updates references, and broadcasts msg to clients. It also handles the acquisition of a valid ID. This is a general creator method, but more specific versions exist for each component type. Keyword arguments should be used for specifying the attributes of the component. Any deviation from the spec will raise a validation exception.
Note
Since this method handles the ID, it should not be specified as one of the keyword arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
comp_type |
Component Type
|
type of component to be created |
required |
**kwargs |
the user should specify the attributes of the component using keyword arguments. Refer to the noodle objects to see which attributes are required and optional. Any deviation from the spec will raise a validation exception. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Delegate |
T
|
delegate for the newly created component |
Raises:
Type | Description |
---|---|
ValueError
|
if the user specifies an invalid attribute for the component |
Source code in rigatoni/core.py
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 |
|
create_entity
create_entity(name, parent=None, transform=None, text_rep=None, web_rep=None, render_rep=None, lights=None, tables=None, plots=None, tags=None, methods_list=None, signals_list=None, influence=None)
Add an Entity object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the entity |
required |
parent |
EntityID
|
parent entity |
None
|
transform |
Mat4
|
transform for the entity |
None
|
text_rep |
TextRepresentation
|
text representation for the entity |
None
|
web_rep |
WebRepresentation
|
web representation for the entity |
None
|
render_rep |
RenderRepresentation
|
render representation that links to geometry info |
None
|
lights |
list[LightID]
|
list of attached lights |
None
|
tables |
list[TableID]
|
list of attached tables |
None
|
plots |
list[PlotID]
|
list of attached plots |
None
|
tags |
list[str]
|
list of applicable tags |
None
|
methods_list |
list[MethodID]
|
list of methods attached to the entity |
None
|
signals_list |
list[SignalID]
|
list of signals attached to the entity |
None
|
influence |
BoundingBox
|
bounding box for the entity |
None
|
Returns:
Name | Type | Description |
---|---|---|
Entity |
Entity
|
entity delegate that was created |
Source code in rigatoni/core.py
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
|
create_geometry
create_geometry(patches, name=None)
Add a Geometry object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
patches |
list[GeometryPatch]
|
list of geometry patches |
required |
name |
str
|
name of the geometry |
None
|
Returns:
Name | Type | Description |
---|---|---|
Geometry |
Geometry
|
geometry delegate that was created |
Source code in rigatoni/core.py
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 |
|
create_image
create_image(name=None, buffer_source=None, uri_source=None)
Add an Image object to the session.
Will use a custom delegate if applicable. Must specify either a buffer_source or a uri_source.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the image |
None
|
buffer_source |
BufferID
|
buffer data that for image |
None
|
uri_source |
str
|
uri to get the image bytes from |
None
|
Returns:
Name | Type | Description |
---|---|---|
Image |
Image
|
image delegate that was created |
Source code in rigatoni/core.py
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 |
|
create_light
create_light(name=None, color=(1.0, 1.0, 1.0), intensity=1.0, point=None, spot=None, directional=None)
Add a Light object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the light |
None
|
color |
RGB
|
color of the light |
(1.0, 1.0, 1.0)
|
intensity |
float
|
intensity of the light on scale from 0-1 |
1.0
|
point |
PointLight
|
point light information |
None
|
spot |
SpotLight
|
spot light information |
None
|
directional |
DirectionalLight
|
directional light information |
None
|
Returns:
Name | Type | Description |
---|---|---|
Light |
Light
|
light delegate that was created |
Source code in rigatoni/core.py
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 |
|
create_material
create_material(name=None, pbr_info=PBRInfo(), normal_texture=None, occlusion_texture=None, occlusion_texture_factor=1.0, emissive_texture=None, emissive_factor=(1.0, 1.0, 1.0), use_alpha=False, alpha_cutoff=0.5, double_sided=False)
Add a Material object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the material |
None
|
pbr_info |
PBRInfo
|
physically based rendering information |
PBRInfo()
|
normal_texture |
TextureRef
|
texture for normal mapping |
None
|
occlusion_texture |
TextureRef
|
texture for occlusion mapping |
None
|
occlusion_texture_factor |
float
|
factor for occlusion mapping |
1.0
|
emissive_texture |
TextureRef
|
texture for emissive mapping |
None
|
emissive_factor |
Vec3
|
factor for emissive mapping |
(1.0, 1.0, 1.0)
|
use_alpha |
bool
|
whether to use alpha |
False
|
alpha_cutoff |
float
|
alpha cutoff value |
0.5
|
double_sided |
bool
|
whether the material is double-sided |
False
|
Returns:
Name | Type | Description |
---|---|---|
Material |
Material
|
material delegate that was created |
Source code in rigatoni/core.py
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 |
|
create_method
create_method(name, arg_doc, doc=None, return_doc=None)
Add a Method object to the scene and return it. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the method |
required |
arg_doc |
list[MethodArg]
|
list of arguments and documentation for the method |
required |
doc |
str
|
documentation for the method |
None
|
return_doc |
str
|
documentation for the return value |
None
|
Returns:
Name | Type | Description |
---|---|---|
Method |
Method
|
method delegate that was created |
Source code in rigatoni/core.py
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 |
|
create_plot
create_plot(name=None, table=None, simple_plot=None, url_plot=None, methods_list=None, signals_list=None)
Add a Plot object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the plot |
None
|
table |
TableID
|
table to be plotted |
None
|
simple_plot |
str
|
simple plot to be plotted |
None
|
url_plot |
str
|
url for the plot |
None
|
methods_list |
list[MethodID]
|
attached methods |
None
|
signals_list |
list[SignalID]
|
attached signals |
None
|
Returns:
Name | Type | Description |
---|---|---|
Plot |
Plot
|
plot delegate that was created |
Source code in rigatoni/core.py
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 |
|
create_sampler
create_sampler(name=None, mag_filter='LINEAR', min_filter='LINEAR_MIPMAP_LINEAR', wrap_s='REPEAT', wrap_t='REPEAT')
Add a Sampler object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the sampler |
None
|
mag_filter |
str
|
magnification filter |
'LINEAR'
|
min_filter |
str
|
minification filter |
'LINEAR_MIPMAP_LINEAR'
|
wrap_s |
str
|
wrap mode for s coordinate |
'REPEAT'
|
wrap_t |
str
|
wrap mode for t coordinate |
'REPEAT'
|
Returns:
Name | Type | Description |
---|---|---|
Sampler |
Sampler
|
sampler delegate that was created |
Source code in rigatoni/core.py
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 |
|
create_signal
create_signal(name, doc=None, arg_doc=None)
Add a Signal object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the signal |
required |
doc |
str
|
documentation for the signal |
None
|
arg_doc |
list[MethodArg]
|
list of arguments and documentation for the signal |
None
|
Returns:
Name | Type | Description |
---|---|---|
Signal |
Signal
|
signal delegate that was created |
Source code in rigatoni/core.py
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 |
|
create_table
create_table(name=None, meta=None, methods_list=None, signals_list=None)
Add a Table object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the table |
None
|
meta |
str
|
meta description for the table |
None
|
methods_list |
list[MethodID]
|
list of methods for the table |
None
|
signals_list |
list[SignalID]
|
list of signals for the table |
None
|
Returns:
Name | Type | Description |
---|---|---|
Table |
Table
|
table delegate that was created |
Source code in rigatoni/core.py
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 |
|
create_texture
create_texture(image, name=None, sampler=None)
Add a Texture object to the session. Will use a custom delegate if applicable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image |
ImageID
|
image to be used for the texture |
required |
name |
str
|
name of the texture |
None
|
sampler |
SamplerID
|
sampler to be used for the texture |
None
|
Returns:
Name | Type | Description |
---|---|---|
Texture |
Texture
|
texture delegate that was created |
Source code in rigatoni/core.py
971 972 973 974 975 976 977 978 979 980 981 982 983 984 |
|
delete_component
delete_component(delegate, recursive=False)
Delete object in state and update clients
This method excepts a delegate, or component ID, and will attempt to delete the component as long as it is not referenced by any other component. If this component is still being used by another, it will be added to a queue so that it can be deleted later once that reference is no longer being used. If recursive flag is set, then all components referenced by this one will also be deleted or at least queued to be deleted.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
delegate |
Component | Delegate | ID
|
component / delegate to be deleted |
required |
Raises:
Type | Description |
---|---|
TypeError
|
if the user specifies an invalid input type |
Source code in rigatoni/core.py
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 |
|
get_delegate
get_delegate(identifier)
Access components in state
Can be called with an ID, name, or context of the delegate
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
ID | str| Dict[str, ID]]
|
identifier for component |
required |
Returns:
Name | Type | Description |
---|---|---|
delegate |
Delegate
|
delegate with specified identifier |
Raises:
Type | Description |
---|---|
TypeError
|
if identifier is not of type ID, str, or dict |
ValueError
|
if no component with specified identifier is found or context is invalid |
Source code in rigatoni/core.py
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
|
get_delegate_by_context
get_delegate_by_context(context)
Get a component using a context object
This is especially useful in methods that are invoked in a certain context.
Note
Contexts are only used when working with entities, tables, and plots.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
context |
dict
|
context of the form {str: ID} |
required |
Returns:
Name | Type | Description |
---|---|---|
delegate |
Delegate
|
delegate from specified context |
Raises:
Type | Description |
---|---|
ValueError
|
if context is invalid |
Source code in rigatoni/core.py
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
|
get_delegate_id
get_delegate_id(name)
Get a component by using its name
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of component to get |
required |
Returns:
Name | Type | Description |
---|---|---|
id |
ID
|
id of component with specified name |
Raises:
Type | Description |
---|---|
ValueError
|
if no component with specified name is found |
Source code in rigatoni/core.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
get_ids_by_type
get_ids_by_type(component)
Get all ids for certain component type
Parameters:
Name | Type | Description | Default |
---|---|---|---|
component |
type
|
type of component to get ID's for |
required |
Returns:
Name | Type | Description |
---|---|---|
ids |
list
|
list of ids for components of specified type |
Source code in rigatoni/core.py
279 280 281 282 283 284 285 286 287 288 289 |
|
invoke_signal
invoke_signal(signal, on_component, signal_data=None)
Send signal to target component
Parameters:
Name | Type | Description | Default |
---|---|---|---|
signal |
SignalID | Signal
|
signal to be invoked |
required |
on_component |
Delegate
|
component to receive the signal |
required |
signal_data |
dict
|
data to be sent with the signal |
None
|
Returns:
Name | Type | Description |
---|---|---|
message |
list
|
message to be broadcast |
Raises:
Type | Description |
---|---|
ValueError
|
if the user specifies an invalid on_component type |
Source code in rigatoni/core.py
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 |
|
run
run()
Run the server
This will run indefinitely until the server is shutdown
Source code in rigatoni/core.py
191 192 193 194 195 |
|
shutdown
shutdown()
Shuts down the server and closes off communication with clients
Source code in rigatoni/core.py
209 210 211 212 |
|
update_component
update_component(current)
Update clients with changes to a component
This method broadcasts changes to all clients including only fields specified in the set delta. Local changes to delegates will be saved in the server's state, but this method must be called to update clients.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
current |
Delegate
|
component that has been updated, should be a component with an update message |
required |
Source code in rigatoni/core.py
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 |
|