• 大小: 2.67MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-15
  • 语言: 其他
  • 标签:

资源简介

题目1:自主访问控制实验; 要求:设计必需的界面环境, (1) 对主体、客体、权限进行定义和配置 (2) 对主体进行自主授权 (3) 对主体的访问权限进行控制实验 (4) 对主体进行传递授权的操作,通过实验观察系统的执行情况 (5) 对访问成功和不成功的两种情形均给出结果 要求:设计必需的界面环境, (1) 对主体、客体、权限进行定义和配置 (2) 对角色及角色的层次关系进行定义 (3) 对角色的权限进行定义(有继承关系的就不用重新定义) (4) 给出用户-角色多对多关系的配置 (5) 对用户的角色信息进行修改,通过访问控制实验,体现不同层次的角色访问权限的差别 (6) 对上述实验情况下访问成功和不成功的两种情形均给出结果 写的不是很好,仅供参考。

资源截图

代码片段和文件信息

// Dac.cpp : Defines the class behaviors for the application.
//
// This project was created using the Worm Studio AppWizard
// 
// Project: Dac
// Author : 王凤伟
// Date : 星期日 三月 14 2010
//

#include “stdafx.h“
#include “Dac.h“

#include “MainFrm.h“
#include “DacDoc.h“
#include “DacView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDacApp

BEGIN_MESSAGE_MAP(CDacApp CWinApp)
//{{AFX_MSG_MAP(CDacApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDacApp construction

CDacApp::CDacApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CDacApp object

CDacApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDacApp initialization

BOOL CDacApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CDacDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CDacView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-06-30 09:19  访问控制实验\
     目录           0  2010-03-18 13:57  访问控制实验\Dac\
     文件       35268  2010-03-17 17:57  访问控制实验\Dac\Dac.aps
     文件        8530  2010-03-18 00:33  访问控制实验\Dac\Dac.clw
     文件        4352  2010-03-15 09:30  访问控制实验\Dac\Dac.cpp
     文件        6671  2010-03-17 22:25  访问控制实验\Dac\Dac.dsp
     文件         529  2010-03-14 09:36  访问控制实验\Dac\Dac.dsw
     文件      208939  2010-03-17 23:52  访问控制实验\Dac\Dac.exe
     文件        1463  2010-03-14 09:36  访问控制实验\Dac\Dac.h
     文件      222208  2010-03-18 01:21  访问控制实验\Dac\Dac.ncb
     文件      170496  2010-03-18 01:21  访问控制实验\Dac\Dac.opt
     文件         240  2010-03-18 00:33  访问控制实验\Dac\Dac.plg
     文件       18583  2010-03-16 16:00  访问控制实验\Dac\Dac.rc
     文件        1822  2010-03-14 09:36  访问控制实验\Dac\DacDoc.cpp
     文件        1582  2010-03-14 09:36  访问控制实验\Dac\DacDoc.h
     文件        2870  2010-03-14 09:36  访问控制实验\Dac\DacView.cpp
     文件        2058  2010-03-14 09:36  访问控制实验\Dac\DacView.h
     目录           0  2010-03-18 13:57  访问控制实验\Dac\DATA\
     文件     3145728  2010-06-30 09:30  访问控制实验\Dac\DATA\dac.mdf
     文件     1048576  2010-06-30 09:30  访问控制实验\Dac\DATA\dac_log.ldf
     目录           0  2010-03-17 23:52  访问控制实验\Dac\Debug\
     文件      208939  2010-03-17 23:52  访问控制实验\Dac\Debug\Dac.exe
     文件        7964  2010-03-16 10:44  访问控制实验\Dac\ForwardDlg.cpp
     文件        1976  2010-03-16 08:38  访问控制实验\Dac\ForwardDlg.h
     文件        2927  2010-03-16 10:22  访问控制实验\Dac\ForwardDlgU.cpp
     文件         841  2010-03-15 16:58  访问控制实验\Dac\ForwardDlgU.h
     文件        5306  2010-03-17 19:31  访问控制实验\Dac\ForwardTo.cpp
     文件        1757  2010-03-15 21:13  访问控制实验\Dac\ForwardTo.h
     文件        2929  2010-03-15 09:52  访问控制实验\Dac\InsertUserDlg.cpp
     文件        1551  2010-03-15 19:15  访问控制实验\Dac\InsertUserDlg.h
     文件        2082  2010-03-17 23:52  访问控制实验\Dac\LoginDlg.cpp
............此处省略97个文件信息

评论

共有 条评论

相关资源