-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathComRef.h
More file actions
105 lines (91 loc) · 3.4 KB
/
Copy pathComRef.h
File metadata and controls
105 lines (91 loc) · 3.4 KB
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
/*
* This file is part of OpenModelica.
*
* Copyright (c) 1998-2026, Open Source Modelica Consortium (OSMC),
* c/o Linköpings universitet, Department of Computer and Information Science,
* SE-58183 Linköping, Sweden.
*
* All rights reserved.
*
* THIS PROGRAM IS PROVIDED UNDER THE TERMS OF AGPL VERSION 3 LICENSE OR
* THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.8.
* ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
* RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GNU AGPL
* VERSION 3, ACCORDING TO RECIPIENTS CHOICE.
*
* The OpenModelica software and the OSMC (Open Source Modelica Consortium)
* Public License (OSMC-PL) are obtained from OSMC, either from the above
* address, from the URLs:
* http://www.openmodelica.org or
* https://github.com/OpenModelica/ or
* http://www.ida.liu.se/projects/OpenModelica,
* and in the OpenModelica distribution.
*
* GNU AGPL version 3 is obtained from:
* https://www.gnu.org/licenses/licenses.html#GPL
*
* This program is distributed WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
* IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
*
* See the full OSMC Public License conditions for more details.
*
*/
#ifndef _OMS_COM_REF_H_
#define _OMS_COM_REF_H_
#include <string>
namespace oms
{
/**
* \brief ComRef - component reference
*
* A component reference is a qualified name of a component. It uses
* '.' as component separator. It may also contain a ':' followed by
* a suffix string which is used to define attributes or filenames.
*/
class ComRef
{
public:
ComRef();
ComRef(const std::string& path);
ComRef(const char* path);
~ComRef();
// methods to copy the component reference
ComRef(const ComRef& copy);
ComRef& operator=(const ComRef& copy);
ComRef operator+(const ComRef& rhs) const; ///< return ComRef(lhs + rhs) - Obs! lhs will lose its suffix
static bool isValidIdent(const std::string& ident);
bool isValidIdent() const;
bool isEmpty() const;
bool isRootOf(ComRef child) const;
ComRef front() const; ///< returns the first part of the ComRef (including suffix if its the only part)
ComRef back() const; ///< returns the last part of the ComRef (including suffix if its the only part)
ComRef pop_front(); ///< returns the first part of the ComRef and removed it from the current object
std::string suffix() const; ///< returns the suffix as string
std::string pop_suffix(); ///< returns the suffix as string and removes it from the current object
bool pop_suffix(const std::string& suffix);
bool hasSuffix() const; ///< returns true if the cref has a suffix, i.e. contains ":"
bool hasSuffix(const std::string& suffix) const; ///< returns true if the cref has a suffix that matches the argument
const char* c_str() const { return cref; }
size_t size() const;
operator std::string() const { return std::string(cref); }
private:
char* cref;
};
bool operator==(const ComRef& lhs, const ComRef& rhs);
bool operator!=(const ComRef& lhs, const ComRef& rhs);
bool operator<(const ComRef& lhs, const ComRef& rhs);
}
namespace std
{
template <>
struct hash<oms::ComRef>
{
size_t operator()(const oms::ComRef& cref) const
{
return hash<std::string>()(std::string(cref));
}
};
}
#endif