OpenHPS/openhps-rdf

View on GitHub

Showing 62 of 157 total issues

Function objectPatterns has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

                ).map((predicate) => {
                    const patterns: Pattern[] = [];
                    const selectorPatterns = this.generateSelector(query, predicate, dataType, member, subject);
                    if (selectorPatterns.length > 0) {
                        patterns.push(...selectorPatterns);
Severity: Minor
Found in src/service/SPARQLGenerator.ts - About 1 hr to fix

    Function deserializer has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            deserializer: (thing: Thing) => {
                let yaw = 0;
                let roll = 0;
                let pitch = 0;
                let unit: AngleUnit;
    Severity: Minor
    Found in src/mapping/RelativeOrientation.ts - About 1 hr to fix

      Function serializeLiteral has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          serializeLiteral(
              sourceObject: any,
              typeDescriptor?: TypeDescriptor,
              memberName?: string,
              serializer?: Serializer,
      Severity: Minor
      Found in src/rdf/InternalRDFSerializer.ts - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function regexPatterns has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                          (predicate) => {
                              return [
                                  {
                                      type: 'bgp',
                                      triples: [
      Severity: Minor
      Found in src/service/SPARQLGenerator.ts - About 1 hr to fix

        Function loadClasses has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected static loadClasses(module: NodeModule = require.main): void {
                if (module === undefined) {
                    // Use cache instead
                    Object.values(require.cache).map((m) => this.loadClasses(m));
                    return;
        Severity: Minor
        Found in src/rdf/RDFModelSerializer.ts - About 1 hr to fix

          Function serializer has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  serializer: (pos: GeographicalPosition) => {
                      if (pos.altitude) {
                          return {
                              predicates: {
                                  [ogc.asWKT]: [
          Severity: Minor
          Found in src/mapping/GeographicalPosition.ts - About 1 hr to fix

            Function convertSingleValue has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                convertSingleValue(
                    sourceObject: any,
                    typeDescriptor: TypeDescriptor,
                    knownTypes: Map<string, Serializable<any>>,
                    memberName = 'object',
            Severity: Minor
            Found in src/rdf/InternalRDFDeserializer.ts - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function serializer has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                serializer: (rdf: RDFMetadata) => {
                    if (!rdf) {
                        return undefined;
                    }
            
            
            Severity: Minor
            Found in src/mapping/DataObject.ts - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function createConstruct has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                protected createConstruct(query: FilterQuery, dataType?: Serializable<T>): ConstructQuery {
                    const patterns: Pattern[] = [];
                    // Create a pattern for the datatype
                    const finalDataType = dataType || this.dataType;
                    if (finalDataType) {
            Severity: Minor
            Found in src/service/SPARQLGenerator.ts - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function deserializer has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                    deserializer: (thing: Thing) => {
                        let yaw = 0;
                        let roll = 0;
                        let pitch = 0;
                        let unit: AngleUnit;
            Severity: Minor
            Found in src/mapping/RelativeOrientation.ts - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function deserializer has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                    deserializer: (thing: Thing) => {
                        let yaw = 0;
                        let roll = 0;
                        let pitch = 0;
                        let unit: AngleUnit;
            Severity: Minor
            Found in src/mapping/Orientation.ts - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function getTs has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            export function getTs(node: NamedNode, store: Store, namespace: string, entityTypes: { [alias: string]: string }): string {
                const types = store.getObjects(node, 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type', null);
                const entityType = types.length > 0 ? Object.entries(entityTypes).find(
                    ([_alias, type]) => type === types[0].id,
                ) : undefined;
            Severity: Minor
            Found in src/bin/getTs.ts - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function createChangeLog has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            export function createChangeLog(store: Store): Store & RDFChangeLog {
                // Add a changelog to the store
                (store as any).additions = [];
                (store as any).deletions = [];
            
            
            Severity: Minor
            Found in src/rdf/ChangeLog.ts - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Avoid too many return statements within this function.
            Open

                        return this.deserializeObject(
                            sourceObject,
                            typeDescriptor,
                            knownTypes,
                            memberName,
            Severity: Major
            Found in src/rdf/InternalRDFDeserializer.ts - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return false;
              Severity: Major
              Found in src/rdf/InternalRDFDeserializer.ts - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                            return serializer(sourceObject, typeDescriptor, memberName, this, memberOptions, serializerOptions);
                Severity: Major
                Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                              return this.serializeObject(
                                  sourceObject,
                                  typeDescriptor,
                                  memberName,
                                  this,
                  Severity: Major
                  Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                    return output as NamedNode;
                    Severity: Major
                    Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                      return mergeDeep(
                                          {
                                              termType: 'BlankNode',
                                              value: this.blankNode(undefined, serializerOptions).value,
                                              predicates: {},
                      Severity: Major
                      Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                return thing;
                        Severity: Major
                        Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language