Hi guys, actually I am updating my code to do a proper json file support. I am actually coding a class method to load a class from a json file AND an instance method as well to load value from json file.
The problem is, I don’t know how to implement that properly for the instance method. I am getting always a compilation error.
How can I perform that ?
The code:
module ISM
class FavouriteGroup
def_clone
include JSON::Serializable
property name : String
property softwares : Array(String)
def initialize(@name = ISM::Default::FavouriteGroup::Name, @softwares = Array(String).new)
end
def self.filePath(name = ISM::Default::FavouriteGroup::Name) : String
return Ism.settings.rootPath+ISM::Default::Path::FavouriteGroupsDirectory+name+".json"
end
def self.generateConfiguration(path = filePath)
file = File.open(path,"w")
self.new.to_json
file.close
end
def self.loadConfiguration(path = filePath)
if !File.exists?(path)
generateConfiguration(path)
end
return from_json(File.read(path))
end
def loadConfiguration(path = self.class.filePath)
if !File.exists?(path)
writeConfiguration(path)
end
self = self.class.from_json(File.read(path))
end
def writeConfiguration(path = self.class.filePath)
file = File.open(path,"w")
to_json(file)
file.close
end
end
end
As I expected, we cannot do that:
self = self.class.from_json(File.read(path))
But how can I perform that ?