File: MIUtilMapIdToVariant.cpp

package info (click to toggle)
llvm-toolchain-3.5 1%3A3.5-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 282,028 kB
  • ctags: 310,872
  • sloc: cpp: 1,883,926; ansic: 310,731; objc: 86,612; python: 79,565; asm: 65,844; sh: 9,829; makefile: 6,057; perl: 5,589; ml: 5,254; pascal: 3,285; lisp: 1,640; xml: 686; cs: 239; csh: 117
file content (124 lines) | stat: -rw-r--r-- 3,500 bytes parent folder | download | duplicates (2)
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
116
117
118
119
120
121
122
123
124
//===-- MIUtilMapIdToVariant.cpp --------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

//++
// File:		MIUtilMapIdToVariant.cpp
//
// Overview:	CMIUtilMapIdToVariant implementation.
//
// Environment:	Compilers:	Visual C++ 12.
//							gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
//				Libraries:	See MIReadmetxt. 
//
// Copyright:	None.
//--

// In-house headers:
#include "MIUtilMapIdToVariant.h"

//++ ------------------------------------------------------------------------------------
// Details:	CMIUtilMapIdToVariant constructor.
// Type:	Method.
// Args:	None.
// Return:	None.
// Throws:	None.
//--
CMIUtilMapIdToVariant::CMIUtilMapIdToVariant( void )
{
}

//++ ------------------------------------------------------------------------------------
// Details:	CMIUtilMapIdToVariant destructor.
// Type:	Method.
// Args:	None.
// Return:	None.
// Throws:	None.
//--
CMIUtilMapIdToVariant::~CMIUtilMapIdToVariant( void )
{
}

//++ ------------------------------------------------------------------------------------
// Details:	Remove at the data from *this container.
// Type:	Method.
// Args:	None.
// Return:	None.
// Throws:	None.
//--
void CMIUtilMapIdToVariant::Clear( void )
{
	m_mapKeyToVariantValue.clear();
}

//++ ------------------------------------------------------------------------------------
// Details:	Check an ID is present already in *this container.
// Type:	Method.
// Args:	vId	- (R) Unique ID i.e. GUID.
// Return:	True - registered.
//			False - not found.
// Throws:	None.
//--
bool CMIUtilMapIdToVariant::HaveAlready( const CMIUtilString & vId ) const
{
	const MapKeyToVariantValue_t::const_iterator it = m_mapKeyToVariantValue.find( vId );
	if( it != m_mapKeyToVariantValue.end() )
		return true;
	
	return false;
}

//++ ------------------------------------------------------------------------------------
// Details:	Determine if *this container is currently holding any data.
// Type:	Method.
// Args:	None.
// Return:	bool	- True - Yes empty, false - one or more data object present.
// Throws:	None.
//--
bool CMIUtilMapIdToVariant::IsEmpty( void ) const
{
	return m_mapKeyToVariantValue.empty();
}

//++ ------------------------------------------------------------------------------------
// Details:	Check the ID is valid to be registered.
// Type:	Method.
// Args:	vId	- (R) Unique ID i.e. GUID.
// Return:	True - valid.
//			False - not valid.
// Throws:	None.
//--
bool CMIUtilMapIdToVariant::IsValid( const CMIUtilString & vId ) const
{
	bool bValid = true;

	if( vId.empty() )
		bValid = false;
	
	return bValid;
}

//++ ------------------------------------------------------------------------------------
// Details:	Remove from *this contain a data object specified by ID. The data object
//			when removed also calls its destructor should it have one.
// Type:	Method.
// Args:	vId	- (R) Unique ID i.e. GUID.
// Return:	MIstatus::success - Functional succeeded.
//			MIstatus::failure - Functional failed.
// Throws:	None.
//--
bool CMIUtilMapIdToVariant::Remove( const CMIUtilString & vId )
{
	const MapKeyToVariantValue_t::const_iterator it = m_mapKeyToVariantValue.find( vId );
	if( it != m_mapKeyToVariantValue.end() )
	{
		m_mapKeyToVariantValue.erase( it );
	}

	return MIstatus::success;
}