jarint.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. /*
  34.  * Internal libjar routines.
  35.  */
  36. #include "jar.h"
  37. #include "jarint.h"
  38. /*-----------------------------------------------------------------------
  39.  * JAR_FOPEN_to_PR_Open
  40.  * Translate JAR_FOPEN arguments to PR_Open arguments
  41.  */
  42. PRFileDesc*
  43. JAR_FOPEN_to_PR_Open(const char* name, const char *mode)
  44. {
  45. PRIntn prflags=0, prmode=0;
  46. /* Get read/write flags */
  47. if(strchr(mode, 'r') && !strchr(mode, '+')) {
  48. prflags |= PR_RDONLY;
  49. } else if( (strchr(mode, 'w') || strchr(mode, 'a')) &&
  50. !strchr(mode,'+') ) {
  51. prflags |= PR_WRONLY;
  52. } else {
  53. prflags |= PR_RDWR;
  54. }
  55. /* Create a new file? */
  56. if(strchr(mode, 'w') || strchr(mode, 'a')) {
  57. prflags |= PR_CREATE_FILE;
  58. }
  59. /* Append? */
  60. if(strchr(mode, 'a')) {
  61. prflags |= PR_APPEND;
  62. }
  63. /* Truncate? */
  64. if(strchr(mode, 'w')) {
  65. prflags |= PR_TRUNCATE;
  66. }
  67. /* We can't do umask because it isn't XP.  Choose some default
  68.    mode for created files */
  69. prmode = 0755;
  70. return PR_Open(name, prflags, prmode);
  71. }