Skip to content

Commit

Permalink
Default template implementation added
Browse files Browse the repository at this point in the history
  • Loading branch information
HaseenaSainul committed Jul 6, 2023
1 parent 8db3860 commit 9c58bb4
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 40 deletions.
27 changes: 16 additions & 11 deletions languages/c/Types.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ function getSchemaType(schema, module, { name, prefix = '', destination, resultS
return info.type
}

function getSchemaTypeInfo(module = {}, json = {}, name = '', schemas = {}, prefix = '', options = {level: 0, descriptions: true, title: false, resultSchema: false, event: false}) {
function getSchemaTypeInfo(module = {}, json = {}, name = '', schemas = {}, prefix = '', options = { level: 0, descriptions: true, title: false, resultSchema: false, event: false}) {

if (json.schema) {
json = json.schema
Expand Down Expand Up @@ -314,7 +314,7 @@ function getSchemaTypeInfo(module = {}, json = {}, name = '', schemas = {}, pref
return getSchemaTypeInfo(module, union, '', schemas, '', options)
}
else if (json.oneOf) {
structure.type = 'char*'
structure.type = stringAsHandle ? getFireboltStringType() : 'char*'
structure.json.type = 'string'
return structure
}
Expand All @@ -331,7 +331,7 @@ function getSchemaTypeInfo(module = {}, json = {}, name = '', schemas = {}, pref
structure.namespace = (json.namespace ? json.namespace : getModuleName(module))
}
else {
structure.type = 'char*'
structure.type = stringAsHandle ? getFireboltStringType() : 'char*'
}
if (name) {
structure.name = capitalize(name)
Expand Down Expand Up @@ -371,13 +371,12 @@ function getSchemaShapeInfo(json, module, schemas = {}, { name = '', prefix = ''
if (json['$ref'][0] === '#') {
//Ref points to local schema
//Get Path to ref in this module and getSchemaType
const schema = getPath(json['$ref'], module, schemas)
const tname = schema.title || json['$ref'].split('/').pop()
let schema = getPath(json['$ref'], module, schemas)
const tName = schema.title || json['$ref'].split('/').pop()
if (json['$ref'].includes('x-schemas')) {
schema = (getRefModule(json['$ref'].split('/')[2]))
}

shape = getSchemaShapeInfo(schema, module, schemas, { name, prefix, merged, level, title, summary, descriptions, destination, section, enums })
shape = getSchemaShapeInfo(schema, module, schemas, { name: tName, prefix, merged, level, title, summary, descriptions, destination, section, enums })
}
}
//If the schema is a const,
Expand Down Expand Up @@ -423,7 +422,6 @@ function getSchemaShapeInfo(json, module, schemas = {}, { name = '', prefix = ''
let info = getSchemaTypeInfo(module, items, items.name || pname, schemas, prefix, {level : level, descriptions: descriptions, title: true})
if (info.type && info.type.length > 0) {
let objName = tName + '_' + capitalize(prop.title || pname)
let moduleName = info.namespace
info.json.namespace = info.namespace
let moduleProperty = getJsonTypeInfo(module, json, json.title || name, schemas, prefix)
let prefixName = ((prefix.length > 0) && items['$ref']) ? '' : prefix
Expand Down Expand Up @@ -533,10 +531,14 @@ function getSchemaShapeInfo(json, module, schemas = {}, { name = '', prefix = ''

if (info.type && info.type.length > 0) {
let type = getArrayElementSchema(json, module, schemas, info.name)
let arrayName = capitalize(name) + capitalize(type.type)
let objName = getTypeName(info.namespace, arrayName, prefix)
let arrayName = capitalize(info.name) + capitalize(type.type)
let namespace = info.namespace
if (type && type.type === 'object') {
namespace = getModuleName(module)
}
let objName = getTypeName(namespace, arrayName, prefix)
let tName = objName + 'Array'
let moduleName = info.namespace

info.json.namespace = info.namespace
let moduleProperty = getJsonTypeInfo(module, json, json.title || name, schemas, prefix)
let subModuleProperty = getJsonTypeInfo(module, j, j.title, schemas, prefix)
Expand Down Expand Up @@ -706,6 +708,9 @@ function getJsonTypeInfo(module = {}, json = {}, name = '', schemas, prefix = ''
structure.type = getJsonNativeType(json)
return structure
}
else {
structure.type = 'JsonObject'
}
return structure
}

Expand Down
2 changes: 1 addition & 1 deletion languages/c/src/types/ImplHelpers.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ function getResultInstantiation (name, nativeType, container, indentLevel = 3) {
impl += `${' '.repeat(indentLevel)}*resultPtr = WPEFramework::Core::ProxyType<${container}>::Create();\n`
impl += `${' '.repeat(indentLevel)}*(*resultPtr) = jsonResult;\n`
impl += `${' '.repeat(indentLevel)}*${name} = static_cast<${nativeType}>(resultPtr);`
} else {
} else if (nativeType) {
impl += `${' '.repeat(indentLevel)}*${name} = jsonResult.Value();`
}

Expand Down
6 changes: 2 additions & 4 deletions languages/c/templates/codeblocks/setter.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/* ${method.name} - ${method.description} */
uint32_t ${info.title}_${method.Name}( ${method.signature.params} )
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}
${if.params}${method.params.serialization}${end.if.params}
return FireboltSDK::Properties::Set(method, jsonParameters);
}
3 changes: 3 additions & 0 deletions languages/c/templates/declarations/default.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* ${method.name} - ${method.description}
${method.params.annotations}${if.deprecated} * @deprecated ${method.deprecation}${end.if.deprecated} */
uint32_t ${info.Title}_${method.Name}( ${method.signature.params}${if.result}${if.params}, ${end.if.params}${method.result.type}* ${method.result.name}${end.if.result}${if.signature.empty}void${end.if.signature.empty} );
33 changes: 15 additions & 18 deletions languages/c/templates/methods/default.c
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
/* ${method.name} - ${method.description} */
uint32_t ${info.title}_${method.Name}(${method.params.list}${if.params}, ${end.if.params}${method.result.type}* ${method.result.name}) {
uint32_t status = FireboltSDKErrorUnavailable;
FireboltSDK::Transport<WPEFramework::Core::JSON::IElement>* transport = FireboltSDK::Accessor::Instance().GetTransport();
if (transport != nullptr) {

JsonObject jsonParameters;
uint32_t ${info.Title}_${method.Name}( ${method.signature.params}${if.result}${if.params}, ${end.if.params}${method.result.type}* ${method.result.name}${end.if.result}${if.signature.empty}void${end.if.signature.empty} ) {

${if.params}
${method.params.json}
${end.if.params}
uint32_t status = FireboltSDKErrorUnavailable;
FireboltSDK::Transport<WPEFramework::Core::JSON::IElement>* transport = FireboltSDK::Accessor::Instance().GetTransport();
if (transport != nullptr) {

WPEFramework::Core::JSON::Boolean jsonResult;
status = transport->Invoke("${info.title}.${method.name}", jsonParameters, jsonResult);
if (status == FireboltSDKErrorNone) {
*success = jsonResult.Value();
}
${method.params.serialization.with.indent}
${method.result.json.type} jsonResult;
status = transport->Invoke("${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 invoked");
${method.result.instantiation}
}

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

return status;
return status;
}
2 changes: 1 addition & 1 deletion languages/c/templates/methods/property.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ${method.name} - ${method.description} */
uint32_t ${info.title}_Get${method.Name}( ${method.signature.params}${if.params}, ${end.if.params}${method.result.type}* ${method.result.name} )
uint32_t ${info.Title}_Get${method.Name}( ${method.signature.params}${if.params}, ${end.if.params}${method.result.type}* ${method.result.name} )
{
const string method = _T("${info.title}.${method.name}");
${if.params}${method.params.serialization}${end.if.params}
Expand Down
45 changes: 40 additions & 5 deletions src/macrofier/engine.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,37 @@ const getSchemas = compose(
getPath(['components', 'schemas']) // Maybe any
)

const getAllSchemas = (schema) => {
let methods = getMethods(schema)
let components = getSchemas(schema)
let allSchema = []

methods.map((schemas) => {
Object.entries(schemas).forEach( ([name, schema]) => {
if (schema.tags) {
schema.params.forEach(param => {
if (param.schema) {
let sch = Object.assign({}, param.schema)
sch.title = param.name
allSchema.push([param.name, sch])
}
})
if (schema.result.schema) {
let sch = Object.assign({}, schema.result.schema)
sch.title = schema.result.name
allSchema.push([schema.result.name, sch])
}
}
})
})
components.map((schemas) => {
Object.entries(schemas).forEach( ([name, schema]) => {
allSchema.push(schema)
})
})
return [allSchema]
}

// TODO: import from shared/modules.mjs
const isDeprecatedMethod = compose(
option(false),
Expand Down Expand Up @@ -608,18 +639,18 @@ const enumFinder = compose(
filter(([_key, val]) => isObject(val))
)

const generateEnums = (json, templates, options = { destination: '' }) => {
const generateEnums = (json, templates, options = { destination: '', includeAnonymous: false }) => {
const suffix = options.destination.split('.').pop()
return compose(
option(''),
options.includeAnonymous ? map(enm => enm): option(''),
map(val => {
let template = getTemplate(`/sections/enum.${suffix}`, templates)
return template ? template.replace(/\$\{schema.list\}/g, val.trimEnd()) : val
}),
map(reduce((acc, val) => acc.concat(val).concat('\n'), '')),
map(map((schema) => convertEnumTemplate(schema, suffix ? `/types/enum.${suffix}` : '/types/enum', templates))),
map(enumFinder),
getSchemas
options.includeAnonymous ? getAllSchemas: getSchemas
)(json)
}

Expand Down Expand Up @@ -1109,9 +1140,12 @@ function insertMethodMacros(template, methodObj, json, templates, examples = {})
.replace(/\$\{method\.params\.array\}/g, JSON.stringify(methodObj.params.map(p => p.name)))
.replace(/\$\{method\.params\.count}/g, methodObj.params ? methodObj.params.length : 0)
.replace(/\$\{if\.params\}(.*?)\$\{end\.if\.params\}/gms, method.params.length ? '$1' : '')
.replace(/\$\{if\.params.empty\}(.*?)\$\{end\.if\.params.empty\}/gms, method.params.length === 0 ? '$1' : '')
.replace(/\$\{if\.result\}(.*?)\$\{end\.if\.result\}/gms, resultType ? '$1' : '')
.replace(/\$\{if\.params\.empty\}(.*?)\$\{end\.if\.params\.empty\}/gms, method.params.length === 0 ? '$1' : '')
.replace(/\$\{if\.signature\.empty\}(.*?)\$\{end\.if\.signature\.empty\}/gms, (method.params.length === 0 && resultType === '') ? '$1' : '')
.replace(/\$\{if\.context\}(.*?)\$\{end\.if\.context\}/gms, event && event.params.length ? '$1' : '')
.replace(/\$\{method\.params\.serialization\}/g, serializedParams)
.replace(/\$\{method\.params\.serialization\.with\.indent\}/g, indent(serializedParams, ' '))
// Typed signature stuff
.replace(/\$\{method\.signature\}/g, types.getMethodSignature(methodObj, json, { isInterface: false, destination: state.destination, section: state.section }))
.replace(/\$\{method\.signature\.params\}/g, types.getMethodSignatureParams(methodObj, json, { destination: state.destination, section: state.section }))
Expand All @@ -1129,7 +1163,7 @@ function insertMethodMacros(template, methodObj, json, templates, examples = {})
.replace(/\$\{event\.callback\.params\.serialization\}/g, callbackSerializedParams)
.replace(/\$\{event\.callback\.result\.instantiation\}/g, callbackResultInst)
.replace(/\$\{event\.callback\.response\.instantiation\}/g, callbackResponseInst)
.replace(/\$\{info\.title\}/g, info.title)
.replace(/\$\{info\.title\}/g, info.title.toLowerCase())
.replace(/\$\{info\.Title\}/g, capitalize(info.title))
.replace(/\$\{info\.TITLE\}/g, info.title.toUpperCase())
.replace(/\$\{method\.property\.immutable\}/g, hasTag(methodObj, 'property:immutable'))
Expand All @@ -1149,6 +1183,7 @@ function insertMethodMacros(template, methodObj, json, templates, examples = {})
.replace(/\$\{event\.result\.type\}/, isEventMethod(methodObj) ? types.getSchemaType(result.schema, json, { name: result.name, destination: state.destination, event: true, description: methodObj.result.summary, asPath: false }) : '')
.replace(/\$\{event\.result\.json\.type\}/g, resultJsonType)
.replace(/\$\{method\.result\}/g, generateResult(result.schema, json, templates, { name: result.name }))
.replace(/\$\{method\.result\.json\.type\}/g, resultJsonType)
.replace(/\$\{method\.result\.instantiation\}/g, resultInst)
.replace(/\$\{method\.example\.value\}/g, JSON.stringify(methodObj.examples[0].result.value))
.replace(/\$\{method\.alternative\}/g, method.alternative)
Expand Down

0 comments on commit 9c58bb4

Please sign in to comment.