Skip to content

Commit

Permalink
Integration of CPPSDK support (#176)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Generalized templating engine to support both JavaScript and CPP (and other languages).

* chore: Copy JS templates to C and create language.config.json

* feat(languages): Add support for a distinct JSON-type for each schema

Also started tweaking C templates and adding a few useful macros.

* chore: Dropped debug logs

* fix: Stop passing non-schemas in to getSchemaType

* feat(accessors): New macro section for schema property accessors

* fix: Sort the macrofied schemas based on schema refs (#90)

* fix: Sort the macrofied schemas based on schema refs

* fix: Sort the schemas before macrofying

* fix: Handle the schemas part

* Enum fixes (#93)

Enum fixes :
1. missing description added
2. alignment fixes
3. implementation added for enum inside properties
4. Enum to String value Conversion logic added for C

* Types and Accessor related fixes (#94)

Types and Accessor related fixes:
1. Accessor creation
2. JsonContainer creation
3. Types order placed based on depenedencies
4. filtered redundant new lines
5. UnamedSchema issue fixes
6. Types and Accessors:  generation added for objects inside methods result/params
7. AnyOf support added

* Static code implementation updates (#96)

Static code implementation updates
Co-authored-by: Jeremy LaCivita <jeremy.lacivita@comcast.com>

* Add support to generate file inclusion for common schema also (#97)

Add support to generate file inclusion for common schema also

* C-Language: Templates based property methods (#100)

* feat: Add method templates for properties

* feat: Property setters using templates

* fix: Macro name correction

* Add support to keep original file permissions of template/sdk files (#99)

* Event template implementation added (#101)

* Template for Polymorphic pull method (#102)

* feat: Add method templates for properties

* feat: Property setters using templates

* fix: Macro name correction

* feat: Add template for polymorphic-pull

* fix: In progress commit

* fix: Promote and name sub-schemas in one place

* fix: Add extractSubSchemas flag to C language

* fix: Uncomment writeFilePermissions

* polymorphic-pull: method and event implementation added (#107)

* SchemaSorting: logic updated to consider all schemas (#106)

* fix: Fix the reentrancy of methods from callback (#105)

* Default template implementation added (#103)

Default template implementation added

* feat(macrofier): Add dynamic schema template output

* Naming + void* to struct* changes based on sky review, removed redundant code, array handling fix (#109)

Naming + void* to struct* changes based on sky review, removed redundant code, array handling fix

* language-c: re-arrange files locations (#112)

language-c: re-arrange files locations

* fixes to generate array inside subschemas (#111)

* include test always (#113)

* use String type if there is any issue with anyOf merge (#114)

* calls-metrics: support added (#115)

* Generate polymorphci methods for anyOf param/result case (#110)

* fix: Split c-structs from c (w/ Accessors)

* fix: Latest work

* chore: Copy JS templates to C and create language.config.json

* feat(languages): Add support for a distinct JSON-type for each schema

Also started tweaking C templates and adding a few useful macros.

* chore: Dropped debug logs

* fix: Stop passing non-schemas in to getSchemaType

* feat(accessors): New macro section for schema property accessors

* fix: Sort the macrofied schemas based on schema refs (#90)

* fix: Sort the macrofied schemas based on schema refs

* fix: Sort the schemas before macrofying

* fix: Handle the schemas part

* Enum fixes (#93)

Enum fixes :
1. missing description added
2. alignment fixes
3. implementation added for enum inside properties
4. Enum to String value Conversion logic added for C

* Types and Accessor related fixes (#94)

Types and Accessor related fixes:
1. Accessor creation
2. JsonContainer creation
3. Types order placed based on depenedencies
4. filtered redundant new lines
5. UnamedSchema issue fixes
6. Types and Accessors:  generation added for objects inside methods result/params
7. AnyOf support added

* Static code implementation updates (#96)

Static code implementation updates
Co-authored-by: Jeremy LaCivita <jeremy.lacivita@comcast.com>

* Add support to generate file inclusion for common schema also (#97)

Add support to generate file inclusion for common schema also

* C-Language: Templates based property methods (#100)

* feat: Add method templates for properties

* feat: Property setters using templates

* fix: Macro name correction

* Add support to keep original file permissions of template/sdk files (#99)

* Event template implementation added (#101)

* Template for Polymorphic pull method (#102)

* feat: Add method templates for properties

* feat: Property setters using templates

* fix: Macro name correction

* feat: Add template for polymorphic-pull

* fix: Promote and name sub-schemas in one place

* fix: Add extractSubSchemas flag to C language

* fix: Uncomment writeFilePermissions

* polymorphic-pull: method and event implementation added (#107)

* SchemaSorting: logic updated to consider all schemas (#106)

* fix: Fix the reentrancy of methods from callback (#105)

* Default template implementation added (#103)

Default template implementation added

* Naming + void* to struct* changes based on sky review, removed redundant code, array handling fix (#109)

Naming + void* to struct* changes based on sky review, removed redundant code, array handling fix

* language-c: re-arrange files locations (#112)

language-c: re-arrange files locations

* fixes to generate array inside subschemas (#111)

* include test always (#113)

* use String type if there is any issue with anyOf merge (#114)

* calls-metrics: support added (#115)

* Generate polymorphci methods for anyOf param/result case (#110)

* Create namespaces only if there is value to put (#117)

* Changes to avoid duplication of sub-array schema with same reference (#116)

* detach setter declaration from property template and add setter templ… (#118)

Detach setter declaration from property template and add setter template, remove unredundant warnings
Cleanup changes, add separator between prefix and subSchema name generation
Introduce excludeDeclarations flag to handle declaration exclusion specific to language
Alignement changes + cleanup + OUT params support added to differentiate method signature parameters
Update in static code

* SubArray generation issue fix (#121)

* cmake changes to install proper files (#119)

* chore: Copy JS templates to C and create language.config.json

* feat(languages): Add support for a distinct JSON-type for each schema

Also started tweaking C templates and adding a few useful macros.

* chore: Dropped debug logs

* fix: Stop passing non-schemas in to getSchemaType

* feat(accessors): New macro section for schema property accessors

* fix: Sort the macrofied schemas based on schema refs (#90)

* fix: Sort the macrofied schemas based on schema refs

* fix: Sort the schemas before macrofying

* fix: Handle the schemas part

* Enum fixes (#93)

Enum fixes :
1. missing description added
2. alignment fixes
3. implementation added for enum inside properties
4. Enum to String value Conversion logic added for C

* Types and Accessor related fixes (#94)

Types and Accessor related fixes:
1. Accessor creation
2. JsonContainer creation
3. Types order placed based on depenedencies
4. filtered redundant new lines
5. UnamedSchema issue fixes
6. Types and Accessors:  generation added for objects inside methods result/params
7. AnyOf support added

* Static code implementation updates (#96)

Static code implementation updates
Co-authored-by: Jeremy LaCivita <jeremy.lacivita@comcast.com>

* Add support to generate file inclusion for common schema also (#97)

Add support to generate file inclusion for common schema also

* C-Language: Templates based property methods (#100)

* feat: Add method templates for properties

* feat: Property setters using templates

* fix: Macro name correction

* Add support to keep original file permissions of template/sdk files (#99)

* Event template implementation added (#101)

* Template for Polymorphic pull method (#102)

* feat: Add method templates for properties

* feat: Property setters using templates

* fix: Macro name correction

* feat: Add template for polymorphic-pull

* fix: Promote and name sub-schemas in one place

* fix: Add extractSubSchemas flag to C language

* fix: Uncomment writeFilePermissions

* polymorphic-pull: method and event implementation added (#107)

* SchemaSorting: logic updated to consider all schemas (#106)

* fix: Fix the reentrancy of methods from callback (#105)

* Default template implementation added (#103)

Default template implementation added

* Naming + void* to struct* changes based on sky review, removed redundant code, array handling fix (#109)

Naming + void* to struct* changes based on sky review, removed redundant code, array handling fix

* language-c: re-arrange files locations (#112)

language-c: re-arrange files locations

* fixes to generate array inside subschemas (#111)

* include test always (#113)

* use String type if there is any issue with anyOf merge (#114)

* calls-metrics: support added (#115)

* Generate polymorphci methods for anyOf param/result case (#110)

* Create namespaces only if there is value to put (#117)

* Changes to avoid duplication of sub-array schema with same reference (#116)

* detach setter declaration from property template and add setter templ… (#118)

Detach setter declaration from property template and add setter template, remove unredundant warnings
Cleanup changes, add separator between prefix and subSchema name generation
Introduce excludeDeclarations flag to handle declaration exclusion specific to language
Alignement changes + cleanup + OUT params support added to differentiate method signature parameters
Update in static code

* SubArray generation issue fix (#121)

* cmake changes to install proper files (#119)

* native code: changed return type from uint32_t to int32_t (#127)

* fix: Provider Interfaces and Tuples in JS

* feat: Initial commit of cpp sdk

* feat: Fix issues in generated headers

* CPPSDK: static code + template changes (#137)

* CPPSDK: static code + template changes

* CPPSDK: static code updates

* CPPSDK: updates in error handling

* CPPSDK: namespace settings changes (#135)

* CPP SDK : changes to handle additional Properties (#134)

CPP SDK : changes to handle additional Properties

* CPPSDK: parameter and result handling changes (#136)

CPPSDK:
1. parameter and result handling changes
2. anyOf type handling
3. reference schema handling

* CPPSDK: aggregate files based on suffix type handling added, module and override module generation also handled (#139)

CPPSDK: aggregate files based on suffix type handling added, module and override module generation also handled

* CPPSDK: changes to handle enum and x-schema enum without title (#138)

* CPPSDK: parameter/result handling for method and events + inner object handling (#140)

* CPPSDK: template added for capabilties-method (#142)

* CPPSDK: method name changed to camel case (#144)

* CPPSDK: event name changed to camelcase (#145)

* CPPSDK: add overrideRule to handle template generation + remove enum level checking (#141)

1. Add properties to the template only if object has properties or additionalProperties
2. use primitive types from templates, instead defined variable

* CPPSDK: remove const from return type (#149)

* CPPSDK: typo fix (#150)

* CPPSDK: handle empty properties and propertyNames with templates (#152)

* CPPSDK: code generation template and engine changes (#151)

1. Callback generation + types: with generation changes + template updates
2.Set title for properties inside x-schemas

* CPPSDK: template updates based on more complex schema generation (#153)

* CPPSDK: polymorphic-pull method/event generation support added (#154)

* CPPSDK: provider support added (#156)

* CPPSDK: check jsonrpc response values are set or not before assigning based on optional types (#157)

* fix: Copy allow-focus tag to use methods

* CPPSDK: calls metrics support added (#158)

* CPPSDK: calls metrics support added

* CPPSDK: handle patternProperties (#160)

* CPPSDK: polymorphic method schema creation changes (#159)

* CPPSDK: changes to handle context params (#161)

* CPPSDK: warning fix during promoteAndNameSubSchemas (#163)

* Check template for codeblocks exists or not before trying to generate (#164)

* Optimization of generation time: generate macros only based on the schemhema template requirement if it is set (#165)

* Updates based on MAC testing (#167)

* CPPSDK: proceed to install only the build is successfully done and some cleanup (#169)

* merge conflict fixes

* feature/cpp branch alignment based on next branch merging for both openrpc and apis (#171)

* CPPSDK: update install script to handle version parsing for file based and prebuild install cases (#173)

* Update to align generated firebolt.d.ts sync with same is next branch (#172)

* CPPSDK : Add Async communication support and CPP code generation for x-uses + x-allow-focus=true (#170)

---------

Co-authored-by: Jeremy LaCivita <jeremy.lacivita@comcast.com>
Co-authored-by: sramani-metro <71630728+sramani-metro@users.noreply.github.com>
Co-authored-by: Santhosh Ramani <s.ramani@metrological.com>
  • Loading branch information
4 people committed Mar 26, 2024
1 parent 189eed2 commit 89294cc
Show file tree
Hide file tree
Showing 549 changed files with 10,918 additions and 315 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules/*
.DS_Store
.DS_Store
coverage
.vscode/settings.json
27 changes: 27 additions & 0 deletions languages/c-structs/language.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "C",
"langcode": "c",
"createModuleDirectories": false,
"extractSubSchemas": true,
"unwrapResultObjects": true,
"convertTuplesToArraysOrObjects": true,
"templatesPerModule": [
"/include/module.h",
"/src/module.cpp"
],
"templatesPerSchema": [
"/include/common/module.h",
"/src/module_common.cpp",
"/src/jsondata_module.h"
],
"persistPermission": true,
"primitives": {
"boolean": "bool",
"integer": "int",
"number": "float",
"string": "char*"
},
"additionalSchemaTemplates": [
"json-types"
]
}
19 changes: 19 additions & 0 deletions languages/c-structs/src/index.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
* Copyright 2021 Comcast Cable Communications Management, LLC
*
* Licensed 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.
*
* SPDX-License-Identifier: Apache-2.0
*/

export { default as Transport } from './shared/Transport/index.mjs'
1 change: 1 addition & 0 deletions languages/c-structs/templates/codeblocks/export.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ${info.title} } from './${info.title}/index.mjs'
1 change: 1 addition & 0 deletions languages/c-structs/templates/codeblocks/mock-import.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import { default as _${info.title} } from './${info.title}/defaults.mjs'
1 change: 1 addition & 0 deletions languages/c-structs/templates/codeblocks/mock-parameter.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${info.title}: _${info.title},
Empty file.
9 changes: 9 additions & 0 deletions languages/c-structs/templates/codeblocks/setter.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* ${method.name} - ${method.description} */
uint32_t ${info.title}_${method.Name}( ${method.signature.params} )
{
const string method = _T("${info.title}.${method.name}");
${if.params}
${method.params.serialization}
${end.if.params}
return FireboltSDK::Properties::Set(method, jsonParameters);
}
Empty file.
5 changes: 5 additions & 0 deletions languages/c-structs/templates/declarations/default.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* ${method.summary}
* ${method.params}
*/
int F${info.title}_${method.Name}(${method.signature.params}${if.result.properties}${if.params}, ${end.if.params}${end.if.result.properties}${method.result.properties});
4 changes: 4 additions & 0 deletions languages/c-structs/templates/declarations/event.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* ${method.name} - ${method.description} */
typedef void (*F${info.Title}${method.Name}Callback)( const void* userData, ${event.signature.callback.params}${if.event.params}, ${end.if.event.params}${method.result.properties} );
int F${info.title}_Register_${method.Name}( ${event.signature.params}${if.event.params}, ${end.if.event.params}F${info.Title}${method.Name}Callback userCB, const void* userData );
int F${info.title}_Unregister_${method.Name}( F${info.Title}${method.Name}Callback userCB);
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* ${method.summary}
* ${method.params}
*/
int F${info.title}_${method.Name}(${method.signature.params}${if.result.properties}${if.params}, ${end.if.params}${end.if.result.properties}${method.result.properties});
5 changes: 5 additions & 0 deletions languages/c-structs/templates/declarations/property.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* ${method.summary}
* ${method.params}
*/
int F${info.title}_Get${method.Name}(${method.signature.params}${if.params}, ${end.if.params}${method.result.properties});
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions languages/c-structs/templates/imports/default.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "jsondata_${info.title.lowercase}.h"
1 change: 1 addition & 0 deletions languages/c-structs/templates/imports/default.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "common/${info.title.lowercase}.h"
1 change: 1 addition & 0 deletions languages/c-structs/templates/imports/default.jsondata
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "jsondata_${info.title.lowercase}.h"
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// need cpp code to init, get, set, clear additional properties...
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/anyOf.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* AnyOf is not supported in C: ${title} */
4 changes: 4 additions & 0 deletions languages/c-structs/templates/json-types/array.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
uint32_t ${info.Title}_${Title}Array_Size(${type} handle);
${type} ${title}Array_Get(${type} handle, uint32_t index);
void ${info.Title}_${Title}Array_Add(${propertyType} handle, ${valueType} value);
void ${info.Title}_${Title}Array_Clear(${propertyType} handle);
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/boolean.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WPEFramework::Core::JSON::Boolean
Empty file.
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/default.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${shape}
4 changes: 4 additions & 0 deletions languages/c-structs/templates/json-types/enum.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* ${title} ${description} */
ENUM_CONVERSION_BEGIN(${name})
{ ${NAME}_${key}, _T("${value}") },
ENUM_CONVERSION_END(${name})
4 changes: 4 additions & 0 deletions languages/c-structs/templates/json-types/enum.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* ${title} ${description} */
typedef enum {
${NAME}_${key},
} ${name};
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/float.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WPEFramework::Core::JSON::Float
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/integer.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WPEFramework::Core::JSON::DecSInt32
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/namespace.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FireboltSDK::${info.Title}::
25 changes: 25 additions & 0 deletions languages/c-structs/templates/json-types/object.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class ${title}: public WPEFramework::Core::JSON::Container {
public:
~${title}() override = default;

public:
${title}()
: WPEFramework::Core::JSON::Container()
{
${properties.register}
}

${title}(const ${title}& other)
{
${properties.assign}
}

${title}& operator=(const ${title}& other)
{
${properties.assign}
return (*this);
}

public:
${properties}
};
Empty file.
2 changes: 2 additions & 0 deletions languages/c-structs/templates/json-types/property-assign.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Add(_T("${property}"), &${Property});
${Property} = other.${Property}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add(_T("${property}"), &${Property});
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/property.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${title} ${Property};
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/ref.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${shape}
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/string.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FireboltSDK::JSON::String
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/title.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
JsonData_${Title}
25 changes: 25 additions & 0 deletions languages/c-structs/templates/json-types/tuple.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class ${title}: public WPEFramework::Core::JSON::Container {
public:
~${title}() override = default;

public:
${title}()
: WPEFramework::Core::JSON::Container()
{
${properties.register}
}

${title}(const ${title}& other)
{
${properties.assign}
}

${title}& operator=(const ${title}& other)
{
${properties.assign}
return (*this);
}

public:
${properties}
};
Empty file.
1 change: 1 addition & 0 deletions languages/c-structs/templates/json-types/x-method.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
void*
1 change: 1 addition & 0 deletions languages/c-structs/templates/language/enum-item.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${key}
3 changes: 3 additions & 0 deletions languages/c-structs/templates/language/enum.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
typedef enum {
${items}
} F${info.title}_${title};
1 change: 1 addition & 0 deletions languages/c-structs/templates/language/parameter.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${type} ${name}
1 change: 1 addition & 0 deletions languages/c-structs/templates/language/schema-item.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${type} ${property};
3 changes: 3 additions & 0 deletions languages/c-structs/templates/language/schema.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
typedef struct {
${properties}
} F${info.title}_${title};
Empty file.
24 changes: 24 additions & 0 deletions languages/c-structs/templates/methods/default.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* ${method.name} - ${method.description} */
int F${info.title}_${method.Name}(${method.signature.params}${if.result.properties}${if.params}, ${end.if.params}${end.if.result.properties}${method.result.properties}) {
int status = FireboltSDKErrorUnavailable;
FireboltSDK::Transport<WPEFramework::Core::JSON::IElement>* transport = FireboltSDK::Accessor::Instance().GetTransport();
if (transport != nullptr) {

JsonObject jsonParameters;

${if.params}
${method.params.json}
${end.if.params}

WPEFramework::Core::JSON::Boolean jsonResult;
status = transport->Invoke("${info.title}.${method.name}", jsonParameters, jsonResult);
if (status == FireboltSDKErrorNone) {
*success = jsonResult.Value();
}

} else {
FIREBOLT_LOG_ERROR(FireboltSDK::Logger::Category::OpenRPC, FireboltSDK::Logger::Module<FireboltSDK::Accessor>(), "Error in getting Transport err = %d", status);
}

return status;
}
26 changes: 26 additions & 0 deletions languages/c-structs/templates/methods/event.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* ${method.name} - ${method.description} */
static void F${info.Title}${method.Name}InnerCallback( void* userCB, const void* userData, void* response )
{
${event.callback.params.serialization}
ASSERT(jsonResponse->IsValid() == true);
if (jsonResponse->IsValid() == true) {
${event.callback.result.instantiation}
${info.Title}${method.Name}Callback callback = reinterpret_cast<${info.Title}${method.Name}Callback>(userCB);
callback(userData, ${event.callback.response.instantiation});
}
}
int F${info.title}_Register_${method.Name}( ${event.signature.params}${if.event.params}, ${end.if.event.params}${info.Title}${method.Name}Callback userCB, const void* userData )
{
const string eventName = _T("${info.title}.${method.name}");
int status = FireboltSDKErrorNone;

if (userCB != nullptr) {
${event.params.serialization}
status = FireboltSDK::Event::Instance().Subscribe<${event.result.json.type}>(eventName, jsonParameters, ${info.Title}${method.Name}InnerCallback, reinterpret_cast<void*>(userCB), userData);
}
return status;
}
int F${info.title}_Unregister_${method.Name}( ${info.Title}${method.Name}Callback userCB)
{
return FireboltSDK::Event::Instance().Unsubscribe(_T("${info.title}.${method.name}"), reinterpret_cast<void*>(userCB));
}
Empty file.
Empty file.
Empty file.
21 changes: 21 additions & 0 deletions languages/c-structs/templates/methods/polymorphic-pull.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* ${method.name} - ${method.description} */
uint32_t ${info.title}_Push${method.Name}(${method.signature.params})
{
uint32_t status = FireboltSDKErrorUnavailable;
${if.params}
${method.params.serialization}
${end.if.params}
FireboltSDK::Transport<WPEFramework::Core::JSON::IElement>* transport = FireboltSDK::Accessor::Instance().GetTransport();
if (transport != nullptr) {
WPEFramework::Core::JSON::Boolean jsonResult;
status = transport->Invoke(_T("${info.title}.${method.name}"), jsonParameters, jsonResult);
if (status == FireboltSDKErrorNone) {
FIREBOLT_LOG_INFO(FireboltSDK::Logger::Category::OpenRPC, FireboltSDK::Logger::Module<FireboltSDK::Accessor>(), "${info.title}.${method.name} is successfully pushed with status as %d", jsonResult.Value());
status = (jsonResult.Value() == true) ? FireboltSDKErrorNone : FireboltSDKErrorNotSupported;
}
} else {
FIREBOLT_LOG_ERROR(FireboltSDK::Logger::Category::OpenRPC, FireboltSDK::Logger::Module<FireboltSDK::Accessor>(), "Error in getting Transport err = %d", status);
}

return status;
}
Empty file.
15 changes: 15 additions & 0 deletions languages/c-structs/templates/methods/property.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* ${method.name} - ${method.description} */
int F${info.title}_Get${method.Name}(${method.signature.params}${if.result.properties}${if.params}, ${end.if.params}${end.if.result.properties}${method.result.properties}) {
const string method = _T("${info.title}.${method.name}");
${if.params}${method.params.serialization}${end.if.params}
${method.result.json} jsonResult;
${if.params}int status = FireboltSDK::Properties::Get(method, jsonParameters, jsonResult);${end.if.params}
${if.params.empty}int status = FireboltSDK::Properties::Get(method, jsonResult);${end.if.params.empty}
if (status == FireboltSDKErrorNone) {
if (${method.result.name} != nullptr) {
${method.result.instantiation}
}
}
return status;
}
${method.setter}
Empty file.
Empty file.
Empty file.
41 changes: 41 additions & 0 deletions languages/c-structs/templates/modules/include/Module.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* Copyright 2023 Comcast Cable Communications Management, LLC
*
* Licensed 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.
*
* SPDX-License-Identifier: Apache-2.0
*/

#ifndef _${info.TITLE}_H
#define _${info.TITLE}_H

#include "Firebolt.h"
/* ${IMPORTS} */

#ifdef __cplusplus
extern "C" {
#endif

// Enums

/* ${ENUMS} */

/* ${TYPES} */

/* ${DECLARATIONS} */

#ifdef __cplusplus
}
#endif

#endif // Header Include Guard
Loading

0 comments on commit 89294cc

Please sign in to comment.