~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/uti/sge_io.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SGE_IO_H
 
2
#define __SGE_IO_H
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 * 
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 * 
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 * 
 
11
 * 
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 * 
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 * 
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 * 
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
#include "sge_tmpnam.h"
 
36
 
 
37
/****** uti/io/sge_mode_t *****************************************************
 
38
*  NAME
 
39
*     sge_mode_t -- Type of operation for sge_copy_append()
 
40
*
 
41
*  SYNOPSIS
 
42
*
 
43
*     typedef enum {
 
44
*        SGE_MODE_APPEND = 1,
 
45
*        SGE_MODE_COPY = 2
 
46
*     } sge_mode_t;
 
47
*
 
48
*  FUNCTION
 
49
*     Defines the operation which should be performed by 
 
50
*     sge_copy_append():
 
51
*
 
52
*        SGE_MODE_APPEND - append the file
 
53
*        SGE_MODE_COPY   - copy the file
 
54
*
 
55
*  SEE ALSO
 
56
*     uti/io/sge_copy_append();
 
57
******************************************************************************/
 
58
typedef enum {
 
59
   SGE_MODE_APPEND = 1,
 
60
   SGE_MODE_COPY = 2
 
61
} sge_mode_t;
 
62
 
 
63
int sge_readnbytes(register int sfd, register char *ptr, register int n);
 
64
 
 
65
int sge_writenbytes(register int sfd, register const char *ptr, 
 
66
                    register int n);
 
67
 
 
68
int sge_filecmp(const char *file0, const char *file1); 
 
69
 
 
70
int sge_copy_append(char *dst, const char *src, sge_mode_t mode);
 
71
 
 
72
char *sge_bin2string(FILE *fp, int size);
 
73
 
 
74
int sge_string2bin(FILE *fp, const char *buf);  
 
75
 
 
76
char *sge_file2string(const char *fname, int *len);
 
77
 
 
78
char *sge_stream2string(FILE *fp, int *len);
 
79
 
 
80
int sge_string2file(const char *str, int len, const char *fname); 
 
81
 
 
82
#endif /* __SGE_IO_H */
 
83