140 likes | 268 Views
SDK Overview. Rob DeCarlo Bechtel. Packages. iRINGTools Adapter. iRINGTools Sandbox. Interface Service. Sandbox Service. Adapter Service. Reference Data Service. Mapping Editor. Reference Data Editor. Dependencies. iRINGTools Adapter. iRINGTools Sandbox. Mapping Editor.
E N D
SDK Overview Rob DeCarlo Bechtel
Packages iRINGTools Adapter iRINGTools Sandbox Interface Service Sandbox Service Adapter Service Reference Data Service Mapping Editor Reference Data Editor
Dependencies iRINGToolsAdapter iRINGToolsSandbox Mapping Editor Reference Data Editor Adapter Service Reference Data Service Interface Service Sandbox Service Windows Server .NET 3.5 SP1 IIS SQL Server Internet
Federated Reference Data Sandbox Sandbox Sandbox RDS/WIP Reference Data Service QMXF Reference Data Editor
Adapter Overview Façade RDF Legacy Database Adapter Service DTO QXF DB Dictionary Mapping Editor iRING Tools Sandbox
SPARQL Protocol SPARQL Protocol SPARQL Query SPARQL Endpoint SPARQL Client SPARQL Results
SPARQL Data Exchange SPARQL Protocol SPARQL Client Interface Service(SPARQL Endpoint) SPARQL Query Only SPARQL Endpoint AdapterService(SPARQL Client) SPARQL Endpoint SPARQL Endpoints SPARQL Query Only SPARQL Protocol
XML Data Exchange AdapterService AdapterService DTO
Data Services BizTalk AdapterService DTO AjaxClient SSRS
Adapter Framework TripleStores SPARQL Query & Update SemWeb API [extensible] … Data Stores & APIs Semantic RepositoryPart 9 Serialization NHibernate RDFPart 8 ECSchema QXF Data Source Projection DTOPart 7 EFSchema QTXF Excel MIMOSA [extensible] … [extensible] … Mapping
Dependency Injection interface IWeapon { void Hit(string target); } class Sword : IWeapon { public void Hit(string target) { Console.WriteLine("Chopped {0} clean in half", target); } } class Samurai { private readonlyIWeapon _weapon; [Inject] public Samurai(IWeapon weapon) { _weapon = weapon; } public void Attack(string target) { _weapon.Hit(target); } } class Program { public static void Main() { IKernel kernel = new StandardKernel(); Bind<IWeapon>().To<Sword>(); var samurai = kernel.Get<Samurai>(); samurai.Attack("the evildoers"); } } C:\>program Chopped the evildoers clean in half C:\>
Adapter Interfaces Adapter Service Adapter Provider Semantic Layer ISemanticLayer Projection Layer DTO Layer(Generated) Data Layer IAdapterService IProjectionLayer IDataLayer
Data Layer Extensibility DTO Layer (Generated) Response(List<string>) IDataLayer CustomData Layer • IList<IDataObject> Create(string objectType, List<string> identifiers); • IList<string> GetIdentifiers(string objectType, DataFilter filter); • IList<IDataObject> Get(string objectType, List<string> identifiers); • IList<IDataObject> Get(string objectType, DataFilter filter, int pageSize, int pageNumber); • Response Post(List<IDataObject> dataObjects); • Response Delete(string objectType, List<string> identifiers); • Response Delete(string objectType, DataFilter filter); • DataDictionary GetDictionary(); Data API DataObjects DataDictionary Binding Configuration Binding Configuration tells NInject where to find your classes. IDataLayer
CSV Data Layer Adapter Service Adapter Provider DTO Layer(Generated) CSVDataLayer Post EntityObjects CSV EntityObjects EntityObjects Get Linq To XML CSV Line