2012年8月31日金曜日

Scala Tips / Scala 2.10味見(3) - Future

Scala 2.10の目玉機能の一つは並行プログラミング機能の大幅な刷新です。「SIP-14 - Futures and Promises」にもあるようにScala Aactors、Akka、Finagle、Scalazと乱立する並行プログラミング・フレームワークの共通基盤を提供するのが目的のようです。

並行プログラミングの重要機能の一つにfutureまたはpromiseがあります。Wikipediaによるとfutureとpromiseは基本的に同じ意味を持つと考えてよいようです。

Scala 2.10ではFutureとPromiseの2つのオブジェクトを導入していますが、futureとpromiseの用語法は知った上で、あえて別機能を持った2つのオブジェクトとして提供している、ということだと思います。

今回はその一つFutureがテーマです。Futureの機能も色々あるのでまず簡単な使い方を調べてみます。

準備

準備として引数の数値×100msウェイト後、引数の数値をそのまま帰す関数gを定義します。

val g = (x: Int) => {  
  Thread.sleep(x * 100)
  x  
}

値を取り出す

Futureオブジェクトの最も典型的な使い方である処理を非同期実行した後、同期待ち合わせを行い、実行結果を受け取る処理です。

def f1: Int = {
  import scala.concurrent._
  import scala.concurrent.util.Duration
  import ExecutionContext.Implicits.global

  val f = future { g(1) }
  Await.result(f, Duration.Inf)
}

実行結果は以下になります。

scala> f1
res154: Int = 1

futureと聞いてイメージするのは、java.util.concurrent.Futureもそうなっているように、futureの実行結果をgetメソッドで取得すると自動的に非同期実行の待ち合わせを行なってくれ、非同期実行を意識することなく実行結果を得ることができるオブジェクトです。

しかし2.10のFutureではgetメソッドは提供されておらず、現在の状況をノンブロッキングで取得するvalueメソッドが提供されています。そして、Futureの結果をブロックして取得するには外付けのAwaitオブジェクトを用いるようになっています。

SIP-14にも「blocking on a future is strongly discouraged」とありますので、この使い方はあまり推奨されていないようです。

Callback

その代わりに推奨されているのがCallbackです。mapやflatMapといったコンビネータを使って関数を合成していく使い方で、いわゆるCPS(Continuation passing style)と通じるスタイルです。

以下では関数gをFuture内で実行した後、mapメソッドで再度実行させ、その結果をonCompleteメソッドで受け取っています。

def f2 { 
  import scala.concurrent._
  import scala.concurrent.util.Duration
  import scala.util.{Success, Failure}
  import ExecutionContext.Implicits.global

  val f = future { g(1) } map { x => 
    g(x + 1)
  } onComplete {
    case Success(x) => println("success = " + x)
    case Failure(e) => println("failure = " + e)
  }
}

f2を実行結果すると…

scala> f2

しばらくするとコンソールに以下の文字列が表示されます。

success = 2
Try

FutureのonCompleteメソッドは以前はEitherを渡してきましたが、M7ではTryを渡すようになっています。

Togetterのscala.util.TryによるとTryはあまり評判がよくないようなので、もしかしたら再度仕様変更があるかもしれません。

ノート

2.10のFutureオブジェクトはfutureの実行待ち合わせを行うgetメソッドが基本機能として提供されていないことから分かるように、CPS的な並行プログラミングを指向した設計思想のようです。

これは、Actorと組合せて使うことを念頭に置いているのも影響しているかもしれません。

イベント駆動のアプリケーションを作る場合は、CPSスタイルでもよいのですが、大規模演算を並列実行したいような場合は"普通の"futureの使い勝手が欲しいような気もします。たとえばScalazのPromiseのような使い方ですね。

2.10の並行プログラミング周りはまだまだ仕様が安定していない感じなので、この点も含めて今後どうなるかウォッチしていきたいと思います。

諸元

  • Scala 2.10.0-M7

0 件のコメント:

コメントを投稿

'},ClipboardSwf:null,Version:'1.5.1'}};dp.SyntaxHighlighter=dp.sh;dp.sh.Toolbar.Commands={ExpandSource:{label:'+ expand source',check:function(highlighter){return highlighter.collapse;},func:function(sender,highlighter) {sender.parentNode.removeChild(sender);highlighter.div.className=highlighter.div.className.replace('collapsed','');}},ViewSource:{label:'view plain',func:function(sender,highlighter) {var code=dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/'+code+'');wnd.document.close();}},CopyToClipboard:{label:'copy to clipboard',check:function(){return window.clipboardData!=null||dp.sh.ClipboardSwf!=null;},func:function(sender,highlighter) {var code=dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/</g,'<').replace(/>/g,'>').replace(/&/g,'&');if(window.clipboardData) {window.clipboardData.setData('text',code);} else if(dp.sh.ClipboardSwf!=null) {var flashcopier=highlighter.flashCopier;if(flashcopier==null) {flashcopier=document.createElement('div');highlighter.flashCopier=flashcopier;highlighter.div.appendChild(flashcopier);} flashcopier.innerHTML='';} alert('The code is in your clipboard now');}},PrintSource:{label:'print',func:function(sender,highlighter) {var iframe=document.createElement('IFRAME');var doc=null;iframe.style.cssText='position:absolute;width:0px;height:0px;left:-500px;top:-500px;';document.body.appendChild(iframe);doc=iframe.contentWindow.document;dp.sh.Utils.CopyStyles(doc,window.document);doc.write('

'+highlighter.div.innerHTML+'

');doc.close();iframe.contentWindow.focus();iframe.contentWindow.print();alert('Printing...');document.body.removeChild(iframe);}},About:{label:'?',func:function(highlighter) {var wnd=window.open('','_blank','dialog,width=300,height=150,scrollbars=0');var doc=wnd.document;dp.sh.Utils.CopyStyles(doc,window.document);doc.write(dp.sh.Strings.AboutDialog.replace('{V}',dp.sh.Version));doc.close();wnd.focus();}}};dp.sh.Toolbar.Create=function(highlighter) {var div=document.createElement('DIV');div.className='tools';for(var name in dp.sh.Toolbar.Commands) {var cmd=dp.sh.Toolbar.Commands[name];if(cmd.check!=null&&!cmd.check(highlighter)) continue;div.innerHTML+=''+cmd.label+'';} return div;} dp.sh.Toolbar.Command=function(name,sender) {var n=sender;while(n!=null&&n.className.indexOf('dp-highlighter')==-1) n=n.parentNode;if(n!=null) dp.sh.Toolbar.Commands[name].func(sender,n.highlighter);} dp.sh.Utils.CopyStyles=function(destDoc,sourceDoc) {var links=sourceDoc.getElementsByTagName('link');for(var i=0;i');} dp.sh.Utils.FixForBlogger=function(str) {return(dp.sh.isBloggerMode==true)?str.replace(/
|<br\s*\/?>/gi,'\n'):str;} dp.sh.RegexLib={MultiLineCComments:new RegExp('/\\*[\\s\\S]*?\\*/','gm'),SingleLineCComments:new RegExp('//.*$','gm'),SingleLinePerlComments:new RegExp('#.*$','gm'),DoubleQuotedString:new RegExp('"(?:\\.|(\\\\\\")|[^\\""\\n])*"','g'),SingleQuotedString:new RegExp("'(?:\\.|(\\\\\\')|[^\\''\\n])*'",'g')};dp.sh.Match=function(value,index,css) {this.value=value;this.index=index;this.length=value.length;this.css=css;} dp.sh.Highlighter=function() {this.noGutter=false;this.addControls=true;this.collapse=false;this.tabsToSpaces=true;this.wrapColumn=80;this.showColumns=true;} dp.sh.Highlighter.SortCallback=function(m1,m2) {if(m1.indexm2.index) return 1;else {if(m1.lengthm2.length) return 1;} return 0;} dp.sh.Highlighter.prototype.CreateElement=function(name) {var result=document.createElement(name);result.highlighter=this;return result;} dp.sh.Highlighter.prototype.GetMatches=function(regex,css) {var index=0;var match=null;while((match=regex.exec(this.code))!=null) this.matches[this.matches.length]=new dp.sh.Match(match[0],match.index,css);} dp.sh.Highlighter.prototype.AddBit=function(str,css) {if(str==null||str.length==0) return;var span=this.CreateElement('SPAN');str=str.replace(/ /g,' ');str=str.replace(/');if(css!=null) {if((/br/gi).test(str)) {var lines=str.split(' 
');for(var i=0;ic.index)&&(match.index/gi,'\n');var lines=html.split('\n');if(this.addControls==true) this.bar.appendChild(dp.sh.Toolbar.Create(this));if(this.showColumns) {var div=this.CreateElement('div');var columns=this.CreateElement('div');var showEvery=10;var i=1;while(i<=150) {if(i%showEvery==0) {div.innerHTML+=i;i+=(i+'').length;} else {div.innerHTML+='·';i++;}} columns.className='columns';columns.appendChild(div);this.bar.appendChild(columns);} for(var i=0,lineIndex=this.firstLine;i0;i++) {if(Trim(lines[i]).length==0) continue;var matches=regex.exec(lines[i]);if(matches!=null&&matches.length>0) min=Math.min(matches[0].length,min);} if(min>0) for(var i=0;i