/usr/share/SuperCollider/HelpSource/Guides/WritingPrimitives.schelp is in supercollider-common 1:3.6.3~repack-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 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 | title:: Writing Primitives
summary:: Writing Primitives
categories:: Internals
section:: Example
subsection:: SuperCollider code
code::
Cocoa {
prGetPathsDialog { arg returnSlot;
_Cocoa_GetPathsDialog
^this.primitiveFailed
}
}
::
subsection:: Define your primitive
In your primitive source code define the primitive:
teletype::
void initCocoaFilePrimitives()
{
int base, index;
base = nextPrimitiveIndex();
index = 0;
definePrimitive(base, index++, "_Cocoa_GetPathsDialog", prGetPathsDialog, 2, 0);
// further primitives can be laid in...
//definePrimitive(base, index++, "_Cocoa_SaveAsPlist", prSaveAsPlist, 3, 0);
}
::
Here is the prototype for definePrimitive:
teletype::
int definePrimitive(int base, int index, char *name, PrimitiveHandler handler, int numArgs, int varArgs);
::
The numArgs is the number of arguments that were passed into the SuperCollider method that calls the primitive, plus one
to include the receiver which is passed in as the first argument.
(TODO varArgs ...)
subsection:: Write your primitive
teletype::g->sp:: is the top of the stack and is the last argument pushed.
teletype::g->sp - inNumArgsPushed + 1 :: is the receiver and where the result goes.
In this example, the numArgsPushed will be 2 (as specified in definePrimitive)
teletype::
int prGetPathsDialog(struct VMGlobals *g, int numArgsPushed)
{
if (!g->canCallOS) return errCantCallOS; //if its deferred, does this matter ?
PyrSlot *receiver = g->sp - 1; // an instance of Cocoa
PyrSlot *array = g->sp; // an array
// ... the body
return errNone;
}
::
This example does not set the receiver, so the primitive returns the original receiver unchanged (still an instance of
Cocoa). Or set the object at teletype::receiver:: which again is at teletype::(g->sp - numArgsPushed + 1)::.
section:: Guidelines
subsection:: GC safety
If possible, you should avoid creating objects in a primitive. Primitives are much simpler to write and debug if you pass in an object that you create in SC code and fill in its slots in the primitive.
When you do fill in slots in an object with other objects, you must call teletype::g->gc->GCWrite(object, other_object):: in order to notify the garbage collector that you have modified a slot that it may have already scanned.
If you create more than one object in a primitive you must make sure that all the previously created objects are reachable before you allocate another. In other words you must store them on the stack or in another object's slots before creating another. Creating objects can call the garbage collector and if you have not made your objects reachable, they can get collected out from under you.
note::
To summarize, before calling any function that might allocate (like teletype::newPyr*::) you strong::must:: make sure these critera are fulfilled:
numberedlist::
## All objects previously created must be reachable, which means they must exist
list::
## on the teletype::g->sp:: stack
## or, in a lang-side class/instance variable
## or, in a slot of another object that fulfils these criteria.
::
## If any object ( teletype::child:: ) was put inside a slot of another object ( teletype::parent:: ), you must have
list::
## called teletype::g->gc->GCWrite(parent, child):: afterwards
## and, set teletype::parent->size:: to the correct value
::
::
::
Here's an example of how it may look:
teletype::
int prMyPrimitive(struct VMGlobals* g, int numArgsPushed)
{
PyrSlot* arg = g->sp;
float number;
int err;
err = slotFloatVal(arg, &number); // get one float argument
if(err) return err;
PyrObject *array = newPyrArray(g->gc, 2, 0, true);
array->size = 0;
SetObject(arg, array); // return value
// NOTE: array is now reachable on the stack, since arg refers to g->sp
PyrObject *str1 = newPyrString(g->gc, "Hello", 0, true);
SetObject(array->slots, str1);
array->size++;
g->gc->GCWrite(array, str1);
// NOTE: str1 is now reachable in array, which is reachable on the stack
SetFloat(array->slots+1, number);
array->size++;
// A float is not an allocated object, so no need for anything special here
return errNone;
}
::
If we would have put teletype::SetObject(arg, array);:: at the end of this function, teletype::array:: would strong::not:: have been reachable at the call to teletype::newPyrString::, thus breaking the rules and introducing bugs that sooner or later would crash SuperCollider (but most probably not in the faulty code but somewhere else, making it very hard to find!)
warning::Do not store pointers to PyrObjects in C/C++ variables unless you can absolutely guarantee that they cannot be garbage
collected. For example the File and SCWindow classes do this by storing the objects in an array in a classvar. The
object has to stay in that array until no C object refers to it.
strong::Failing to observe the above two points can result in very hard to find bugs.::
::
subsection:: Type safety
Since SC is dynamically typed, you cannot rely on any of the arguments being of the class you expect. You should check every argument to make sure it is the correct type.
One way to do this is by using teletype::isKindOfSlot::. If you just want a numeric value, you can use teletype::slotIntVal::, teletype::slotFloatVal::, or teletype::slotDoubleVal:: which will return an error if the value is not a numeric type. Similarly there is teletype::slotStringVal::.
It is safe to assume that the receiver will be of the correct type because this is ensured by the method dispatch mechanism.
section:: FAQ
definitionList::
## Now where do i put the thing to return it?
|| into teletype::g->sp - inNumArgsPushed + 1 :: (In most primitives this is referred to by the variable teletype::a::).
::
|