attribute.c 5.81 KB
/* GNU mailutils - a suite of utilities for electronic mail
   Copyright (C) 1999, 2000 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Library Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#include <attribute0.h>

#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

int
attribute_create (attribute_t *pattr)
{
  attribute_t attr;
  if (pattr == NULL)
    return EINVAL;
  attr = calloc (1, sizeof(*attr));
  if (attr == NULL)
    return ENOMEM;
  *pattr = attr;
  return 0;
}

void
attribute_destroy (attribute_t *pattr)
{
  if (pattr && *pattr)
    {
      free (*pattr);
      /* loose the link */
      *pattr = NULL;
    }
  return;
}

int
attribute_set_seen (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  attr->flag |= MU_ATTRIBUTE_SEEN;
  return 0;
}

int
attribute_set_answered (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  attr->flag |= MU_ATTRIBUTE_ANSWERED;
  return 0;
}

int
attribute_set_flagged (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  attr->flag |= MU_ATTRIBUTE_FLAGGED;
  return 0;
}

int
attribute_set_read (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  attr->flag |= MU_ATTRIBUTE_READ;
  return 0;
}

int
attribute_set_deleted (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  attr->flag |= MU_ATTRIBUTE_DELETED;
  return 0;
}

int
attribute_set_draft (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  attr->flag |= MU_ATTRIBUTE_DRAFT;
  return 0;
}

int
attribute_set_recent (attribute_t attr)
{
  if (attr == NULL)
    return EINVAL;
  if (attr == NULL)
    {
      attr->flag |= MU_ATTRIBUTE_RECENT;
      return 0;
    }
  return EACCES;
}

int
attribute_is_seen (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_SEEN;
}

int
attribute_is_answered (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_ANSWERED;
}

int
attribute_is_flagged (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_FLAGGED;
}

int
attribute_is_read (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_READ;
}

int
attribute_is_deleted (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_DELETED;
}

int
attribute_is_draft (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_DRAFT;
}

int
attribute_is_recent (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  return attr->flag & MU_ATTRIBUTE_RECENT;
}

int
attribute_unset_seen (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_SEEN;
  return 0;
}

int
attribute_unset_answered (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_ANSWERED;
  return 0;
}

int
attribute_unset_flagged (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_FLAGGED;
  return 0;
}

int
attribute_unset_read (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_READ;
  return 0;
}

int
attribute_unset_deleted (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_DELETED;
  return 0;
}

int
attribute_unset_draft (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_DRAFT;
  return 0;
}

int
attribute_unset_recent (attribute_t attr)
{
  if (attr == NULL)
    return 0;
  attr->flag &= ~MU_ATTRIBUTE_RECENT;
  return 0;
}

int
attribute_is_equal (attribute_t attr, attribute_t attr2)
{
  if (attr == NULL || attr2 == NULL)
    return 0;
  return attr->flag == attr2->flag;
}

int
attribute_copy (attribute_t dest, attribute_t src)
{
  if (dest == NULL || src == NULL)
    return EINVAL;
  memcpy (dest, src, sizeof (*dest));
  return 0;
}

int
string_to_attribute (const char *buffer, attribute_t *pattr)
{
  const char *sep;
  int status;

  status = attribute_create (pattr);
  if (status != 0)
    return status;

  /* Set the attribute */
  if (strncasecmp (buffer, "Status:", 7) == 0)
    {
      sep = strchr(buffer, ':'); /* pass the ':' */
      sep++;
    }
  else
    sep = buffer;

  while (*sep == ' ') sep++; /* glob spaces */
  if (strchr (sep, 'R') != NULL || strchr (sep, 'r') != NULL)
    attribute_set_read (*pattr);
  if (strchr (sep, 'O') != NULL || strchr (sep, 'o') != NULL)
    attribute_set_seen (*pattr);
  if (strchr (sep, 'A') != NULL || strchr (sep, 'a') != NULL)
    attribute_set_answered (*pattr);
  if (strchr (sep, 'F') != NULL || strchr (sep, 'f') != NULL)
    attribute_set_flagged (*pattr);
  return 0;
}

int
attribute_to_string (attribute_t attr, char *buffer, size_t len, size_t *pn)
{
  char status[32];
  char a[8];
  size_t i;

  *status = *a = '\0';

  if (attribute_is_seen (attr))
    strcat (a, "R");
  if (attribute_is_answered (attr))
    strcat (a, "A");
  if (attribute_is_flagged (attr))
    strcat (a, "F");
  if (attribute_is_read (attr))
    strcat (a, "O");

  if (*a != '\0')
    {
      strcpy (status, "Status: ");
      strcat (status, a);
      strcat (status, "\n");
    }

  i = strlen (status);

  if (buffer && len != 0)
    {
      strncpy (buffer, status, len - 1);
      buffer[len - 1] = '\0';
      i = strlen (buffer);
    }
  if (pn)
    *pn = i;
  return 0;
}