mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
142 lines
2.6 KiB
C++
142 lines
2.6 KiB
C++
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||
|
*
|
||
|
* The contents of this file are subject to the Netscape Public License
|
||
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
||
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
||
|
* http://www.mozilla.org/NPL/
|
||
|
*
|
||
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||
|
* for the specific language governing rights and limitations under the
|
||
|
* NPL.
|
||
|
*
|
||
|
* The Initial Developer of this code under the NPL is Netscape
|
||
|
* Communications Corporation. Portions created by Netscape are
|
||
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||
|
* Reserved.
|
||
|
*/
|
||
|
|
||
|
#include "IdlVariable.h"
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
IdlVariable::IdlVariable()
|
||
|
{
|
||
|
mType = (Type)0;
|
||
|
mTypeName = 0;
|
||
|
memset(&mValue, 0, sizeof(mValue));
|
||
|
}
|
||
|
|
||
|
IdlVariable::~IdlVariable()
|
||
|
{
|
||
|
if (mTypeName) {
|
||
|
delete[] mTypeName;
|
||
|
}
|
||
|
|
||
|
if (TYPE_STRING == mType) {
|
||
|
delete[] mValue.vString;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetType(Type aType)
|
||
|
{
|
||
|
mType = aType;
|
||
|
}
|
||
|
|
||
|
Type IdlVariable::GeType()
|
||
|
{
|
||
|
return mType;
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetTypeName(char *aTypeName)
|
||
|
{
|
||
|
if (mTypeName) {
|
||
|
delete[] mTypeName;
|
||
|
mTypeName = 0;
|
||
|
}
|
||
|
|
||
|
if (aTypeName) {
|
||
|
size_t length = strlen(aTypeName) + 1;
|
||
|
mTypeName = new char[length];
|
||
|
strcpy(mTypeName, aTypeName);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
char* IdlVariable::GetTypeName()
|
||
|
{
|
||
|
return mTypeName;
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetValue(unsigned long aValue)
|
||
|
{
|
||
|
DeleteStringType();
|
||
|
mType = TYPE_ULONG;
|
||
|
mValue.vLong = aValue;
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetValue(char aValue)
|
||
|
{
|
||
|
DeleteStringType();
|
||
|
mType = TYPE_CHAR;
|
||
|
mValue.vChar = aValue;
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetValue(char *aValue)
|
||
|
{
|
||
|
DeleteStringType();
|
||
|
mType = TYPE_STRING;
|
||
|
size_t length = strlen(aValue) + 1;
|
||
|
mValue.vString = new char[length];
|
||
|
strcpy(mValue.vString, aValue);
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetValue(double aValue)
|
||
|
{
|
||
|
DeleteStringType();
|
||
|
mType = TYPE_DOUBLE;
|
||
|
mValue.vDouble = aValue;
|
||
|
}
|
||
|
|
||
|
void IdlVariable::SetValue(void *aValue)
|
||
|
{
|
||
|
DeleteStringType();
|
||
|
mType = TYPE_OBJECT;
|
||
|
mValue.vObject = aValue;
|
||
|
}
|
||
|
|
||
|
|
||
|
unsigned long IdlVariable::GetLongValue()
|
||
|
{
|
||
|
return mValue.vLong;
|
||
|
}
|
||
|
|
||
|
char IdlVariable::GetCharValue()
|
||
|
{
|
||
|
return mValue.vChar;
|
||
|
}
|
||
|
|
||
|
char* IdlVariable::GetStringValue()
|
||
|
{
|
||
|
return mValue.vString;
|
||
|
}
|
||
|
|
||
|
double IdlVariable::GetDoubleValue()
|
||
|
{
|
||
|
return mValue.vDouble;
|
||
|
}
|
||
|
|
||
|
void* IdlVariable::GetObjectValue()
|
||
|
{
|
||
|
return mValue.vObject;
|
||
|
}
|
||
|
|
||
|
void IdlVariable::DeleteStringType()
|
||
|
{
|
||
|
if (TYPE_STRING == mType) {
|
||
|
if (mValue.vString) {
|
||
|
delete[] mValue.vString;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|