224 lines
4.5 KiB
C
224 lines
4.5 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/*
|
|
*+SNOTICE
|
|
*
|
|
*
|
|
* $TOG: DtMailValuesBuiltin.C /main/6 1999/01/29 14:44:21 mgreess $
|
|
*
|
|
* RESTRICTED CONFIDENTIAL INFORMATION:
|
|
*
|
|
* The information in this document is subject to special
|
|
* restrictions in a confidential disclosure agreement bertween
|
|
* HP, IBM, Sun, USL, SCO and Univel. Do not distribute this
|
|
* document outside HP, IBM, Sun, USL, SCO, or Univel wihtout
|
|
* Sun's specific written approval. This documment and all copies
|
|
* and derivative works thereof must be returned or destroyed at
|
|
* Sun's request.
|
|
*
|
|
* Copyright 1993 Sun Microsystems, Inc. All rights reserved.
|
|
*
|
|
*+ENOTICE
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <DtMail/DtMailValues.hh>
|
|
#include <DtMail/IO.hh>
|
|
#include <DtMail/DtMailError.hh>
|
|
|
|
DtMailValueSeq::DtMailValueSeq(int size) : DtVirtArray<DtMailValue *>(size)
|
|
{
|
|
}
|
|
|
|
DtMailValueSeq::~DtMailValueSeq(void)
|
|
{
|
|
for (int ent = 0; ent < this->length(); ent++) {
|
|
delete (*this)[ent];
|
|
}
|
|
}
|
|
|
|
void
|
|
DtMailValueSeq::clear(void)
|
|
{
|
|
while(this->length()) {
|
|
delete (*this)[0];
|
|
this->remove(0);
|
|
}
|
|
}
|
|
|
|
DtMailValue::DtMailValue(const char * str)
|
|
{
|
|
_value = NULL;
|
|
|
|
if (str) {
|
|
_value = strdup(str);
|
|
}
|
|
}
|
|
|
|
DtMailValue::~DtMailValue(void)
|
|
{
|
|
if (_value) {
|
|
free(_value);
|
|
}
|
|
}
|
|
|
|
DtMailValue::operator const char *(void)
|
|
{
|
|
return(_value);
|
|
}
|
|
|
|
const char *
|
|
DtMailValue::operator= (const char * str)
|
|
{
|
|
if (_value) {
|
|
free(_value);
|
|
}
|
|
|
|
_value = strdup(str);
|
|
|
|
return(_value);
|
|
}
|
|
|
|
DtMailValueDate
|
|
DtMailValue::toDate(void)
|
|
{
|
|
DtMailValueDate date;
|
|
memset(&date, 0, sizeof(DtMailValueDate));
|
|
|
|
return(date);
|
|
}
|
|
|
|
DtMailAddressSeq *
|
|
DtMailValue::toAddress(void)
|
|
{
|
|
return(NULL);
|
|
}
|
|
|
|
const char *
|
|
DtMailValue::raw(void)
|
|
{
|
|
return(_value);
|
|
}
|
|
|
|
DtMailValueAddress::DtMailValueAddress(void)
|
|
{
|
|
dtm_address = NULL;
|
|
dtm_person = NULL;
|
|
dtm_namespace = NULL;
|
|
}
|
|
|
|
DtMailValueAddress::DtMailValueAddress(const DtMailValueAddress & other)
|
|
{
|
|
dtm_address = NULL;
|
|
dtm_person = NULL;
|
|
dtm_namespace = NULL;
|
|
|
|
if (other.dtm_address) {
|
|
dtm_address = strdup(other.dtm_address);
|
|
}
|
|
|
|
if (other.dtm_person) {
|
|
dtm_person = strdup(other.dtm_person);
|
|
}
|
|
|
|
if (other.dtm_namespace) {
|
|
dtm_namespace = strdup(other.dtm_namespace);
|
|
}
|
|
}
|
|
|
|
DtMailValueAddress::DtMailValueAddress(const char * address,
|
|
const char * person,
|
|
const char * nameSpace)
|
|
{
|
|
dtm_address = NULL;
|
|
dtm_person = NULL;
|
|
dtm_namespace = NULL;
|
|
|
|
if (address) {
|
|
dtm_address = strdup(address);
|
|
}
|
|
|
|
if (person) {
|
|
dtm_person = strdup(person);
|
|
}
|
|
|
|
if (nameSpace) {
|
|
dtm_namespace = strdup(nameSpace);
|
|
}
|
|
}
|
|
|
|
DtMailValueAddress::DtMailValueAddress(const char * address, const int addr_len,
|
|
const char * person, const int per_len,
|
|
const char * nameSpace)
|
|
{
|
|
dtm_address = NULL;
|
|
dtm_person = NULL;
|
|
dtm_namespace = NULL;
|
|
|
|
if (address) {
|
|
dtm_address = (char *)malloc(addr_len + 1);
|
|
memcpy(dtm_address, address, addr_len);
|
|
dtm_address[addr_len] = 0;
|
|
}
|
|
|
|
if (person) {
|
|
dtm_person = (char *)malloc(per_len + 1);
|
|
memcpy(dtm_person, person, per_len);
|
|
dtm_person[per_len] = 0;
|
|
}
|
|
|
|
if (nameSpace) {
|
|
dtm_namespace = strdup(nameSpace);
|
|
}
|
|
}
|
|
|
|
DtMailValueAddress::~DtMailValueAddress(void)
|
|
{
|
|
if (dtm_address) {
|
|
free(dtm_address);
|
|
}
|
|
|
|
if (dtm_person) {
|
|
free(dtm_person);
|
|
}
|
|
|
|
if (dtm_namespace) {
|
|
free(dtm_namespace);
|
|
}
|
|
}
|
|
|
|
DtMailAddressSeq::DtMailAddressSeq(int size) : DtVirtArray<DtMailValueAddress *>(size)
|
|
{
|
|
}
|
|
|
|
DtMailAddressSeq::~DtMailAddressSeq(void)
|
|
{
|
|
while(this->length()) {
|
|
delete (*this)[0];
|
|
this->remove(0);
|
|
}
|
|
}
|