-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* refactor(#2615): Change datatypes from class to string * refactor(#2615): Move and rename data-type.service * refactor(#2615): Moving all data types to the data type service * refactor(#2615): Make semantic data type service static * refactor(#2615): Change data type names to upper case * refactor(#2615): Add geo variables to semantic type service * refactor(#2615): Rename classes semantic type and data type * fix: Fix linting * fix(#2651): Change import to platform-service * fix(#2651): Remove circular dependency
- Loading branch information
Showing
22 changed files
with
190 additions
and
243 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
ui/projects/streampipes/platform-services/src/lib/model/types/data-type.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
export class DataType { | ||
public static readonly XSD: string = 'http://www.w3.org/2001/XMLSchema#'; | ||
|
||
public static readonly INTEGER = this.XSD + 'integer'; | ||
public static readonly LONG = this.XSD + 'long'; | ||
public static readonly FLOAT = this.XSD + 'float'; | ||
public static readonly BOOLEAN = this.XSD + 'boolean'; | ||
public static readonly STRING = this.XSD + 'string'; | ||
public static readonly DOUBLE = this.XSD + 'double'; | ||
public static readonly NUMBER = this.XSD + 'number'; | ||
|
||
public static isNumberType(datatype: string): boolean { | ||
return ( | ||
datatype === DataType.DOUBLE || | ||
datatype === DataType.INTEGER || | ||
datatype === DataType.LONG || | ||
datatype === DataType.FLOAT || | ||
datatype === DataType.NUMBER | ||
); | ||
} | ||
|
||
public static isBooleanType(datatype: string): boolean { | ||
return datatype === DataType.BOOLEAN; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
ui/projects/streampipes/platform-services/src/lib/model/types/semantic-type.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
import { EventProperty } from '../gen/streampipes-model'; | ||
|
||
export class SemanticType { | ||
public static readonly SO: string = 'http://schema.org/'; | ||
public static readonly GEO: string = 'http://www.w3.org/2003/01/geo/'; | ||
|
||
public static readonly TIMESTAMP: string = SemanticType.SO + 'DateTime'; | ||
|
||
public static readonly SO_NUMBER: string = SemanticType.SO + 'Number'; | ||
public static readonly SO_URL: string = SemanticType.SO + 'URL'; | ||
|
||
public static readonly IMAGE: string = 'https://image.com'; | ||
|
||
public static readonly GEO_LAT: string = SemanticType.GEO + 'wgs84_pos#lat'; | ||
public static readonly GEO_LONG: string = | ||
SemanticType.GEO + 'wgs84_pos#long'; | ||
|
||
public static getValue(inputValue: any, semanticType: string) { | ||
if (semanticType === SemanticType.TIMESTAMP) { | ||
return new Date(inputValue).toLocaleString(); | ||
} else { | ||
return inputValue; | ||
} | ||
} | ||
|
||
public static isTimestamp(property: EventProperty): boolean { | ||
return property.domainProperties.includes(SemanticType.TIMESTAMP); | ||
} | ||
|
||
public static isImage(property: EventProperty): boolean { | ||
return property.domainProperties.includes(SemanticType.IMAGE); | ||
} | ||
|
||
public static isNumber(property: EventProperty): boolean { | ||
return property.domainProperties.includes(SemanticType.SO_NUMBER); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.