Presentation is loading. Please wait.

Presentation is loading. Please wait.

3/21/2017 3:39 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.

Similar presentations


Presentation on theme: "3/21/2017 3:39 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered."— Presentation transcript:

1 3/21/2017 3:39 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

2 はじめての "Oslo" モデリング プラットフォーム
3/21/2017 3:39 AM はじめての "Oslo" モデリング プラットフォーム 長沢 智治 エバンジェリスト マイクロソフト株式会社 © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

3 このセッションは、現時点での情報を元にしています。 仕様および機能は変更される可能性があります。
本セッションでは、 現在開発中の製品を取り扱っています。 このセッションは、現時点での情報を元にしています。 仕様および機能は変更される可能性があります。

4 アジェンダ モデリングへの取り組みと "Oslo" "Oslo" デモ "M" 言語, "Quadrant" ポイント紹介 まとめ

5 モデルとは何か? DRAWINGS MODEL-ASSISTED MODEL-DRIVEN
A DESCRIPTION OF A GIVEN DOMAIN DRAWINGS 他者とのコミュニケーション手段としてのモデル 例: データフロー、ユース ケース、… MODEL-ASSISTED コードの把握や自動生成の手段としてのモデル 例: 静的な構造、シーケンス、… MODEL-DRIVEN 実行エンジンとしてのモデル 例: HTML, CSS, XAML, BPEL, …

6 モデル駆動プラットフォーム .NET 3.0 Web Services .NET 1.0 COM (+) 宣言型コンテンツ 時間
wpf:ContentControl wf:StateMachine 宣言型コンテンツ Web Services xsd:schema wsdl:definitions .NET 1.0 app.config [YourAttributeHere] COM (+) [Transaction] midl.exe 時間

7 アプリケーションの実際

8 Models Everywhere… Windows Server SQL Server ASP.net System Center
TechReady7 3/21/2017 Models Everywhere… Windows Server SQL Server ASP.net System Center BizTalk Server Identity Lifecycle Manager Dynamics Windows Azure © 2008 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION. 8

9 モデル駆動アプリケーション テキストベースの DSL (CAML) ビジュアル設計ツール (SharePoint Designer)
アプリケーション定義の DB への配置 テキストベースの DSL (X++) ビジュアル設計ツール (MorphX) アプリケーション定義の DB への配置

10 "Oslo" に至った背景 FLEXIBLITY PRODUCTIVITY TRANSPARENCY アプリケーションを十分に把握可能に
アプリケーションの変更を迅速に実現 PRODUCTIVITY 本質に注力し、無駄や手間を削減

11 "Oslo" の構成要素 "M" "Quadrant" Repository モデルと DSL を作成するための言語
THE PLATFORM FOR MODEL-DRIVEN APPLICATIONS "M" モデルと DSL を作成するための言語 "Quadrant" モデルや DSL と対話するためのツール Repository モデルを配置・共有するためのデータベース

12 "Oslo" のキーコンセプト ランタイム ビジュアル DSL テキストベース DSL モデル

13 Visual Studio Team System Excel
"Oslo" のアーキテクチャ "QUADRANT" コンポジション 包括的なビューアー データフロー エディタ フレームワーク [独自の Visual DSL] [独自の Textual DSL] MSchema MGrammar MGraph 言語 フレームワーク XML, カスタム フォーマット, … RUNTIMES [独自のランタイム] "Dublin" ASP.NET WF WCF SQL/EDM Windows 他の ISV ランタイムなど ADO .NET [Your Models] Base Models “M” Runtime [独自のモデル] .Net Models Repository Models REPOSITORY SQL SERVER さまざまな ツール Visual Studio Team System Excel XML, カスタム フォーマット, …

14 demo はじめての "Oslo" "Intellipad" & "Quadrant" 3/21/2017 3:39 AM
© 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

15 "M" 言語 シンプルかつ自然なモデリングへ box-and-line, テキストベースの経験 ドメイン モデル
スキーマと構造化データ を超えたクエリを定義 値、制約、ビュー SQL への自然な射影 Textual DSL(テキストベースのDSL) Unicode テキストから構造化データの射影を定義 ルールに基づく変換 オブジェクト指向言語 データ アクセス技術 T-SQL の代替

16 "M" 言語 "M" DSL DSLY DSLX MSchema MGrammar MGraph
Domain-specific grammars Abstract data model Domain-specific data models language GPSLanguage { syntax Main = h:Integer ("," v:Integer)? => Point { X { h }, Y { v }}; } type Point { X : Integer where X < 100; Y : Integer?; DistanceFromOrigin() { SQRT(X*X + Y*Y) } } Point { X { 100 }, Y { 200 } } Point.m Domain Model DSLY DomainY.mg Domain Grammar DSLX DomainX.m DomainY.m DomainX.mg GPSLanguage.mg MSchema MGrammar MGraph

17 "M" ツール チェーン Repository M.exe MX.exe ModelA.m ModelB.m ModelC.m
Domain Model Compiler MX.exe Domain Model Loader ModelA.m Repository ModelB.m M Framework M Framework ModelC.m SQL Server ModelABC.mx

18 "Quadrant" 人とデータをつなぐツール

19 "Quadrant" のアーキテクチャ REPOSITORY SHELL AND SURFACE SERVICES COMPOSITION
ENGINE Nesting Sizing Layout Snapping Core Services Undo/Redo Commands Drag/Drop Selection Activation Error Handling General Services Search Validation Annotations Relationship Highlighting DATAFLOW ENGINE Caching, Virtualization, Change tracking, and Notification Target Data View State Configuration

20 ドメイン

21 開発におけるドメイン ビジュアル DSL テキストベース DSL ランタイム "Quadrant" Web Editor "MWeb"
ASP.NET Web "Quadrant" Service Editor "MService" WCF/WF ("Dublin") サービス "Quadrant" Entity Editor "MEntity" EF エンティティ "Quadrant" Schema Editor "MSchema" SQL データベース

22 "MService" – モデル駆動 Web サービス
3/21/2017 3:39 AM サンプルでみる "Oslo" demo "MService" – モデル駆動 Web サービス © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

23 まとめ "Oslo" "Oslo" モデル駆動による開発・配置・管理のプラットフォーム モデリング ツール モデリング言語
経営企画 エンド ユーザー プロジェクト マネージャ 開発者 IT Pro モデリング ツール モデルの作成、編集、参照 データ(要求仕様など)や行動様式/パターン(ワークフローなど)を記述するためのテキスト "Oslo" モデリング言語 モデル リポジトリ モデルの保存、共有のためのデータベース ワークフロー、ルールを実行させるためのフルセット環境 プロセス サーバー サービス バス サービスの認識、サービス間通信/連携を実現

24 announcing SDK & OSP 3/21/2017 3:39 AM
© 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

25 "Oslo" SDK October 2008 CTP MSDN "Oslo" Developer Center
"Oslo" の最新情報 "Oslo" SDK のダウンロード "Oslo" サンプル その他の有益な情報 MODELS remixed

26 "M" 言語仕様を OSP のもと公開予定 OSP Microsoft Open Specification Promise
公開済みの仕様の例: WebSlice format spec. Virtual Hard Disk (VHD) format spec. Office XML file format spec. (Open XML) Office Binary file format spec. Windows Metafile format spec. (.wmf) XAML Vocabulary format spec.

27 Q&A 今すぐ!: "Ask the Speaker" へお越しください 後日: tomohn@microsoft.com へ
3/21/2017 3:39 AM Q&A 今すぐ!: "Ask the Speaker" へお越しください 後日: へ © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

28 Evaluation アンケートにご協力ください 忌憚のないご意見をお寄せください。 アンケート内容はすべて拝見させていただきます。
3/21/2017 3:39 AM Evaluation アンケートにご協力ください 忌憚のないご意見をお寄せください。 アンケート内容はすべて拝見させていただきます。 © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

29 3/21/2017 3:39 AM © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION. © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.


Download ppt "3/21/2017 3:39 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered."

Similar presentations


Ads by Google