亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 學院 > 開發設計 > 正文

ChucK初步(9)

2019-11-11 05:33:45
字體:
來源:轉載
供稿:網友

concurrency, PRocesses, shreds

sporking shredsthe 'me' keyWordusing machine.add()inter-shred communication

Concurrency & Shreds

…is able to run many processes concurrently…

A ChucKian process is called a shred. To spork a shred means creating and adding a new process to the virtual(虛擬的) machine. Shreds may be sporked from a variety of places(各種各樣的地方), and may themselves spork new shreds.

(直接代換理解:spork a shred == creating & adding a process)

ChucK supports sample-synchronous(采樣同步), non-preemptive concurrency(非搶占式并發). Via the timing mechanism(機制). any number of programs/shreds can be automatically(自動的) shreduled(往后看,便于理解,實際上就是創建添加的過程,感覺就像是shred動作化了) and synchronized(同步的) use the timing information.A shreduler in the virtual(虛擬的) machine does the shreduling. The concurrency(并發性) is ‘sample-synchronous’, meaning that inter-process audio timing is guaranteed(保證) to be precise(精確的) to the sample(樣品). Note that each process/shred does not necessarily need to know about each other - it only has to deal with time locally. The virtual machine will make sure things happen correctly “across the board(全體,全面)”. Finally, concurrency - like timing - is deterministic(確定性的) in ChucK.

The simplest way to to run shreds concurrently is to specify(指定) them on the command line:

chuck foo.ck bar.ck boo.ck

The above command runs chuck on foo.ck, bar.ck, and boo.ck concurrently. There are other ways to run shreds concurrently (see on-the-fly programming commands). Next, we show how to create new shreds from within ChucK programs.

sporking shreds (in code)

To spork means to shredule a new shred.

To spork a shred, use the spork keyword/Operator:

spork dynamically(動態地) sporks shred from a function call從函數調用中動態創建進程this operation is sample-synchronous, the new shred is shreduled to execute(執行) immediately新進程創建來立即執行the parent shred continues to execute, until time is advanced (see manipulating time) or until the parent explicitly(顯式地) yields(產生) (see next section).父進程繼續執行,直到時間被推進或者直到父進程顯示產生。in the current implementation(實現), when a parent shred exits, all child shreds all exit (this behavior(行為) will be enhanced(提高) in the future.)在當前實現中,當父進程退出,所有的子進程會退出。sporking a functions returns reference to the new shred, note that this operation does not return what functions returns - the ability to get back the return value at some later point in time will be provided in a future release.產生一個函數返回新進程的引用,注意這個操作不會返回函數返回值-返回在某個靠后的時間點上的返回值的能力就被在未來的版本中提供。// define function go()fun void go(){ // insert code}// spork a new shred to start running from go()spork ~ go();// spork another, store reference to new shred in offspringspork ~ go() => Shred @ offspring;

a slightly longer example:

// define functionfun void foo( string s ){ // infinite time loop while( true ) { // print s <<< s >>>; // advance time 5::second => now; }}// spork shred, passing in "you" as argument to foospork ~ foo( "you" );// advance time by 2s2::second => now;// spork another shredspork ~ foo( "me" );// infinite time loop - to keep child shreds aroundwhile( true ) 1::second => now;//測量://輸出you后,第2s輸出me,第5s再次輸出

兩個進程互有交錯,”you”先輸出,”me”后輸出,循環輸出。 個人理解:1::second => now;感覺上就像是將進程掛起,sleep()的感覺就像是1s后再跳到這個程序。

Created with Rapha?l 2.1.0youyoumeme2s3s

the ‘me’ keyword

The me keyword (type Shred) refers the current shred.

Sometimes it is useful to suspend(暫停) the current shred without advancing time, and let other shreds shreduled for the current time to execute(實行). me.yield() does exactly that. This is often useful immediately after sporking a new shred, and you would like for that shred to have a chance to run but you do not want to advance time yet for yourself.

// spork shredspork ~ go();// suspend the current shred ...// ... give other shreds (shreduled for 'now') a chance to runme.yield();

It may also be useful to exit the current shred. For example if a MIDI device(裝置) fails to open, you may exit the current shred.

// make a MidiIn objectMidiIn min;// try to open device 0 (chuck --probe to list all device)if( !min.open( 0 ) ){ // print error message <<< "can't open MIDI device" >>>; // exit the current shred me.exit();}

You can get the shred id:

// print out the shred id<<< me.id(); >>>;

These functions are common to all shreds, but yield() and exit() are commonly used with the current shred.

using machine.add()

Machine.add( string path ) takes the path to a chuck program, and sporks it. Unlike spork ~, there is no parent-child relationship between the shred that calls the function and the new shred that is added. This is useful for dynamically(動態地) running stored programs.

// spork "foo.ck"Machine.add( "foo.ck" );

Presently, this returns the id of the new shred, not a reference to the shred. This will likely be changed in the future.

Similarly, you can remove shreds from the virtual(虛擬的) machine.

// addMachine.add( "foo.ck" ) => int id;// remove shred with idMachine.remove( id );// addMachine.add( "boo.ck" ) => id// replace shred with "bar.ck"Machine.replace( id, "bar.ck" );

inter-shred communication

Shreds sporked in the same file can share the same global variables(變量). They can use time and events to synchronize to each other. (see events) *Shreds sporked from different files can *share data (including events).**For now, this is done through a public class with static data (see classes). Static data is not completely implemented! We will fix this very soon!

command line arguments

ChucK supports passing arbitrary(任意的) data from the command line into ChucK programs using optional(可選擇的) command line arguments. An argument is specified(指定) by appending(附加) a colon(冒號) character “:” to the name of the ChucK program to which you wish to send that argument, followed by the argument itself.

chuck foo.ck:foo

Multiple arguments can be specified, each separated by the colon character.

chuck foo.ck:foo:bar:boo

Furthermore(此外), each ChucK program has its own set of arguments, which are specified separately.

chuck foo.ck:foo bar.ck:bar boo.ck

Command line arguments can also be used when using on-the-fly programming facilities(即時編程工具) of ChucK.

chuck + foo.ck:foo bar.ck:bar:boo

(后面有一篇博文會講解相關參數功能的,包括這里的+)

Machine.add() and Machine.replace() accept command line arguments in a similar fashion.

// add foo.ck// pass foo and bar as command line argumentsMachine.add( "foo.ck:foo:bar" ) => int id;// replace shred with "bar.ck"http:// pass foo and bar as command line argumentsMachine.replace( id, "bar.ck:foo:bar" );

To access command line arguments within a ChucK program, use the me.args() and me.arg() functions.

// print out all argumentsfor( int i; i < me.numArgs(); i++ ) <<< me.arg( i ) >>>;

直接運行會輸出: C:/Users/abc1/Desktop>chuck test.ck:foo [test.ck]:line(2): class ‘Shred’ has no member ‘numArgs’

(真就尷尬了)


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产999精品视频| 一个人看的www久久| 欧美性极品xxxx做受| 久久理论片午夜琪琪电影网| 日本精品一区二区三区在线播放视频| 亚洲精品videossex少妇| 国产亚洲欧洲在线| 亚洲小视频在线| 26uuu亚洲伊人春色| 色悠悠国产精品| 色琪琪综合男人的天堂aⅴ视频| 久久久久久国产三级电影| 欧洲中文字幕国产精品| 国产亚洲免费的视频看| 最近中文字幕日韩精品| 国产精品视频中文字幕91| 久久精品国产v日韩v亚洲| 亚洲欧美国产一本综合首页| 亚洲一区二区久久久久久| 精品亚洲精品福利线在观看| 亚洲色图美腿丝袜| 91久久久久久国产精品| 国产精品国产三级国产aⅴ浪潮| 狠狠躁夜夜躁久久躁别揉| 国产一区玩具在线观看| 国产精品视频网| 精品国产一区久久久| 国产精品久在线观看| 欧美激情视频一区| 亚洲第一区中文99精品| 亚洲va欧美va国产综合剧情| 中文字幕日韩av综合精品| 欧美日韩在线一区| 2019中文字幕在线观看| 久久精品久久久久久国产 免费| 亚洲欧美日韩高清| 欧美放荡办公室videos4k| 欧美性猛交xxxx偷拍洗澡| 日本久久久久久久久久久| 欧美成年人视频| 秋霞av国产精品一区| 亚洲国产精品嫩草影院久久| 欧美一级大片在线免费观看| 亚洲人成电影网站色| 国产日韩欧美在线视频观看| 亚洲精品美女在线观看播放| 亚洲一区二区免费在线| 精品人伦一区二区三区蜜桃网站| 亚洲福利视频在线| 亚洲国产欧美一区二区三区久久| 精品久久久久久久久久久久久| 日韩免费电影在线观看| 色综合久久88色综合天天看泰| 97精品久久久| 美日韩精品免费观看视频| 亚洲自拍偷拍在线| 亚洲国产私拍精品国模在线观看| 国产精品极品美女粉嫩高清在线| 中文字幕亚洲图片| 欧美日韩国产限制| 日日狠狠久久偷偷四色综合免费| 亚洲人成伊人成综合网久久久| 亚洲国产成人在线视频| 亚洲成人a级网| 日韩av中文字幕在线播放| 中文字幕成人在线| 成人精品视频99在线观看免费| 午夜免费在线观看精品视频| 日本精品性网站在线观看| 国产精品av免费在线观看| 亚洲午夜未满十八勿入免费观看全集| 欧美壮男野外gaytube| 97免费视频在线播放| 亚洲石原莉奈一区二区在线观看| 国产精品丝袜久久久久久高清| 亚洲女人天堂av| 日韩欧美中文字幕在线观看| 国产精品久久一区| 在线中文字幕日韩| 亚洲精品久久视频| 国外日韩电影在线观看| 91老司机精品视频| 91精品国产沙发| 亚洲精品视频在线播放| 亚洲一区二区少妇| 78m国产成人精品视频| 亚洲午夜av电影| 狠狠做深爱婷婷久久综合一区| 国产欧美一区二区三区四区| 亚洲天堂一区二区三区| 精品自拍视频在线观看| 2019日本中文字幕| 欧美在线视频免费观看| 96国产粉嫩美女| 国产在线视频91| 91亚洲国产成人精品性色| 日韩在线观看电影| 亚洲成人网久久久| 久久频这里精品99香蕉| 日韩大陆欧美高清视频区| 亚洲精品aⅴ中文字幕乱码| 日本国产高清不卡| 国产精品青青在线观看爽香蕉| 日韩欧美一区二区三区| 亚洲国产福利在线| 久久精品一偷一偷国产| 欧美成年人视频网站| 91理论片午午论夜理片久久| 亚洲经典中文字幕| 久久琪琪电影院| 国产成人亚洲综合91精品| 日韩激情av在线免费观看| 日韩免费黄色av| www.亚洲人.com| 久久久久久久久久久久av| 精品亚洲男同gayvideo网站| 91精品久久久久久久久久久| 在线电影中文日韩| 欧美成人免费视频| 日韩亚洲欧美中文高清在线| 欧洲s码亚洲m码精品一区| 欧美有码在线观看视频| 亚洲剧情一区二区| 91精品视频网站| 91久久久久久| 亚洲国产黄色片| 68精品国产免费久久久久久婷婷| 日日狠狠久久偷偷四色综合免费| 日韩av片永久免费网站| 92看片淫黄大片欧美看国产片| 米奇精品一区二区三区在线观看| 久久99热精品这里久久精品| 亚洲成色777777在线观看影院| 欧美在线亚洲一区| 亚洲精品白浆高清久久久久久| 成人午夜小视频| 韩国19禁主播vip福利视频| 日韩成人中文电影| 国产高清视频一区三区| 久久影院在线观看| 亚洲最大在线视频| 中文字幕日韩电影| 久久综合色影院| 韩国精品美女www爽爽爽视频| 国产欧美亚洲视频| 欧美在线影院在线视频| 高清欧美性猛交| 日本午夜人人精品| 亚洲午夜精品久久久久久性色| 中文字幕亚洲情99在线| 亚洲国产精品电影在线观看| 欧美性理论片在线观看片免费| 在线观看91久久久久久| 国产欧美一区二区三区四区| 国产精品久久99久久| 国产日韩一区在线| 国产精品丝袜久久久久久不卡| 97在线观看免费| 久久久最新网址| 理论片在线不卡免费观看| 日韩电影中文字幕在线观看| 亚洲欧洲免费视频| 久久久久久久国产精品| 亚洲欧美综合精品久久成人|