Блог пользователя slycelote

Автор slycelote, 11 лет назад, По-английски

Like CHelper for Java, caide automates certain common tasks that you do during programming competitions: parsing, running and debugging problem tests, inlining library code. It currently supports C++ and C# programming languages. The list of supported online judges is here.

Download here. You can also install VS extension directly from Visual Studio.

Documentation:

Codelite and command line caide in Linux: (full size)

Codelite in Windows: (full size)

Visual Studio:

  • Проголосовать: нравится
  • +36
  • Проголосовать: не нравится

»
11 лет назад, скрыть # |
 
Проголосовать: нравится +1 Проголосовать: не нравится

How to install it on Linux?

»
11 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

will it work in visual studio express 2013 ?

»
11 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Added a 64-bit Linux build.

»
11 лет назад, скрыть # |
 
Проголосовать: нравится +5 Проголосовать: не нравится

It seems that Caide does not work with C++11 feature =delete. Caide removes unused declaration of constructor but remains attributes of this declaration.

For example, in solution file we have

class Test {
public:
	Test(int n) : n(n) {}
private:
	Test() = delete;
	int n;
};

void solve(istream& in, ostream& out) {
	Test a(1000);
}

Caide converts it to submission.cpp:

class Test {
public:
	Test(int n) : n(n) {}
private:
	 = delete;
	int n;
};

void solve(istream& in, ostream& out) {
	Test a(1000);
}

Compiler fails on file submission.cpp with error error C2059: syntax error : '='.

Is it possible to fix it?

»
11 лет назад, скрыть # |
← Rev. 3  
Проголосовать: нравится +5 Проголосовать: не нравится

Another bug is removing method that is called from destructor (in case if destructor is not called explicitly).

Because the code is rather huge, I put it on Pastebin: http://pastebin.com/CRQDgguM. The first two cases are failed, the last one worked fine, but it is not convenient to write in such way during coding.

»
11 лет назад, скрыть # |
 
Проголосовать: нравится +5 Проголосовать: не нравится

To continue reporting streak just want to mention strange thing (not a bug actually).

I bet lots of participants have some defines like

#ifdef _WIN32
#define LLD "%I64d"
#else
#define LLD "%lld"
#endif

to make their code work under different environment.

Caide inliner module removes this ifdef and you need to fix you submission.cpp file manually. It is not very convenient to repeat this process every time. Is there any opportunity to tell inliner not to remove this ifdef?

»
11 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

can i get (caide) for VS 2015 ??!

»
11 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Caide 2.1 changes:

  • Visual Studio 2015 support
  • CodeChef and Codeforces fix
  • Several improvements in C++ inliner
  • Better cross-distro compatibility for Linux builds
»
11 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

How to use it for windows ?

»
10 лет назад, скрыть # |
 
Проголосовать: нравится +8 Проголосовать: не нравится

First of all, thank you very much for this awesome tool.

Second, after the most recent update to VS2015 the following needs to be added to clang_options in caide.ini: -D__EDG__,

»
10 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I published 2.2 release. This release contains improvements in C++ inliner. In particular, unused namespaces and comments attached to unused declarations are now removed. Make sure to have -fparse-all-comments clang option in your caide.ini file.

Note: If you use latest release of VS 2015, you need to add the clang option -D__EDG__ in your caide.ini file. Thanks to Jacob for catching this.

Also, in light of recent cin/scanf fiasco, I'd like to remind that you can configure caide to use printf/scanf, fast I/O or any other kind of I/O. All you have to do is modify the signature of solve function and make corresponding changes in 3 template files: main_template.cpp, solution_template.cpp and test_template.cpp (the last one is quite large but you're interested only in runTest function). A sample implementation for printf/scanf is here: https://github.com/slycelote/caide/tree/release/libcaide/doc/samples/cstyle-io

»
10 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Another VS update broke the extension again... A hack to fix this is to add -D__is_assignable=__is_nothrow_assignable to clang_options config entry.

»
10 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

caide version 2.3 is out with support for Visual Studio 2017 and fixes in HackerRank and CodeChef parsers.

»
9 лет назад, скрыть # |
 
Проголосовать: нравится +5 Проголосовать: не нравится

Hi. I was looking for a C++ code inliner, and found this one. I built it for Mac and looks like it's working, but I have some questions.

First, I parsed some problem and manually entered the correct sample output. But after I compile and run it, it outputs

Running test case1
...correct output goes here...

Results summary
_______________
Outcome	Count
Error	1

case1: Testwasnotrun

Why error and Testwasnotrun?

The more general question is how to use it in conjunction with some IDE? It would be convenient to use CMake to create a project with one target for every problem. Is there a way to configure problemID to be just one letter, not including any contest details? And what's the expected workflow for problems that cannot be parsed?

  • »
    »
    9 лет назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    I built it for Mac and looks like it's working

    It's surprising that it compiles out of the box, I didn't expect that :) If you could upload the Mac build somewhere, it would help other users.

    Why error and Testwasnotrun?

    That's puzzling, especially the lack of spaces. Can you send me a zip archive of your caide directory right after you do that?

    how to use it in conjunction with some IDE?

    Right now there is Codelite support, as described in the README. You still have to use terminal to switch between problems and create new ones, but the rest should be possible to do within Codelite.

    It would be convenient to use CMake

    Yes, it is in my plans, but no ETA yet. I've added a Github issue for it here

    Is there a way to configure problemID to be just one letter

    Not at the moment, I've added a Github issue here

    what's the expected workflow for problems that cannot be parsed?

    You can create a code skeleton for the problem with caide problem A, and then create in/out files manually. Checkout caide problem -h.

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Thanks for the amazing tool!
I am not able to parse tasks through CHelper in Chrome. I read many forums but all in vain. It would be great if u could explain how I can do parsing.
Thanks :)

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

In the Visual Studio 2017 Community Edition i have installed VsCaide extension..... But When I build a solution it is showing build errors...... 499 errors its showing...... cmath, cerno etc....... Can you fix it ?

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

how to solve this problem https://imgur.com/a/ur5ej ?

»
8 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

is any one here using this tool with visual studio 2017 and work with it properly, i need his help in guiding me !!

»
8 лет назад, скрыть # |
← Rev. 2  
Проголосовать: нравится +3 Проголосовать: не нравится

YouTube Tutorial on how to use VsCaide: https://youtu.be/qNKBdqifxpU

»
8 лет назад, скрыть # |
 
Проголосовать: нравится +12 Проголосовать: не нравится

New in version 2.4:

  • Support Competitive Companion browser extension for problem parsing.
  • Better test editing GUI in VsCaide, see new screenshot (thanks to @Predelnik)
  • Autodetect latest Windows SDK in vcxproj template, removing the need to install Universal SDK (thanks to @aybassiouny)
  • Update bundled MinGW headers: in particular, fixes missing std::to_string.
  • -std=c++14 is now default, -std=c++1z is available for C++17 support
  • Bug fixes in C++ inliner
  • Improve automated detection of compilation flags when system headers are used.

Download from github here. Visual Studio extension will be published to the marketplace soon.

»
8 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can you port it over to Sublime Text 3 because many competitive programmers use a lightweight ide like sublime text instead of Visual Studio

  • »
    »
    8 лет назад, скрыть # ^ |
    ← Rev. 3  
    Проголосовать: нравится 0 Проголосовать: не нравится

    I created github issues for VSCode and Sublime Text, but I don't plan to work on them (at least until I see enough interest). Please note that most functionality is implemented in a command line executable, which means that:

    1. It should be easy to create plugins for extensible editors like VSCode, Sublime Text, vim, emacs etc by wrapping calls to that executable. (In case anyone wants to give it a try...)
    2. The value of such plugins is not so big because you can do everything from command line anyway. For example, I use the following Makefile, so I can generate submission code and run tests with a single make test-debug. I also use the following config for vim-fswitch to quickly switch between sample input/output files:
    nnoremap <silent> <leader>f :FSHere<CR>
    augroup vimrc
        autocmd BufEnter *.in  let b:fswitchdst = 'out' | let b:fswitchlocs = '.'
        autocmd BufEnter *.out let b:fswitchdst = 'in'  | let b:fswitchlocs = '.'
    augroup END
    
»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Fixed in version 2.4.1:

  • An issue with initialization when a c++ compiler cannot be found.
  • Visual Studio 2019 compatibility for the extension
»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Awesome job, I wish I had known about this tool earlier.

I've noticed a bug where the inliner removes code which is only used inside static_assert's:

using int2 = int;                             // this line is removed in submission.cpp
static_assert(is_same<int2, int>::value, ""); // this line is kept, resulting in a compile error
  • »
    »
    7 лет назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    Thanks johannesk. I created a bug here.

    Note that there are two ways to work around bugs. You can mark a declaration with /// caide keep comment to always keep it, or you can mark a member of a class with /// caide concept comment to keep it as long as the class is used. Something like this may be an acceptable workaround:

    struct Types {
        /// caide concept
        using int2 = int;
        static_assert(is_same<int2, int>::value, "");
    };
    
    • »
      »
      »
      7 лет назад, скрыть # ^ |
       
      Проголосовать: нравится 0 Проголосовать: не нравится

      Thanks for the quick reply slycelote. Another inlining bug, this time with friend classes:

      template <typename T> struct A {}; // this is removed
      struct B { friend class A<int>; }; // the friend declaration is kept
      int main() { B b; } // only B is referenced
      

      (yes, I'm actually writing such code o.O)

      The workaround is perfectly fine for the time being, so it's not a big deal.

»
7 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

I am trying to use caide with CHelper browser extension. It seems that for GCJ website this coupling doesn't work. On VS General Output window I can see the following message every attempt to parse a problem:

'gcj3' not supported
»
6 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Version 2.5.0 is released on Github. I'll upload VS extension to the marketplace in a few days.

General
  • Default Competitive Companion port changed to 10043.
  • Fixes in CodeForces and CodeChef parsers
  • Fix incorrect parameter passthrough in default Topcoder test template
C++ inliner:
  • Update all builtin headers to latest versions (libstdc++ 10.1.0, MinGW 7.0, Clang 10.0). Allows using latest language and STL features.
  • Default language setting changed to C++17 (-std=c++17).
Visual Studio extension:
  • Drop compatibility with VS 2013 and VS 2015
  • Remove deprecation warning in VS 2019
  • Fix a regression when build output would go into the root directory of the disk
  • Double-clicking a caide solution will now properly activate Caide window.
  • Slightly better look in dark mode.
»
6 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

New in version 2.6.0:

  • Drop support for 32-bit Windows
  • Support 'regex' problem type for Competitive Companion
  • Fix CodeChef contest parser
  • Automatic check for updates in the command line application (can be disabled via config)

VS extension will be published shortly.

»
5 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

New in version 2.7.0:

  • Allow overriding problem ID when parsing
  • Display runtime per test
  • Add verbose_test_report option to display results of all tests rather than just failed ones
  • Fix hanging HTTP server on Windows
»
5 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Does it support Kotlin? İf can you please add it

»
5 лет назад, скрыть # |
 
Проголосовать: нравится +3 Проголосовать: не нравится

New in version 2.8:

  • Add warning when a template was updated both upstream and by the user
  • Display input file in main template for regex type
  • Autogenerate class constructor in C++ TopCoder template
  • Visual Studio extension:
    • Avoid VS crashes
    • Use colors (mostly) consistent with selected theme.
»
5 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Any idea why: LINK : fatal error LNK1104: cannot open file 'C:\Home\Caide2021\cpplib\Debug\cpplib.lib'

»
5 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Added support for VS 2022.

»
4 года назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

New in 2.10:

  • LeetCode support.
  • C++ inliner:
    • Preserve Topcoder class constructor and solution method automatically.
    • Pull all include directives to the beginning of inlined file.
  • VS extension:
    • (Regression fix) Automatically archive problem when VS project is deleted.
    • Avoid errors when trying to delete directories locked by another program (e.g. file explorer) or VS itself.
    • Minor UI improvements.
»
4 года назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can I use it on mac m1 pro chip ?