Page MenuHomePhorge

ewillegger (Edwin Willegger)
Disabled

Projects

User does not belong to any projects.

User Details

User Since
Apr 11 2018, 11:57 AM (343 w, 4 d)
Roles
Disabled

Recent Activity

Oct 3 2019

ewillegger committed R20:a6eae28732d5: Initial commit to integrate mqtt application example into Rosa framework..
Oct 3 2019, 11:48 AM

Jul 25 2019

ewillegger added a comment to R20:b7a846410de4: Moving CSVReader and CSVWriter implementation to master branch. Resolved….

I changed the names of the local variables in commit 77afb5d8c6d2.

Jul 25 2019, 5:16 PM
ewillegger committed R20:77afb5d8c6d2: Resolving issues regarding warnings of MSVC..
Jul 25 2019, 4:59 PM

Jun 27 2019

ewillegger committed R20:b7a846410de4: Moving CSVReader and CSVWriter implementation to master branch. Resolved….
Jun 27 2019, 12:54 PM
ewillegger accepted R20:a6ee3f99d87a: Extend documentation on rosa::csv::CSVTupleWriter::writeHeader().

Thanks for your imporvments.

Jun 27 2019, 9:19 AM

Jun 11 2019

ewillegger added 1 auditor(s) for R20:4786127e1cbd: Merge branch 'CSVFiles' of ssh://phabricator.ict.tuwien.ac.: juhasz.

Now I should have addressed all your issues. It is now only possible to write one header line before data into the csv file.

Jun 11 2019, 4:10 PM
ewillegger committed R20:4786127e1cbd: Merge branch 'CSVFiles' of ssh://phabricator.ict.tuwien.ac..
Jun 11 2019, 4:08 PM
ewillegger committed R20:c6b10668dfff: Now it is not possible to write a header line after data into the csv file and….
Jun 11 2019, 4:08 PM
ewillegger committed R20:659033ed4830: Added in the CSVFiles example some cases how you could work with the….
Jun 11 2019, 10:41 AM

Jun 10 2019

ewillegger committed R20:de5b4d59be33: Addresed the concerns of f16511b1a0bd, to improve performance and readability….
Jun 10 2019, 4:18 PM
ewillegger committed R20:94a2eded6bee: Changed CSVWriter class, so that all outputs should use some LOG functionality….
Jun 10 2019, 3:57 PM

Jun 9 2019

ewillegger committed R20:cb724c38c6c3: Changed the example, that it also shows how the CSVIterator class works with….
Jun 9 2019, 12:42 PM

Jun 3 2019

ewillegger committed R20:44fc0a6bd760: Fixed the issue that header size was not checked. Now an std::array is used and….
Jun 3 2019, 7:48 AM

Jun 2 2019

ewillegger committed R20:f16511b1a0bd: Added the possiblity to write a header line into the file, but currently the….
Jun 2 2019, 4:03 PM
ewillegger committed R20:5f3e654f6831: Merge branch 'CSVFiles' of ssh://phabricator.ict.tuwien.ac..
Jun 2 2019, 3:09 PM
ewillegger committed R20:2f9441cbeaa6: Added CSVTupleWriter class, which writes std::tuples in a recursion fashion in….
Jun 2 2019, 3:09 PM

May 30 2019

ewillegger committed R20:199771d09c9b: Added a short example to show how you could use the CSVIterator. This example….
May 30 2019, 4:47 PM
ewillegger committed R20:dc7177a4e6e8: Merge branch 'CSVFiles' of ssh://phabricator.ict.tuwien.ac..
May 30 2019, 1:09 PM
ewillegger committed R20:3997a7aab62c: It is now possible to iterate over the end of file, without generating an error..
May 30 2019, 1:09 PM

May 23 2019

ewillegger committed R20:bd9ff3a20969: Tried to implement tuple solution but I'M struggling with template programming….
May 23 2019, 1:13 AM

May 5 2019

ewillegger added a comment to R20:fb3a26551f89: Implement tuple values in the deluxe interface.
template <typename... Ts>
template <size_t... S0>
void DeluxeTuple<Ts...>::dump(std::ostream &OS, Seq<S0...>) const noexcept {
  STATIC_ASSERT(sizeof...(S0) == sizeof...(Ts), "inconsistent type arguments");
  OS << "{";
  (OS << ... << (" " + std::to_string(std::get<S0>(*this))));
  OS << " }";
}

Will this also work if the type of S0 is already std::string??

May 5 2019, 10:12 PM

May 4 2019

ewillegger committed R20:d5efbb69f6a0: Added the functionality, that you can Skip a number of Rows at the beginning of….
May 4 2019, 1:24 PM
ewillegger committed R20:30e2a9e07313: Changed the interface of the CSVFlatIterator. Added arguments are, if the file….
May 4 2019, 12:59 PM
ewillegger added a comment to R20:e57ba5362306: Added possilbe delimeters set by user for CSVReader.

Resolved issues of code review.

May 4 2019, 10:04 AM
ewillegger committed R20:c44cf3301926: Initalizing all members of a class in the constructor..
May 4 2019, 10:01 AM
ewillegger committed R20:14022e78b167: Removed rosa_config.h, because it is not supposed to be in the repository..
May 4 2019, 9:48 AM

May 2 2019

ewillegger committed R20:dac0a834a29f: Removed an example from the apps folder, because only usefulapps should be done….
May 2 2019, 9:47 AM
ewillegger committed R20:01ddb501496c: Added the example program to show, how you can use the new CSVReader….
May 2 2019, 9:42 AM

May 1 2019

ewillegger committed R20:2de41839b24c: Removed unused constructor of CSVFlatIterator..
May 1 2019, 5:36 PM
ewillegger committed R20:ce5215192e76: Added the support of reading of columns of one row of one CSV-file into….
May 1 2019, 5:09 PM
ewillegger committed R20:a2bd62cab20f: Added automatic header detection for CSVReader..
May 1 2019, 1:06 PM
ewillegger committed R20:e57ba5362306: Added possilbe delimeters set by user for CSVReader.
May 1 2019, 10:58 AM

Apr 25 2019

ewillegger committed R20:39e962604457: Initial commit for CSVFile feature branch..
Apr 25 2019, 3:20 PM

Jan 6 2019

ewillegger committed R20:63b398cedd93: Changed channel connection between Agents with the right numbers..
Jan 6 2019, 5:48 PM
ewillegger committed R20:7e962470b8c5: Merge branch 'RoSA_CAM_dirtyInclude' of ssh://phabricator.ict.tuwien.ac..
Jan 6 2019, 5:34 PM
ewillegger committed R20:0002fb668cfa: QT with Rosa.
Jan 6 2019, 5:34 PM
ewillegger committed R20:cd10c7330087: Test von statischer Bilbiothek erfolgreich durchgeführt..
Jan 6 2019, 5:34 PM

Dec 21 2018

ewillegger committed R20:6265ce22ade7: Added example project how it is possible to create a new child thread in Qt..
Dec 21 2018, 2:14 PM
ewillegger committed R20:5063df55677b: Added QTProject for CAM.
Dec 21 2018, 10:21 AM

Dec 13 2018

ewillegger committed R20:6e2a8f69ff86: Changed the place of the definiton of output path from StateHandler to….
Dec 13 2018, 10:29 PM

Oct 31 2018

ewillegger committed R20:5b62be229377: Added Source folder.
Oct 31 2018, 9:45 AM

Sep 3 2018

ewillegger committed R20:aa160ffa7bd5: Changed functions in CSV_Writer and CSVreaderModule to be inependent of the….
Sep 3 2018, 8:25 AM