如何从Chapel中的Record返回JSON字符串?

时间:2018-05-30 16:43:07

标签: json chapel

我将一些DTO记录定义为

record NodeDTO{
  var id: int,
      name: string,
      community: int;
}

record LinkDTO {
  var source: int,
      target: int,
      strength: real;
}

record GraphDTO {
  var nodes:[1..0] NodeDTO,
      links:[1..0] LinkDTO;
  proc init() {}
}

proc Graph.DTO() {
  var dto = new GraphDTO();
  for key in this.verts.keys {
    dto.nodes.push_back(new NodeDTO(id=this.verts.get(key), name=key, community=1));
    for nbs in this.neighbors(key).keys {
      dto.links.push_back(new LinkDTO(source=this.verts.get(key), target=this.verts.get(nbs), strength=1.0));
    }
  }
  return dto;
}

但是当我writeln(dto)我得到

(nodes = (id = 7, name = yondu, community = 1) (id = 1, name = star lord, community = 1) (id = 5, name = rocket, community =
 1) (id = 4, name = drax, community = 1) (id = 8, name = nebula, community = 1) (id = 3, name = groot, community = 1) (id = 2, name = gamora,
community = 1) (id = 6, name = mantis, community = 1), links = (source = 7, target = 8, strength = 1.0) (source = 1, target = 4, strength = 1.
0) (source = 1, target = 3, strength = 1.0) (source = 1, target = 2, strength = 1.0) (source = 5, target = 6, strength = 1.0) (source = 4, tar
get = 5, strength = 1.0) (source = 3, target = 4, strength = 1.0) (source = 2, target = 4, strength = 1.0) (source = 6, target = 7, strength =
 1.0) (source = 6, target = 8, strength = 1.0))

哪个不能正确解释为JSON。我正在使用Chrest作为Web服务器将其发送到浏览器。我怎样才能在字符串周围加上引号并完成所有不错的JSONy事情?

1 个答案:

答案 0 :(得分:3)

目前,Chapel的格式化I / O包括JSON支持。 (请注意,将来可能会将其拉出来改进界面)。请参阅general conversions section of the formatted I/O documentation。请注意,您可以使用string.formatreadfwritef来访问格式化的I / O.

在您的特定情况下,string.format可能是您想要的 - 例如"%jt\n".format(dto)