Files
cdesktop/cde/programs/dtcm/dtcm/fns.c
2012-03-10 18:58:32 +00:00

240 lines
5.6 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 librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
/*******************************************************************************
**
** cmfns.c
**
** $XConsortium: fns.c /main/3 1995/11/03 10:26:30 rswiston $
**
** RESTRICTED CONFIDENTIAL INFORMATION:
**
** The information in this document is subject to special
** restrictions in a confidential disclosure agreement between
** HP, IBM, Sun, USL, SCO and Univel. Do not distribute this
** document outside HP, IBM, Sun, USL, SCO, or Univel without
** Sun's specific written approval. This document and all copies
** and derivative works thereof must be returned or destroyed at
** Sun's request.
**
** Copyright 1993 Sun Microsystems, Inc. All rights reserved.
**
*******************************************************************************/
/* *
* (c) Copyright 1993, 1994 Hewlett-Packard Company *
* (c) Copyright 1993, 1994 International Business Machines Corp. *
* (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
* (c) Copyright 1993, 1994 Novell, Inc. *
*/
#ifndef lint
static char sccsid[] = "@(#)fns.c 1.3 94/11/07 Copyr 1993 Sun Microsystems, Inc.";
#endif
/*
* Copyright 1993 Sun Microsystems, Inc. All rights reserved
*/
#ifdef FNS
#include <EUSCompat.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
#ifdef POSIX_THREADS
#include <thread.h>
#endif
#include "debug.h"
#include "calendar.h"
#include "props.h"
#include "misc.h"
#include "dtfns.h"
#include "cmfns.h"
extern char *strdup(const char *);
extern FILE *fdopen(int, const char *);
#ifdef POSIX_THREADS
/* Data used by registration thread */
typedef struct _Registration_data {
char *username;
char *location;
} Registration_data;
static void *registration_thr(void *data);
#endif
static int register_calendar(const char *username, const char *location);
/*
* Register a calendar location in FNS.
*/
int
cm_register_calendar(const char *username, const char *location)
{
#ifdef POSIX_THREADS
int error;
Registration_data *data;
data = (Registration_data *)malloc(sizeof(Registration_data));
if (data == NULL) {
return -1;
}
data->username = strdup(username);
data->location = strdup(location);
error = thr_create(NULL, 0, registration_thr, data, THR_DETACHED, NULL);
if (error > 0) {
printf("Could not create registration thread\n");
return -1;
} else {
return 0;
}
#else
return cmfns_register_calendar(username, location);
#endif
}
#ifdef POSIX_THREADS
static void *
registration_thr(void *data)
{
Registration_data *reg_data;
DP(("registration_thr: THREAD ENTER\n"));
if (data == NULL) {
return (void *)-1;
}
reg_data = (Registration_data *)data;
DP(("registration_thr: Registering calendar\n"));
cmfns_register_calendar(reg_data->username, reg_data->location);
DP(("registration_thr: Registration complete. Freeing data\n"));
free(reg_data->username);
free(reg_data->location);
free(reg_data);
DP(("registration_thr: THREAD EXIT\n"));
return (void *)1;
}
#endif
#ifdef FNS_DEMO
/*
* Extract the FNS name out of a file or directory. In the case of a
* file it should have the format of
*
* # Zero or more
* # comments
* fns:name:for:the:fns:object
*
* In the case of a directory this routine looks for a file called
* ".FNSName" in the directory specified. This file should have the
* format described above.
*
* Caller is responsible for providing the buffer to place the name in.
*
* Returns
* -1 Internal error or corrupted file
* 0 Could not access file/directory
* 1 Success. 'name' contains the FNS name
*/
int
cmfns_name_from_file(
const char *path, /* Path to file to get name from */
char *name, /* Buffer to put name in */
int len) /* Length of buffer */
{
int fd;
FILE *fp;
char *p;
struct stat statb;
if ((fd = open(path, O_RDONLY)) < 0) {
return 0;
}
if (fstat(fd, &statb) < 0) {
close(fd);
return 0;
}
if (S_ISDIR(statb.st_mode)) {
char *newpath;
/* path points to a directory. Look for .FNSName file */
close(fd);
newpath = (char *)malloc(strlen(path) + strlen(FNS_FILE) + 2);
if (newpath == NULL) {
return -1;
}
sprintf(newpath, "%s/%s", path, FNS_FILE);
if ((fp = fopen(newpath, "r")) == NULL) {
free(newpath);
return 0;
}
free(newpath);
} else {
if ((fp = fdopen(fd, "r")) == NULL) {
return 0;
}
}
do {
/* Get line from file */
if (fgets(name, len, fp) == NULL) {
fclose(fp);
return -1;
}
/* Make sure we got a full line */
p = strrchr(name, '\n');
/*
* If it is a comment line or we got a partial line
* try again
*/
} while (*name == '#' || p == NULL);
/* Should have the name. Wipe out newline */
*p = '\0';
fclose(fp);
return 1;
}
#endif /* FNS_DEMO */
#endif /* FNS */