Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pwdgrp.h « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38a7c80f4f2c18b4e8b477116a6ce82761c4c6eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* pwdgrp.h

   Copyright 2001 Red Hat inc.

   Stuff common to pwd and grp handling.

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

enum pwdgrp_state {
  uninitialized = 0,
  initializing,
  emulated,
  loaded
};

class pwdgrp_check {
  pwdgrp_state	state;
  FILETIME	last_modified;
  char		file_w32[MAX_PATH];

public:
  pwdgrp_check () : state (uninitialized) {}
  operator pwdgrp_state ()
    {
      if (state != uninitialized && file_w32[0] && cygheap->etc_changed ())
        {
          HANDLE h;
          WIN32_FIND_DATA data;

          if ((h = FindFirstFile (file_w32, &data)) != INVALID_HANDLE_VALUE)
            {
              if (CompareFileTime (&data.ftLastWriteTime, &last_modified) > 0)
                state = uninitialized;
              FindClose (h);
            }
        }
      return state;
    }
  void operator = (pwdgrp_state nstate)
    {
      state = nstate;
    }
  void set_last_modified (FILE *f)
    {
      if (!file_w32[0])
        strcpy (file_w32, cygheap->fdtab[fileno (f)]->get_win32_name ());

      GetFileTime (cygheap->fdtab[fileno (f)]->get_handle (),
		   NULL, NULL, &last_modified);
    }
};