klitsche/clang-ffi

View on GitHub

Showing 28 of 28 total issues

File constants.php has 2115 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * This file is generated! Do not edit directly.
 */

Severity: Major
Found in src/FFI/constants.php - About 5 days to fix

    File Methods.php has 1511 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * This file is generated! Do not edit directly.
     */
    
    
    Severity: Major
    Found in src/FFI/Methods.php - About 4 days to fix

      CXCursor has 27 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class CXCursor
      {
          private CData $cxCursor;
      
          public function __construct(CData $cxCursor)
      Severity: Minor
      Found in src/CXCursor.php - About 3 hrs to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

            public function clang_indexSourceFile($arg0, $client_data, ?\FFI\CData $index_callbacks, ?int $index_callbacks_size, ?int $index_options, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?\FFI\CData $out_TU, ?int $TU_options): ?int
            {
                return static::getFFI()->clang_indexSourceFile($arg0, $client_data, $index_callbacks, $index_callbacks_size, $index_options, $source_filename, $command_line_args, $num_command_line_args, $unsaved_files, $num_unsaved_files, $out_TU, $TU_options);
            }
        Severity: Major
        Found in src/FFI/Methods.php and 1 other location - About 2 hrs to fix
        src/FFI/Methods.php on lines 3108..3111

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 132.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

            public function clang_indexSourceFileFullArgv($arg0, $client_data, ?\FFI\CData $index_callbacks, ?int $index_callbacks_size, ?int $index_options, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?\FFI\CData $out_TU, ?int $TU_options): ?int
            {
                return static::getFFI()->clang_indexSourceFileFullArgv($arg0, $client_data, $index_callbacks, $index_callbacks_size, $index_options, $source_filename, $command_line_args, $num_command_line_args, $unsaved_files, $num_unsaved_files, $out_TU, $TU_options);
            }
        Severity: Major
        Found in src/FFI/Methods.php and 1 other location - About 2 hrs to fix
        src/FFI/Methods.php on lines 3088..3091

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 132.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Method internalRun has 48 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function internalRun(): int
            {
                $this->config[PHP_OS_FAMILY]['clangBin'] = $this->detectClang();
        
                if (empty($this->config[PHP_OS_FAMILY]['clangBin'])) {
        Severity: Minor
        Found in src/FFI/libclang/Compiler.php - About 1 hr to fix

          Method clang_indexSourceFile has 12 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function clang_indexSourceFile($arg0, $client_data, ?\FFI\CData $index_callbacks, ?int $index_callbacks_size, ?int $index_options, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?\FFI\CData $out_TU, ?int $TU_options): ?int
          Severity: Major
          Found in src/FFI/Methods.php - About 1 hr to fix

            Method clang_indexSourceFileFullArgv has 12 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public function clang_indexSourceFileFullArgv($arg0, $client_data, ?\FFI\CData $index_callbacks, ?int $index_callbacks_size, ?int $index_options, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?\FFI\CData $out_TU, ?int $TU_options): ?int
            Severity: Major
            Found in src/FFI/Methods.php - About 1 hr to fix

              Method __construct has 9 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                      string $usr,
                      int $kind,
                      string $kindSpelling,
                      string $typeSpelling,
                      int $typeKind,
              Severity: Major
              Found in examples/Json/Node.php - About 1 hr to fix

                Method detectClang has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    protected function detectClang(): ?string
                    {
                        $clangBins = [
                            'clang-13',
                            'clang-12',
                Severity: Minor
                Found in src/FFI/libclang/Compiler.php - About 1 hr to fix

                  Method clang_parseTranslationUnit2FullArgv has 8 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      public function clang_parseTranslationUnit2FullArgv($CIdx, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?int $options, ?\FFI\CData $out_TU): int
                  Severity: Major
                  Found in src/FFI/Methods.php - About 1 hr to fix

                    Method clang_parseTranslationUnit2 has 8 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        public function clang_parseTranslationUnit2($CIdx, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?int $options, ?\FFI\CData $out_TU): int
                    Severity: Major
                    Found in src/FFI/Methods.php - About 1 hr to fix

                      Method clang_getDefinitionSpellingAndExtent has 7 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          public function clang_getDefinitionSpellingAndExtent(?\FFI\CData $arg0, ?\FFI\CData $startBuf, ?\FFI\CData $endBuf, ?\FFI\CData $startLine, ?\FFI\CData $startColumn, ?\FFI\CData $endLine, ?\FFI\CData $endColumn): void
                      Severity: Major
                      Found in src/FFI/Methods.php - About 50 mins to fix

                        Method clang_codeCompleteAt has 7 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            public function clang_codeCompleteAt(?\FFI\CData $TU, ?string $complete_filename, ?int $complete_line, ?int $complete_column, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?int $options): ?\FFI\CData
                        Severity: Major
                        Found in src/FFI/Methods.php - About 50 mins to fix

                          Method clang_parseTranslationUnit has 7 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              public function clang_parseTranslationUnit($CIdx, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?int $options): ?\FFI\CData
                          Severity: Major
                          Found in src/FFI/Methods.php - About 50 mins to fix

                            Method clang_getCursorPlatformAvailability has 7 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                                public function clang_getCursorPlatformAvailability(?\FFI\CData $cursor, ?\FFI\CData $always_deprecated, ?\FFI\CData $deprecated_message, ?\FFI\CData $always_unavailable, ?\FFI\CData $unavailable_message, ?\FFI\CData $availability, ?int $availability_size): ?int
                            Severity: Major
                            Found in src/FFI/Methods.php - About 50 mins to fix

                              Method clang_indexTranslationUnit has 6 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                                  public function clang_indexTranslationUnit($arg0, $client_data, ?\FFI\CData $index_callbacks, ?int $index_callbacks_size, ?int $index_options, ?\FFI\CData $arg5): ?int
                              Severity: Minor
                              Found in src/FFI/Methods.php - About 45 mins to fix

                                Method clang_indexLoc_getFileLocation has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                    public function clang_indexLoc_getFileLocation(?\FFI\CData $loc, $indexFile, $file, ?\FFI\CData $line, ?\FFI\CData $column, ?\FFI\CData $offset): void
                                Severity: Minor
                                Found in src/FFI/Methods.php - About 45 mins to fix

                                  Method clang_createTranslationUnitFromSourceFile has 6 arguments (exceeds 4 allowed). Consider refactoring.
                                  Open

                                      public function clang_createTranslationUnitFromSourceFile($CIdx, ?string $source_filename, ?int $num_clang_command_line_args, ?\FFI\CData $clang_command_line_args, ?int $num_unsaved_files, ?\FFI\CData $unsaved_files): ?\FFI\CData
                                  Severity: Minor
                                  Found in src/FFI/Methods.php - About 45 mins to fix

                                    Similar blocks of code found in 2 locations. Consider refactoring.
                                    Open

                                        public function clang_parseTranslationUnit2FullArgv($CIdx, ?string $source_filename, ?\FFI\CData $command_line_args, ?int $num_command_line_args, ?\FFI\CData $unsaved_files, ?int $num_unsaved_files, ?int $options, ?\FFI\CData $out_TU): int
                                        {
                                            return static::getFFI()->clang_parseTranslationUnit2FullArgv($CIdx, $source_filename, $command_line_args, $num_command_line_args, $unsaved_files, $num_unsaved_files, $options, $out_TU);
                                        }
                                    Severity: Minor
                                    Found in src/FFI/Methods.php and 1 other location - About 40 mins to fix
                                    src/FFI/Methods.php on lines 759..762

                                    Duplicated Code

                                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                    Tuning

                                    This issue has a mass of 93.

                                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                    Refactorings

                                    Further Reading

                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language