From rubinstein at cs.uni-saarland.de Mon Jan 6 12:32:40 2014 From: rubinstein at cs.uni-saarland.de (Dmitri Rubinstein) Date: Mon, 06 Jan 2014 12:32:40 +0100 Subject: [Miwi-middleware] KIARA: Version 0.9.0 Message-ID: <52CA9458.5070503@cs.uni-saarland.de> Hi. I finished and pushed to ZHAW Gitorious Repos a new version of KIARA. This is a major feature release. * New features: 1. First version of KIARA preprocessor tool. The current version supports only C language. C++ support is not fully implemented yet. By running kiara-preprocessor --help you can get a list of command line options. Usage example: On Linux: cd kiara LLVM_INCLUDE=$(llvm-config --libdir)/clang/$(llvm-config --version)/include KIARA_INCLUDE=$(devenvGetModuleCPPPATH kiara) BOOST_INCLUDE=$(devenvGetModuleCPPPATH boost) kiara-preprocessor ./src/tests/aostest.c -o out.c -lang c -isystem /usr/include -isystem "$LLVM_INCLUDE" -I "$KIARA_INCLUDE" -I "$BOOST_INCLUDE" You may need to fix include directives produced by the preprocessor. The resulting file out.c should then contain same macros as in src/tests/aostest_kiara_client.h. In the similar way macros for server example are generated: kiara-preprocessor ./src/tests/aostest_server.c -o out.c -lang c -isystem /usr/include -isystem "$LLVM_INCLUDE" -I "$KIARA_INCLUDE" -I "$BOOST_INCLUDE" On Windows: You need to find out path to the includes of your MSVC compiler. For example my path is: c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include. Command line in MSYS Git/Devenv environment: MSVCINC=/c/Program Files (x86)/Microsoft Visual Studio 10.0/VC/include KIARA_INCLUDE=$(devenvGetModuleCPPPATH kiara) BOOST_INCLUDE=$(devenvGetModuleCPPPATH boost) cd kiara kiara-preprocessor src/tests/aostest.c -o out.c -msvc -D _MSC_VER -lang c -isystem "$MSVCINC" -I "$KIARA_INCLUDE" -I "$BOOST_INCLUDE" Same for server: kiara-preprocessor src/tests/aostest_server.c -o out.c -msvc -D _MSC_VER -lang c -isystem "$MSVCINC" -I "$KIARA_INCLUDE" -I "$BOOST_INCLUDE" KIARA preprocessor processes description of client-side functions and server-side services embedded in form of short macros in the application source code. See examples in ./src/tests/aostest.c ./src/tests/aostest_server.c I will document preprocessor in more detail as soon as possible. 2. New trivial binary protocol (TBP) that can be used as a reference implementation for implementing binary protocols in KIARA. It is located in src/KIARA/Components/TBP directory. JSONRPC implementation is moved to src/KIARA/Components/JSONRPC. For adding new protocol just create new directory with source code and adjust src/SConscript file. 3. Support for multiple protocols loaded dynamically. The protocol used by KIARA is not anymore hardcoded. The server specifies protocol when registering client with the call to: kiaraAddService(server, path, protocol, service); to the protocol string is added suffix "_kp.bc" (e.g. jsonrpc_kp.bc, tbp_kp.bc). This LLVM BC file is loaded at the runtime, and should contain protocol implementation supporting KIARA serialization API. (kp stands for Kiara Protocol). As a part of negotiation process the client gets name of the used protocol and will load the same BC file. Note: even if it is possible to select optimal protocol between multiple available (e.g. binary and text), I didn't implement it yet. 4. Added an alternative JIT-engine: MCJIT. LLVM's MCJIT will replace in a future old JIT engine, so I just finished and merged an MCJIT implementation done by a student. Currently MCJIT is not active by default. You can force it by either: set environment variable KIARA_JIT_ENGINE to MCJIT: export KIARA_JIT_ENGINE=MCJIT or modify/add following KIARA configuration file: ~/.kiara/main.cfg: { "jit" : { "useLegacyJIT" : false } } 5. Test suite, started with source devenv/tests.sh, now tests all combinations of JIT engines and KIARA protocols. When adding new protocol please update devenv/test_examples.py 6. Added missing macro KIARA_CXX_STRUCT_ARRAY_MEMBER, this is also updated in the documentation. There are no changes in installation instructions. Best, Dmitri From rubinstein at cs.uni-saarland.de Mon Jan 13 13:15:52 2014 From: rubinstein at cs.uni-saarland.de (Dmitri Rubinstein) Date: Mon, 13 Jan 2014 13:15:52 +0100 Subject: [Miwi-middleware] KIARA: Version 0.9.1 Message-ID: <52D3D8F8.6080402@cs.uni-saarland.de> Hi. I finished and pushed to ZHAW Gitorious Repos a new version of KIARA. This is a minor feature and bugfix release. * New features: 1. kiara-preprocessor tool now supports a subset of C++ (structs, functions, and services). 2. kiaraLoadServiceIDLFromString function now accepts name of the IDL format in order to support multiple formats in a future. 3. Added more documentation into source code of the aostest example. 4. SDK now contains a unit test suite for all examples. 5. Multiple minor fixes. There are no changes in installation instructions. Best, Dmitri From rubinstein at cs.uni-saarland.de Fri Jan 17 12:53:51 2014 From: rubinstein at cs.uni-saarland.de (Dmitri Rubinstein) Date: Fri, 17 Jan 2014 12:53:51 +0100 Subject: [Miwi-middleware] Fast CDR Buffer Integration Message-ID: <52D919CF.1060203@cs.uni-saarland.de> Hi, couple hours ago eProsima created fastcdr Repository on ZHAW server. So I started integration process. First steps are already done, I build fastcdr library and FastCDR_ResizeTest tool in native form (just for testing) and as LLVM bitcode (for integration) on Linux 64-bit. The integration is done on fastcdr branch in the KIARA Repository: gitor at dornbirn.zhaw.ch:kiara/kiara.git In order to work on integration follow the usual KIARA building instructions, then change directory to kiara and switch to the fastcdr branch. cd kiara git checkout fastcdr When you already have a working devenv environment, just update kiara: de update kiara --pull, and then switch to the fastcdr branch. Now start building by running de build kiara -j. KIARA build system will checkout fastcdr source code first. Then currently building will fail because one file is missing: src/third_party/fastcdr/include/eProsima_cpp/eProsima_auto_link.h @Ricardo: Please add this file ASAP. Fortunately you can just create an empty file by using touch: touch src/third_party/fastcdr/include/eProsima_cpp/eProsima_auto_link.h Restart build process: de build kiara -j When no errors appear you should be able to run FastCDR_ResizeTest program, which will print message: TEST SUCCESSFUL. Also you can run the same program in LLVM bitcode form: MCJIT: kiara-lli -use-mcjit -jit-enable-eh $(devenvGetModuleLIBPATH kiara)/FastCDR_ResizeTest_tool.bc JIT: kiara-lli -jit-enable-eh $(devenvGetModuleLIBPATH kiara)/FastCDR_ResizeTest_tool.bc I also took a short look on the code, and there might be a problem with the integration. Fast CDR Buffer library uses exceptions, which are not well supported by JIT and MCJIT. As long as they are not thrown it can possibly work, but when they are thrown KIARA library can be aborted immediately (especially on Windows). Best, Dmitri From Philipp.Slusallek at dfki.de Fri Jan 17 12:58:50 2014 From: Philipp.Slusallek at dfki.de (Philipp Slusallek) Date: Fri, 17 Jan 2014 12:58:50 +0100 Subject: [Miwi-middleware] Fast CDR Buffer Integration In-Reply-To: <52D919CF.1060203@cs.uni-saarland.de> References: <52D919CF.1060203@cs.uni-saarland.de> Message-ID: <52D91AFA.6080602@dfki.de> Hi, We suggest that we move these discussions to the KIARA specific mailing list. Best, Philipp Am 17.01.2014 12:53, schrieb Dmitri Rubinstein: > Hi, > > couple hours ago eProsima created fastcdr Repository on ZHAW server. So > I started integration process. First steps are already done, I build > fastcdr library and FastCDR_ResizeTest tool in native form (just for > testing) and as LLVM bitcode (for integration) on Linux 64-bit. > > The integration is done on fastcdr branch in the KIARA Repository: > > gitor at dornbirn.zhaw.ch:kiara/kiara.git > > In order to work on integration follow the usual KIARA building > instructions, then change directory to kiara and switch to the fastcdr > branch. > > cd kiara > git checkout fastcdr > > When you already have a working devenv environment, just update kiara: > de update kiara --pull, and then switch to the fastcdr branch. > > Now start building by running de build kiara -j. KIARA build system will > checkout fastcdr source code first. Then currently building will fail > because one file is missing: > > src/third_party/fastcdr/include/eProsima_cpp/eProsima_auto_link.h > > @Ricardo: Please add this file ASAP. > > Fortunately you can just create an empty file by using touch: > > touch src/third_party/fastcdr/include/eProsima_cpp/eProsima_auto_link.h > > Restart build process: de build kiara -j > > When no errors appear you should be able to run FastCDR_ResizeTest > program, which will print message: > > TEST SUCCESSFUL. > > Also you can run the same program in LLVM bitcode form: > > MCJIT: > kiara-lli -use-mcjit -jit-enable-eh $(devenvGetModuleLIBPATH > kiara)/FastCDR_ResizeTest_tool.bc > > JIT: > kiara-lli -jit-enable-eh $(devenvGetModuleLIBPATH > kiara)/FastCDR_ResizeTest_tool.bc > > I also took a short look on the code, and there might be a problem with > the integration. Fast CDR Buffer library uses exceptions, which are not > well supported by JIT and MCJIT. As long as they are not thrown it can > possibly work, but when they are thrown KIARA library can be aborted > immediately (especially on Windows). > > Best, > > Dmitri > _______________________________________________ > Miwi-middleware mailing list > Miwi-middleware at lists.fi-ware.eu > https://lists.fi-ware.eu/listinfo/miwi-middleware -- ------------------------------------------------------------------------- Deutsches Forschungszentrum f?r K?nstliche Intelligenz (DFKI) GmbH Trippstadter Strasse 122, D-67663 Kaiserslautern Gesch?ftsf?hrung: Prof. Dr. Dr. h.c. mult. Wolfgang Wahlster (Vorsitzender) Dr. Walter Olthoff Vorsitzender des Aufsichtsrats: Prof. Dr. h.c. Hans A. Aukes Sitz der Gesellschaft: Kaiserslautern (HRB 2313) USt-Id.Nr.: DE 148646973, Steuernummer: 19/673/0060/3 --------------------------------------------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: slusallek.vcf Type: text/x-vcard Size: 441 bytes Desc: not available URL: From mach at zhaw.ch Fri Jan 17 13:09:01 2014 From: mach at zhaw.ch (Marti Christof (mach)) Date: Fri, 17 Jan 2014 12:09:01 +0000 Subject: [Miwi-middleware] Meeting Message-ID: <0A4C0D98-7BAC-490A-BCFD-D1381F52B681@zhaw.ch> Hi everybody Sorry for short notice. I had to jump into an local important meeting this morning, which also goes on the whole afternoon. I initialy was not planned to attend. It is not possible for me to prepare and host the call now. But because we have some urgent topics to clarify and decide I would like to contact Jaime and Philipp this afternoon (in a break) I don?t know yet exactly when the break will be. In which timeframe would you be available? Best regards Christof From mach at zhaw.ch Fri Jan 17 13:12:42 2014 From: mach at zhaw.ch (Christof Marti) Date: Fri, 17 Jan 2014 13:12:42 +0100 Subject: [Miwi-middleware] Meeting In-Reply-To: <7c1a3a4fa2424374a8b8e7e803fabdef@SRV-MAIL-001.zhaw.ch> References: <7c1a3a4fa2424374a8b8e7e803fabdef@SRV-MAIL-001.zhaw.ch> Message-ID: <01ABCDF5-755A-4FB2-BE02-A92ED4A8CD4B@zhaw.ch> Meeting break is coming up. I will join in a view minutes. Christof Am 17.01.2014 um 13:09 schrieb Marti Christof (mach) : > Hi everybody > > Sorry for short notice. > I had to jump into an local important meeting this morning, which also goes on the whole afternoon. I initialy was not planned to attend. > It is not possible for me to prepare and host the call now. > > But because we have some urgent topics to clarify and decide I would like to contact Jaime and Philipp this afternoon (in a break) I don?t know yet exactly when the break will be. In which timeframe would you be available? > > Best regards > Christof > _______________________________________________ > Miwi-middleware mailing list > Miwi-middleware at lists.fi-ware.eu > https://lists.fi-ware.eu/listinfo/miwi-middleware From habl at zhaw.ch Fri Jan 17 13:14:04 2014 From: habl at zhaw.ch (=?UTF-8?Q?Mathias_Habl=C3=BCtzel?=) Date: Fri, 17 Jan 2014 13:14:04 +0100 Subject: [Miwi-middleware] Meeting In-Reply-To: <1e877491d95d40979691d9d40ca1bb7c@SRV-MAIL-001.zhaw.ch> References: <1e877491d95d40979691d9d40ca1bb7c@SRV-MAIL-001.zhaw.ch> Message-ID: 2014/1/17 Marti Christof (mach) : > But because we have some urgent topics to clarify and decide I would like to contact Jaime and Philipp this afternoon (in a break) I don?t know yet exactly when the break will be. In which timeframe would you be available? So basically it would just concern the three of you and we (the others) are not concerned? So we can safely skip this confcall, right? -- |_|0|_| Researcher (Network and Linux) |_|_|0| Institute of Information Technology |0|0|0| Z?rich University of Applied Sciences http://cloudcomp.ch From JaimeMartin at eprosima.com Fri Jan 17 13:18:37 2014 From: JaimeMartin at eprosima.com (Jaime Martin Losa) Date: Fri, 17 Jan 2014 12:18:37 +0000 Subject: [Miwi-middleware] Meeting In-Reply-To: References: <1e877491d95d40979691d9d40ca1bb7c@SRV-MAIL-001.zhaw.ch> Message-ID: Not really. Regards, Jaime. -----Original Message----- From: miwi-middleware-bounces at lists.fi-ware.eu [mailto:miwi-middleware-bounces at lists.fi-ware.eu] On Behalf Of Mathias Habl?tzel Sent: viernes, 17 de enero de 2014 13:14 To: miwi-middleware at lists.fi-ware.eu Subject: Re: [Miwi-middleware] Meeting 2014/1/17 Marti Christof (mach) : > But because we have some urgent topics to clarify and decide I would like to contact Jaime and Philipp this afternoon (in a break) I don?t know yet exactly when the break will be. In which timeframe would you be available? So basically it would just concern the three of you and we (the others) are not concerned? So we can safely skip this confcall, right? -- |_|0|_| Researcher (Network and Linux) |_|_|0| Institute of Information Technology |0|0|0| Z?rich University of Applied Sciences http://cloudcomp.ch _______________________________________________ Miwi-middleware mailing list Miwi-middleware at lists.fi-ware.eu https://lists.fi-ware.eu/listinfo/miwi-middleware ----- No virus found in this message. Checked by AVG - www.avg.com Version: 2014.0.4259 / Virus Database: 3658/6974 - Release Date: 01/03/14 Internal Virus Database is out of date. From habl at zhaw.ch Fri Jan 17 13:24:08 2014 From: habl at zhaw.ch (=?UTF-8?Q?Mathias_Habl=C3=BCtzel?=) Date: Fri, 17 Jan 2014 13:24:08 +0100 Subject: [Miwi-middleware] Meeting In-Reply-To: <221c0ad3e70547aeb8f92edea17805ca@SRV-MAIL-001.zhaw.ch> References: <1e877491d95d40979691d9d40ca1bb7c@SRV-MAIL-001.zhaw.ch> <221c0ad3e70547aeb8f92edea17805ca@SRV-MAIL-001.zhaw.ch> Message-ID: 2014/1/17 Jaime Martin Losa : > Not really. Not really ? not really skipping or not really needed? /me is confused. -- |_|0|_| Researcher (Network and Linux) |_|_|0| Institute of Information Technology |0|0|0| Z?rich University of Applied Sciences http://cloudcomp.ch From JaimeMartin at eprosima.com Fri Jan 17 13:25:23 2014 From: JaimeMartin at eprosima.com (Jaime Martin Losa) Date: Fri, 17 Jan 2014 12:25:23 +0000 Subject: [Miwi-middleware] Meeting In-Reply-To: References: <1e877491d95d40979691d9d40ca1bb7c@SRV-MAIL-001.zhaw.ch> <221c0ad3e70547aeb8f92edea17805ca@SRV-MAIL-001.zhaw.ch> Message-ID: Connect to the meeting. We are all there. Regards, Jaime. -----Original Message----- From: miwi-middleware-bounces at lists.fi-ware.eu [mailto:miwi-middleware-bounces at lists.fi-ware.eu] On Behalf Of Mathias Habl?tzel Sent: viernes, 17 de enero de 2014 13:24 Cc: miwi-middleware at lists.fi-ware.eu Subject: Re: [Miwi-middleware] Meeting 2014/1/17 Jaime Martin Losa : > Not really. Not really ? not really skipping or not really needed? /me is confused. -- |_|0|_| Researcher (Network and Linux) |_|_|0| Institute of Information Technology |0|0|0| Z?rich University of Applied Sciences http://cloudcomp.ch _______________________________________________ Miwi-middleware mailing list Miwi-middleware at lists.fi-ware.eu https://lists.fi-ware.eu/listinfo/miwi-middleware ----- No virus found in this message. Checked by AVG - www.avg.com Version: 2014.0.4259 / Virus Database: 3658/6974 - Release Date: 01/03/14 Internal Virus Database is out of date. From rubinstein at cs.uni-saarland.de Fri Jan 17 15:08:48 2014 From: rubinstein at cs.uni-saarland.de (Dmitri Rubinstein) Date: Fri, 17 Jan 2014 15:08:48 +0100 Subject: [Miwi-middleware] Fast CDR Buffer Integration In-Reply-To: <52D919CF.1060203@cs.uni-saarland.de> References: <52D919CF.1060203@cs.uni-saarland.de> Message-ID: <52D93970.5070200@cs.uni-saarland.de> Short update: Ricardo added missing files and I updated build system so everything compiles on 64-bit Linux. I pushed it to fastcdr branch on ZHAW server. However, I now have a big problem on Windows. It is not possible to compile FastCDR as LLVM bitcode on Windows because it uses too much of C++. Here is the description of the problem that I encountered: http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-June/030327.html This compilation problem is caused in FastCDR by using C++11 standard array header. There are now two options: 1. No support for FastCDR on Windows. I will just deactivate building of it on Windows and that's all. 2. Check for some macro in FastCDR (e.g. BUILD_FOR_KIARA ?) and in the case it is defined don't use any C++ features that cause build to fail on Windows with clang. Best, Dmitri P.S. I still need Rafaels integration code in order to proceed further with the integration. On 01/17/14 12:53, Dmitri Rubinstein wrote: > Hi, > > couple hours ago eProsima created fastcdr Repository on ZHAW server. So > I started integration process. First steps are already done, I build > fastcdr library and FastCDR_ResizeTest tool in native form (just for > testing) and as LLVM bitcode (for integration) on Linux 64-bit. > > The integration is done on fastcdr branch in the KIARA Repository: > > gitor at dornbirn.zhaw.ch:kiara/kiara.git > > In order to work on integration follow the usual KIARA building > instructions, then change directory to kiara and switch to the fastcdr > branch. > > cd kiara > git checkout fastcdr > > When you already have a working devenv environment, just update kiara: > de update kiara --pull, and then switch to the fastcdr branch. > > Now start building by running de build kiara -j. KIARA build system will > checkout fastcdr source code first. Then currently building will fail > because one file is missing: > > src/third_party/fastcdr/include/eProsima_cpp/eProsima_auto_link.h > > @Ricardo: Please add this file ASAP. > > Fortunately you can just create an empty file by using touch: > > touch src/third_party/fastcdr/include/eProsima_cpp/eProsima_auto_link.h > > Restart build process: de build kiara -j > > When no errors appear you should be able to run FastCDR_ResizeTest > program, which will print message: > > TEST SUCCESSFUL. > > Also you can run the same program in LLVM bitcode form: > > MCJIT: > kiara-lli -use-mcjit -jit-enable-eh $(devenvGetModuleLIBPATH > kiara)/FastCDR_ResizeTest_tool.bc > > JIT: > kiara-lli -jit-enable-eh $(devenvGetModuleLIBPATH > kiara)/FastCDR_ResizeTest_tool.bc > > I also took a short look on the code, and there might be a problem with > the integration. Fast CDR Buffer library uses exceptions, which are not > well supported by JIT and MCJIT. As long as they are not thrown it can > possibly work, but when they are thrown KIARA library can be aborted > immediately (especially on Windows). > > Best, > > Dmitri > _______________________________________________ > Miwi-middleware mailing list > Miwi-middleware at lists.fi-ware.eu > https://lists.fi-ware.eu/listinfo/miwi-middleware From Philipp.Slusallek at dfki.de Mon Jan 20 14:32:59 2014 From: Philipp.Slusallek at dfki.de (Philipp Slusallek) Date: Mon, 20 Jan 2014 14:32:59 +0100 Subject: [Miwi-middleware] Fwd: [Fiware-wpa] Backlog Content: Missing updates - Hot topic: Delivery M33 - Sprint Planning (yet?) In-Reply-To: <65CDBE2E7E5A964BB8BC5F4328FDE90B89160CB1@EX10-MB2-MAD.hi.inet> References: <65CDBE2E7E5A964BB8BC5F4328FDE90B89160CB1@EX10-MB2-MAD.hi.inet> Message-ID: <52DD258B.40806@dfki.de> FYI. Please take care of the Backlog entries! Thanks, Philipp -------- Original-Nachricht -------- Betreff: [Fiware-wpa] Backlog Content: Missing updates - Hot topic: Delivery M33 - Sprint Planning (yet?) Datum: Mon, 20 Jan 2014 12:21:04 +0000 Von: MANUEL ESCRICHE VICENTE An: fiware-ge-owners at lists.fi-ware.eu Kopie (CC): fiware-wpl at lists.fi-ware.eu , fiware-wpa at lists.fi-ware.eu Dear Partners, By exploring the backlogs I get quite a negative perspective of the on-going work leading to successfully meet our commitments due by the end of the month. I hope it?s consequence of having the backlog outdated. Therefore, I?d appreciate having it fixed as soon as possible. Otherwise, I?d have no option but to show concern. Thanks for cooperation!! *_UPDATES REQUIRED FOR Backlog Delivery (due end of December)_* Find below the number of items needing updates in the different chapters: ?Apps (31 items), Cloud ( 45 items), IoT (40 items), Data (23 items), I2nd (42 items), Sec(4 items), MiWi (27 items) ?I?d appreciate your collaboration to get them updated ASAP otherwise they appear in red in the deliverable. Have updated the reports of the backlog: hot topic (delivery M33) and dashboards. *_HOT TOPIC ? Delivery M33_* https://forge.fi-ware.eu/docman/view.php/27/3307/FIWARE.backlog.deliveryM33.search.20140120.xlsx I?m missing contributions from many GEIs to the current delivery. I?d appreciate knowing whether they aren?t contributing because those enablers put off their delivery to next release or any other reason. Otherwise, I?d appreciate your collaboration and create those work items. *_DASHBOARDS ? Sprint planning_* *Apps*:Items: 46 = 0 Epics, 22 Features, 8 User stories, 16 Work items, 0 Bugs There are still enablers with nothing scheduled for the current timeframes https://forge.fi-ware.eu/docman/view.php/27/3300/FIWARE.backlog.apps.dashboard.20140120.xlsx *Cloud*: Items: 67 = 0 Epics, 26 Features, 18 User stories, 23 Work items, 0 Bugs There are still enablers with nothing scheduled for the current timeframes https://forge.fi-ware.eu/docman/view.php/27/3301/FIWARE.backlog.cloud.dashboard.20140120.xlsx *IoT*: Items: 47 = 0 Epics, 29 Features, 8 User stories, 10 Work items, 0 Bugs There are still enablers with nothing scheduled for the current timeframes https://forge.fi-ware.eu/docman/view.php/27/3304/FIWARE.backlog.iot.dashboard.20140120.xlsx *Data*: Items: 86 = 0 Epics, 32 Features, 20 User stories, 32 Work items, 2 Bugs There is 1 enabler with nothing scheduled for the current timeframes https://forge.fi-ware.eu/docman/view.php/27/3302/FIWARE.backlog.data.dashboard.20140120.xlsx *I2ND*: Items: 98 = 0 Epics, 36 Features, 6 User stories, 56 Work items, 0 Bugs https://forge.fi-ware.eu/docman/view.php/27/3303/FIWARE.backlog.i2nd.dashboard.20140120.xlsx There are still enablers with nothing scheduled for the current timeframes *Security*: Items: 43 = 0 Epics, 20 Features, 1 User stories, 22 Work items, 0 Bugs https://forge.fi-ware.eu/docman/view.php/27/3306/FIWARE.backlog.security.dashboard.20140120.xlsx There are still enablers with nothing scheduled for the current timeframes *MiWi*: Items: Items: 34 = 0 Epics, 34 Features, 0 User stories, 0 Work items, 0 Bugs https://forge.fi-ware.eu/docman/view.php/27/3305/FIWARE.backlog.miwi.dashboard.20140120.xlsx There are still enablers with nothing scheduled for the current timeframes There?s nothing scheduled for the current sprint since everything scheduled are features. I?m expecting content in backlogs whose GEI?s are declared active. If they had changed the status to on-hold or closed, please, let me know to update them ? and avoid non necessary concern. Thanks all for cooperation!! Kind regards, Manuel ---------------------------- Manuel Escriche Vicente Agile Project Manager/Leader FI-WAREInitiative Telef?nica Digital Parque Tecnol?gico C/ Abraham Zacuto, 10 47151 - Boecillo Valladolid - Spain Tfno: +34.91.312.99.72 Fax: +34.983.36.75.64 http://www.tid.es ------------------------------------------------------------------------ Este mensaje se dirige exclusivamente a su destinatario. Puede consultar nuestra pol?tica de env?o y recepci?n de correo electr?nico en el enlace situado m?s abajo. This message is intended exclusively for its addressee. We only send and receive email on the basis of the terms set out at: http://www.tid.es/ES/PAGINAS/disclaimer.aspx -- ------------------------------------------------------------------------- Deutsches Forschungszentrum f?r K?nstliche Intelligenz (DFKI) GmbH Trippstadter Strasse 122, D-67663 Kaiserslautern Gesch?ftsf?hrung: Prof. Dr. Dr. h.c. mult. Wolfgang Wahlster (Vorsitzender) Dr. Walter Olthoff Vorsitzender des Aufsichtsrats: Prof. Dr. h.c. Hans A. Aukes Sitz der Gesellschaft: Kaiserslautern (HRB 2313) USt-Id.Nr.: DE 148646973, Steuernummer: 19/673/0060/3 --------------------------------------------------------------------------- -------------- next part -------------- _______________________________________________ Fiware-wpa mailing list Fiware-wpa at lists.fi-ware.eu https://lists.fi-ware.eu/listinfo/fiware-wpa -------------- next part -------------- A non-text attachment was scrubbed... Name: slusallek.vcf Type: text/x-vcard Size: 441 bytes Desc: not available URL: From mach at zhaw.ch Wed Jan 22 16:58:49 2014 From: mach at zhaw.ch (Christof Marti) Date: Wed, 22 Jan 2014 16:58:49 +0100 Subject: [Miwi-middleware] Action Points for KIARA deliverables Message-ID: Hi As the other WP13 GEi, we need to come up with all the deliveries for KIARA. The same action points and deadlines are valid as I sent this afternoon on the miwi mailing-list. There is still a lot to do in a very short time range. For details please check the explanation in the minutes of todays MIWI meeting on https://docs.google.com/document/d/1156-Sl1KrlIjNXWzfh9vcc2KsrPK8vhmf9tg9A2IXz8/edit# Thu 23.01.2014 EOB [GEi owner]: Install&Admin-, User&Developer-Guides & unit-testing plans. https://docs.google.com/spreadsheet/ccc?key=0Auieh_fs3EUxdFVvY19ab1lFRDRUaTBrUXlpYzBVRlE#gid=17 The writing of this manuals is on the todo list since several weeks. They need to be delivered for review definitely by the end of THIS week. I created all the wiki-pages for the different KIARA parts. In the above dashboard you?ll find the links to the ?Installation & Administration Guide?, ?User & Programmer Guide? and ?Unit testing plan? for all components: The "KIARA Suite?: Entry page with links and short descriptions of the different parts [I will create a draft of this pages.] Can you please send me a short description for each of the following contained components ( 1 paragraph each)?] ?KIARA? integrated version: the DFKI integrated version [Dmitri, Philipp can you please check, that these parts are available and follow the basic structure] ?RPC over DDS?: Jaime, please urgently add the content of all 3 documents and send me an info when done, so I can do the check ?RPC over REST?: Jaime, please urgently add the content of all 3 documents and send me an info when done, so I can do the check ?Fast Buffers?: Jaime, please urgently add the content of all 3 documents and send me an info when done, so I can do the check Thu 23.01.2014 EOB [GEi owner]: fix historic entries in tracker ( close or reschedule) ALL: please check and fix your entries (see explanation in minutes) Fri 24.01.2014 EOB [GEi owner]: add sprint entries in tracker (split release in user stories and add work items for non code work) ALL: please add and schedule work new items for sprints 3.3.1, 3.3.2, 3.3.3 (see explanation in minutes) Fri 24.01.2014 [GE owner]: Architecture update https://docs.google.com/spreadsheet/ccc?key=0Auieh_fs3EUxdFVvY19ab1lFRDRUaTBrUXlpYzBVRlE#gid=21 Philipp, please check the Architecture page and make a proposal, what needs to be updated Sun 26.01.2014 [GE owner]: Integration Plan for your GEi (GEi dependency chain & Testcase for each chain) please use attached template. Please come up with a integration TestCase description for your component (KIARA, RPC over DDS, RPC over REST, Fast Buffers). Using attached Template. Wed 29.01.2014 [GEi owner]: deliver binary package/zip to FI-WARE files section (mandatory) Binary packages for all components until end of next week. Best regards Christof ---- InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch Institut of Applied Information Technology - InIT Zurich University of Applied Sciences - ZHAW School of Engineering Phone: +41 58 934 70 63 Skype: christof-marti -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: geis dependencies template.doc Type: application/msword Size: 48640 bytes Desc: not available URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: From rubinstein at cs.uni-saarland.de Fri Jan 24 11:06:00 2014 From: rubinstein at cs.uni-saarland.de (Dmitri Rubinstein) Date: Fri, 24 Jan 2014 11:06:00 +0100 Subject: [Miwi-middleware] KIARA: Version 0.9.2 Message-ID: <52E23B08.1090806@cs.uni-saarland.de> Hi. I finished and pushed to ZHAW Gitorious Repos a new version of KIARA. This is a minor feature and bugfix release. * New features: 1. KIARA supports ortecdr protocol based on open source (GPL) CDR encoding implementation from ORTE project (http://orte.sourceforge.net/). You will find modified ORTE CDR code in: kiara/src/third_party/orte-cdr Protocol implementation is in: kiara/src/KIARA/Components/ORTE-CDR/ Since FastCDR integration takes to much time and release is already next week we decided to integrate a simpler code (ORTE/CDR is implemented in C). There are no changes in installation instructions. Best, Dmitri From mach at zhaw.ch Fri Jan 24 12:49:13 2014 From: mach at zhaw.ch (Christof Marti) Date: Fri, 24 Jan 2014 12:49:13 +0100 Subject: [Miwi-middleware] todays meeting agenda/minutes Message-ID: Hi I prepared todays meeting agenda/minutes document: https://docs.google.com/document/d/1kcAeFlr8PACvB_wTnZW1CNMWGfR0wvf85dnROgvfl6k/edit It is all about Release 3 (documentation, SW) and the coming deliverables (architecture update, OpenSpec,?) I will open and send the hangout link at 13:00. Christof ---- InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch Institut of Applied Information Technology - InIT Zurich University of Applied Sciences - ZHAW School of Engineering Phone: +41 58 934 70 63 Skype: christof-marti From mach at zhaw.ch Fri Jan 24 13:09:25 2014 From: mach at zhaw.ch (Christof Marti) Date: Fri, 24 Jan 2014 13:09:25 +0100 Subject: [Miwi-middleware] todays meeting agenda/minutes In-Reply-To: References: Message-ID: <74045590-D303-46B4-B93F-17C9905B949B@zhaw.ch> Link for hangout https://plus.google.com/hangouts/_/76cpic084j8sqeobkq3l0ucd48?hl=de Am 24.01.2014 um 12:49 schrieb Christof Marti : > Hi > > I prepared todays meeting agenda/minutes document: > https://docs.google.com/document/d/1kcAeFlr8PACvB_wTnZW1CNMWGfR0wvf85dnROgvfl6k/edit > > It is all about Release 3 (documentation, SW) and the coming deliverables (architecture update, OpenSpec,?) > > I will open and send the hangout link at 13:00. > > Christof > ---- > InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch > Institut of Applied Information Technology - InIT > Zurich University of Applied Sciences - ZHAW > School of Engineering > Phone: +41 58 934 70 63 > Skype: christof-marti From mach at zhaw.ch Fri Jan 24 15:27:59 2014 From: mach at zhaw.ch (Christof Marti) Date: Fri, 24 Jan 2014 15:27:59 +0100 Subject: [Miwi-middleware] Software release procedure Message-ID: <4C4029A5-7282-463F-9BE9-20F84C0D77EE@zhaw.ch> Hi Jaime, Dmitri As discussed in the meeting I created the Package ID for KIARA. It is called ?MIWI-KIARA-Middleware?. We will use the same package for all deliveries. Delivery is on this page: https://forge.fi-ware.eu/frs/?group_id=7 Instructions are here: http://forge.fi-ware.eu/plugins/mediawiki/wiki/fiware/index.php/Tutorial_releasing_fiware With the first file upload the release-container (3.2.3) has to be created: - Go to ?Admin" - Click on [Add Release] next to package ?MIWI-KIARA-Middleware" - Enter Release Number: 3.2.3 - Select file to upload, (select file type and processor type) - Click on ?Release File? To upload the second and all following files: - Go to ?Admin? - Click on [Edit Release] next to package ?MIWI-KIARA-Middleware? - Select [Edit] on Release 3.2.3 - In Section 2, Fill in the form to upload the file (select file type and processor type) - Click on "Add File" Cheers, Christof ---- InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch Institut of Applied Information Technology - InIT Zurich University of Applied Sciences - ZHAW School of Engineering Phone: +41 58 934 70 63 Skype: christof-marti From mach at zhaw.ch Fri Jan 24 18:27:18 2014 From: mach at zhaw.ch (Christof Marti) Date: Fri, 24 Jan 2014 18:27:18 +0100 Subject: [Miwi-middleware] Software release procedure In-Reply-To: <4C4029A5-7282-463F-9BE9-20F84C0D77EE@zhaw.ch> References: <4C4029A5-7282-463F-9BE9-20F84C0D77EE@zhaw.ch> Message-ID: <6212D915-C288-4A3D-AE33-26CB7B1273C0@zhaw.ch> Hi I already created the release container and uploaded a placeholder.txt file (which can be removed after the next upload). Thus, to upload your archives you only have to add files (second part of the instructions). Cheers, Christof Am 24.01.2014 um 15:27 schrieb Christof Marti : > Hi Jaime, Dmitri > > As discussed in the meeting I created the Package ID for KIARA. It is called ?MIWI-KIARA-Middleware?. We will use the same package for all deliveries. > > Delivery is on this page: https://forge.fi-ware.eu/frs/?group_id=7 > Instructions are here: http://forge.fi-ware.eu/plugins/mediawiki/wiki/fiware/index.php/Tutorial_releasing_fiware > > > With the first file upload the release-container (3.2.3) has to be created: > - Go to ?Admin" > - Click on [Add Release] next to package ?MIWI-KIARA-Middleware" > - Enter Release Number: 3.2.3 > - Select file to upload, (select file type and processor type) > - Click on ?Release File? > > To upload the second and all following files: > - Go to ?Admin? > - Click on [Edit Release] next to package ?MIWI-KIARA-Middleware? > - Select [Edit] on Release 3.2.3 > - In Section 2, Fill in the form to upload the file (select file type and processor type) > - Click on "Add File" > > Cheers, > Christof > ---- > InIT Cloud Computing Lab - ICCLab http://cloudcomp.ch > Institut of Applied Information Technology - InIT > Zurich University of Applied Sciences - ZHAW > School of Engineering > Phone: +41 58 934 70 63 > Skype: christof-marti From mach at zhaw.ch Fri Jan 31 13:02:06 2014 From: mach at zhaw.ch (Christof Marti) Date: Fri, 31 Jan 2014 13:02:06 +0100 Subject: [Miwi-middleware] kiara meeting Message-ID: Hi I created the agenda/minutes for todays meeting: https://docs.google.com/document/d/1bbtEcesuFTQmBgutQziY_7AKTrHDCvfKadPAWpSEApA/edit Google Hangout is here: https://plus.google.com/hangouts/_/7acpib7t60d2m7rblgon8bopgs?hl=de Cheers Christof From Philipp.Slusallek at dfki.de Fri Jan 31 13:08:53 2014 From: Philipp.Slusallek at dfki.de (Philipp Slusallek) Date: Fri, 31 Jan 2014 13:08:53 +0100 Subject: [Miwi-middleware] kiara meeting In-Reply-To: References: Message-ID: <52EB9255.407@dfki.de> Hi, Sorry, forgot to cancel. I am at a DFKI shareholder meeting today and cannot join. Best, Philipp Am 31.01.2014 13:02, schrieb Christof Marti: > Hi > > I created the agenda/minutes for todays meeting: > https://docs.google.com/document/d/1bbtEcesuFTQmBgutQziY_7AKTrHDCvfKadPAWpSEApA/edit > > Google Hangout is here: > https://plus.google.com/hangouts/_/7acpib7t60d2m7rblgon8bopgs?hl=de > > Cheers > Christof > _______________________________________________ > Miwi-middleware mailing list > Miwi-middleware at lists.fi-ware.eu > https://lists.fi-ware.eu/listinfo/miwi-middleware > -- ------------------------------------------------------------------------- Deutsches Forschungszentrum f?r K?nstliche Intelligenz (DFKI) GmbH Trippstadter Strasse 122, D-67663 Kaiserslautern Gesch?ftsf?hrung: Prof. Dr. Dr. h.c. mult. Wolfgang Wahlster (Vorsitzender) Dr. Walter Olthoff Vorsitzender des Aufsichtsrats: Prof. Dr. h.c. Hans A. Aukes Sitz der Gesellschaft: Kaiserslautern (HRB 2313) USt-Id.Nr.: DE 148646973, Steuernummer: 19/673/0060/3 --------------------------------------------------------------------------- -------------- next part -------------- A non-text attachment was scrubbed... Name: slusallek.vcf Type: text/x-vcard Size: 441 bytes Desc: not available URL: