forked from AcademySoftwareFoundation/OpenCue
-
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.
Make UID optional in frame submission (AcademySoftwareFoundation#618)
- Loading branch information
Showing
20 changed files
with
178 additions
and
37 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
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
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
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
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
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
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
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
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
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
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
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
5 changes: 5 additions & 0 deletions
5
cuebot/src/main/resources/conf/ddl/postgres/migrations/V6__Allow_NULL_UID.sql
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,5 @@ | ||
-- Allow a NULL UID field, meaning 'RQD current user'. | ||
|
||
ALTER TABLE "job" ALTER COLUMN "int_uid" DROP NOT NULL; | ||
ALTER TABLE "job" ALTER COLUMN "int_uid" DROP DEFAULT; | ||
|
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,92 @@ | ||
<!-- ================================================================= --> | ||
<!-- SpiCue Job Spec DTD ver 1.9 --> | ||
<!-- [email protected] --> | ||
<!-- ================================================================= --> | ||
|
||
<!ELEMENT spec (facility?,dept?,show,shot,user,email?,uid?,job*,depends*)> | ||
<!ELEMENT facility (#PCDATA)*> | ||
<!ELEMENT dept (#PCDATA)*> | ||
<!ELEMENT show (#PCDATA)*> | ||
<!ELEMENT shot (#PCDATA)*> | ||
<!ELEMENT user (#PCDATA)*> | ||
<!ELEMENT email (#PCDATA)*> | ||
<!ELEMENT uid (#PCDATA)*> | ||
|
||
<!-- ================================================================= --> | ||
<!-- Jobs --> | ||
<!-- ================================================================= --> | ||
<!ELEMENT job (paused?,maxretries?,autoeat?,localbook?,os?,env*,layers?)> | ||
<!ATTLIST job | ||
name NMTOKEN #REQUIRED | ||
> | ||
<!ELEMENT paused (#PCDATA)*> | ||
<!ELEMENT maxretries (#PCDATA)*> | ||
<!ELEMENT autoeat (#PCDATA)*> | ||
<!ELEMENT os (#PCDATA)*> | ||
<!ELEMENT localbook (#PCDATA)*> | ||
<!ATTLIST localbook | ||
host NMTOKEN #REQUIRED | ||
cores NMTOKEN #REQUIRED | ||
memory NMTOKEN #REQUIRED | ||
threads NMTOKEN #REQUIRED | ||
gpu NMTOKEN #REQUIRED | ||
> | ||
|
||
<!-- ================================================================= --> | ||
<!-- Layers --> | ||
<!-- ================================================================= --> | ||
|
||
<!ELEMENT layers (layer+)> | ||
<!ELEMENT layer (cmd,range,chunk,cores?,threadable?,memory?,gpu?,tags?,limits?,env*,services?)> | ||
<!ATTLIST layer | ||
name NMTOKEN #REQUIRED | ||
type (Render | Util | Post) #REQUIRED | ||
> | ||
<!ELEMENT cmd (#PCDATA)*> | ||
<!ELEMENT range (#PCDATA)*> | ||
<!ELEMENT chunk (#PCDATA)*> | ||
<!ELEMENT cores (#PCDATA)*> | ||
<!ELEMENT threadable (#PCDATA)*> | ||
<!ELEMENT memory (#PCDATA)*> | ||
<!ELEMENT gpu (#PCDATA)*> | ||
<!ELEMENT tags (#PCDATA)*> | ||
<!ELEMENT limits (limit+)> | ||
<!ELEMENT services (service+)> | ||
<!ELEMENT env (key*)> | ||
|
||
|
||
<!-- ================================================================= --> | ||
<!-- Layer Services --> | ||
<!-- ================================================================= --> | ||
<!ELEMENT service (#PCDATA)*> | ||
|
||
<!-- ================================================================= --> | ||
<!-- Layer Limits --> | ||
<!-- ================================================================= --> | ||
<!ELEMENT limit (#PCDATA)*> | ||
|
||
<!-- ================================================================= --> | ||
<!-- Environment Variables --> | ||
<!-- ================================================================= --> | ||
|
||
<!ELEMENT key (#PCDATA)*> | ||
<!ATTLIST key | ||
name NMTOKEN #REQUIRED | ||
> | ||
|
||
<!-- ================================================================= --> | ||
<!-- Dependencies --> | ||
<!-- ================================================================= --> | ||
|
||
<!ELEMENT depends (depend*)> | ||
<!ELEMENT depend (depjob,deplayer?,depframe?,onjob,onlayer?,onframe?)> | ||
<!ATTLIST depend | ||
anyframe NMTOKEN #IMPLIED | ||
type (LAYER_ON_SIM_FRAME|PREVIOUS_FRAME|JOB_ON_JOB|JOB_ON_LAYER|JOB_ON_FRAME|LAYER_ON_JOB|LAYER_ON_FRAME|LAYER_ON_LAYER|FRAME_ON_JOB|FRAME_ON_LAYER|FRAME_ON_FRAME|FRAME_BY_FRAME) #REQUIRED | ||
> | ||
<!ELEMENT depjob (#PCDATA)*> | ||
<!ELEMENT onjob (#PCDATA)*> | ||
<!ELEMENT deplayer (#PCDATA)*> | ||
<!ELEMENT onlayer (#PCDATA)*> | ||
<!ELEMENT depframe (#PCDATA)*> | ||
<!ELEMENT onframe (#PCDATA)*> |
Oops, something went wrong.