Esempio n. 1
0
 public DataCountTask() {
   super(null, Configurater.getInstance().getServletContext(), 0);
   projectService = (IprojectService) Component.getInstance("projectService", super.context);
   searchesService = (IsearchesService) Component.getInstance("searchesService", super.context);
   user =
       (TUser)
           searchesService.EntityQuery(
               TUser.class, Configurater.getInstance().getConfigValue("ws_user"));
   logger = searchesService.getLogManager(user).getLogger(DataCountTask.class);
 }
Esempio n. 2
0
  public DataCountTask(String taskName, ServletContext context, long period) {

    super(taskName, context, period);
    projectService = (IprojectService) Component.getInstance("projectService", super.context);
    searchesService = (IsearchesService) Component.getInstance("searchesService", super.context);
    user =
        (TUser)
            searchesService.EntityQuery(
                TUser.class, Configurater.getInstance().getConfigValue("ws_user"));
    logger = searchesService.getLogManager(user).getLogger(DataCountTask.class);
  }
Esempio n. 3
0
  @Override
  public void doTask() throws Exception {
    // 创建父节点
    Element root = new Element("input");
    Element node;
    Configurater config = Configurater.getInstance();
    String code = config.getConfigValue("unitCode");
    String pwd = config.getConfigValue("wspwd");
    // 子节点
    node = new Element("count");
    node.setAttribute("code", code);

    // 取当前时间
    String time = DateUtils.DateToString(new Date(), "yyyy-MM-dd");
    node.setAttribute("create_time", time);

    // 决定yearMonth的长度
    List<TProject> pros = projectService.getProjectByOwenCode(code);
    for (int i = 0; i < pros.size(); i++) {
      TProject pro = pros.get(i);
      HashMap<String, Object> map = new HashMap<String, Object>();
      map.put("pid", pro.getId());
      map.put("unit", pro.getTUnitByOwnerUnitId().getCode());
      List<Object[]> sour = searchesService.selectInsertDocPic(map, code);

      Element pidNode = new Element("project_id");
      pidNode.setText(pro.getId().toString());

      Element pnameNode = new Element("project_name");
      pnameNode.setText(pro.getName());

      Element vlevelNode = new Element("voltage_level");
      vlevelNode.setText(pro.getVoltageLevel());

      for (Object[] obj : sour) {
        String tdoc = (String) obj[0];
        int count = projectService.getDocCountByProjectId(pro.getId().toString(), tdoc);
        // 创建count的子节点
        Element year = new Element("year_month");
        year.setAttribute("value", tdoc);
        year.setAttribute("docsCount", String.valueOf(count));

        year.addContent(pidNode);
        year.addContent(pnameNode);
        year.addContent(vlevelNode);

        node.addContent(year);
      }
    }

    root.addContent(node);

    Document document = new Document(root);
    XMLOutputter out = new XMLOutputter();
    Format format = Format.getPrettyFormat();
    format.setEncoding("UTF-8");
    out.setFormat(format);
    String stream = out.outputString(document);
    String wsUrl = Configurater.getInstance().getConfigValue("wsUrl");
    CXFClient client = CXFClient.getCXFClient(wsUrl);
    client.getService().crossdomainStatistics(stream, pwd);
  }