File: XdmfDSMDescription.cpp

package info (click to toggle)
xdmf 3.0%2Bgit20160803-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 35,388 kB
  • ctags: 36,627
  • sloc: ansic: 265,382; cpp: 162,889; python: 10,976; f90: 1,378; yacc: 687; fortran: 464; xml: 200; java: 187; lex: 125; makefile: 82; sh: 28
file content (115 lines) | stat: -rw-r--r-- 3,922 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*****************************************************************************/
/*                                    XDMF                                   */
/*                       eXtensible Data Model and Format                    */
/*                                                                           */
/*  Id : XdmfDSMDescription.hpp                                              */
/*                                                                           */
/*  Author:                                                                  */
/*     Andrew Burns                                                          */
/*     andrew.j.burns2@us.army.mil                                           */
/*     US Army Research Laboratory                                           */
/*     Aberdeen Proving Ground, MD                                           */
/*                                                                           */
/*     Copyright @ 2013 US Army Research Laboratory                          */
/*     All Rights Reserved                                                   */
/*     See Copyright.txt for details                                         */
/*                                                                           */
/*     This software is distributed WITHOUT ANY WARRANTY; without            */
/*     even the implied warranty of MERCHANTABILITY or FITNESS               */
/*     FOR A PARTICULAR PURPOSE.  See the above copyright notice             */
/*     for more information.                                                 */
/*                                                                           */
/*****************************************************************************/
#include <utility>
#include "XdmfError.hpp"
#include "XdmfDSMDescription.hpp"
#include "XdmfSharedPtr.hpp"
#include "XdmfVisitor.hpp"
#include <iostream>
#include "string.h"

shared_ptr<XdmfDSMDescription>
XdmfDSMDescription::New()
{
  shared_ptr<XdmfDSMDescription> p(new XdmfDSMDescription());
  return p;
}

XdmfDSMDescription::XdmfDSMDescription()
{
}

XdmfDSMDescription::XdmfDSMDescription(XdmfDSMDescription & refDescription) :
  XdmfHeavyDataDescription(refDescription)
{
}

XdmfDSMDescription::~XdmfDSMDescription()
{
}

const std::string XdmfDSMDescription::ItemTag = "DSM";

std::map<std::string, std::string>
XdmfDSMDescription::getItemProperties() const
{
  std::map<std::string, std::string> descriptionProperties;

  descriptionProperties["Port"] = mPortDescription;

  return descriptionProperties;
}

std::string
XdmfDSMDescription::getItemTag() const
{
  return ItemTag;
}

std::string
XdmfDSMDescription::getPortDescription() const
{
  return mPortDescription;
}

void
XdmfDSMDescription::populateItem(const std::map<std::string, std::string> & itemProperties,
                              const std::vector<shared_ptr<XdmfItem> > & childItems,
                              const XdmfCoreReader * const reader)
{
  XdmfItem::populateItem(itemProperties, childItems, reader);
}

void
XdmfDSMDescription::setPortDescription(std::string portDesc)
{
  mPortDescription = portDesc;
  this->setIsChanged(true);
}

void
XdmfDSMDescription::traverse(const shared_ptr<XdmfBaseVisitor> visitor)
{

}

XDMFDSMDESCRIPTION *
XdmfDSMDescriptionNew(char * key, char * value)
{
  try
  {
    std::string createKey(key);
    std::string createValue(value);
    shared_ptr<XdmfDSMDescription> generatedDesc = XdmfDSMDescription::New();
    return (XDMFDSMDESCRIPTION *)((void *)(new XdmfDSMDescription(*generatedDesc.get())));
  }
  catch (...)
  {
    std::string createKey(key);
    std::string createValue(value);
    shared_ptr<XdmfDSMDescription> generatedDesc = XdmfDSMDescription::New();
    return (XDMFDSMDESCRIPTION *)((void *)(new XdmfDSMDescription(*generatedDesc.get())));
  }
}

XDMF_ITEM_C_CHILD_WRAPPER(XdmfDSMDescription, XDMFDSMDESCRIPTION)