US20130132439A1 - Organizing versioning according to permissions - Google Patents

Organizing versioning according to permissions Download PDF

Info

Publication number
US20130132439A1
US20130132439A1 US13/721,702 US201213721702A US2013132439A1 US 20130132439 A1 US20130132439 A1 US 20130132439A1 US 201213721702 A US201213721702 A US 201213721702A US 2013132439 A1 US2013132439 A1 US 2013132439A1
Authority
US
United States
Prior art keywords
versions
data item
permissions
version
user
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US13/721,702
Inventor
Ronnie G. Misra
Eric Olaf Carlson
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Apple Inc
Original Assignee
Apple Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Apple Inc filed Critical Apple Inc
Priority to US13/721,702 priority Critical patent/US20130132439A1/en
Publication of US20130132439A1 publication Critical patent/US20130132439A1/en
Assigned to APPLE INC. reassignment APPLE INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: CARLSON, Eric Olaf, MISRA, RONNIE G.
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/60Protecting data
    • G06F21/62Protecting access to data via a platform, e.g. using keys or access control rules
    • G06F21/6218Protecting access to data via a platform, e.g. using keys or access control rules to a system of files or objects, e.g. local or distributed file system or database
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/18File system types
    • G06F16/1873Versioning file systems, temporal file systems, e.g. file system supporting different historic versions of files

Definitions

  • This specification relates to storing data.
  • Typical systems allow for the storage of multiple versions of a data item (e.g., versions of a file stored in a backup).
  • these versions are stored according to the location of the data item in a hierarchical file system, for example, within the file system hierarchy of a local device or in a backup that mimics the file system hierarchy.
  • storing a version typically requires storing the entire file system directory path.
  • all versions of the data item have the same permissions as the permissions of the current data item.
  • This specification describes technologies relating to storing data according to permissions.
  • one aspect of the subject matter described in this specification can be embodied in methods that include the actions of identifying a version of a data item to be stored; determining permissions associated with the version of the data item; and storing the version of the data item at a storage location that is based on the determined permissions.
  • Other embodiments of this aspect include corresponding systems, apparatus, and computer programs recorded on computer storage devices, each configured to perform the operations of the methods.
  • Storing the version of the data item comprises storing the version of the data item within a node of a permissions tree corresponding to the determined permissions. Storing the version further comprises: determining whether there is an existing branch of the permissions tree associated with the determined permission; and if not, generating a new branch of the permissions tree associated with the determined permission.
  • the permissions tree includes one or more nodes, each node associated with specific permissions.
  • the version is stored without regard to the location of the data item with respect to a file system hierarchy. Access to the version of the data item by a user is controlled by the permissions associated with the storage location in which the version of the data item is stored.
  • the version of the data item has a different permissions than a second version of the data item, wherein the second version of the data item is stored at a second storage location that is based on the permissions of the second version of the data item.
  • one aspect of the subject matter described in this specification can be embodied in methods that include the actions of receiving a request from a user for one or more versions of a data item; identifying the one or more versions of the data item; determining the permissions associated with each version of the one or more versions of the data item; and providing access only to those versions of the one or more versions of the data item to which the user has permission.
  • Other embodiments of this aspect include corresponding systems, apparatus, and computer programs recorded on computer storage devices, each configured to perform the operations of the methods.
  • determining the permissions includes searching a database for the one or more versions of the data item, the database including an ordering of versions for each of a plurality of data items and a location within a permissions tree of each version. The location of each version of the data item is based on the assigned permissions for each respective version of the data item. All identified versions of the one or more versions of the data item are presented, but only those to which the user has permissions are accessible. Only those versions of the one or more versions of the data item to which the user has permission are presented.
  • a permissions based versioning system allows versions of data items to be stored more compactly in a permissions tree. Thus, there is no need to store an entire file hierarchy associated with the stored versions of the data items.
  • the permissions tree only adds additional nodes when new permissions are generated. Permissions for particular versions can remain fixed over time so that access to versions can be different based on the permissions at the time respective versions are generated.
  • FIG. 1 is an example representation of a permissions based data store.
  • FIG. 2 is a flow diagram of an example process for storing a data item version according to permissions.
  • FIG. 3 is a block diagram of an example permissions based versioning system.
  • FIG. 4 is a flow diagram of an example process for retrieving a data item.
  • FIG. 5 illustrates an example architecture of a system.
  • a system can store one or more versions of a data item (e.g., a file) for later retrieval.
  • a data item can be a file (e.g., a document, media file (movie, image, audio)) or other data. Versions of data items are stored according to their permissions at the time of storage. As a result, the original location within the file system is not used. Instead, versions of data items are stored and indexed according to the permissions assigned to that version of the data item at the time of storage. Each version of the data item is stored according to the permissions of that version without changing previously stored versions.
  • a first version has permissions allowing User A to read the file
  • the first version is stored according to the permission “User A Read”.
  • a second version has different permissions, e.g., User B allowed to read and User A no longer having permissions
  • the second version is stored according to the permission “User B Read”.
  • User A will not have access to the second version since User A does not have permission for that version of the data item. However, User A will retain access to the first version.
  • the permissions associated with that data item are identified and only those data items to which the user has permissions are presented.
  • a useful analogy is to a set of permissions buckets where each bucket has particular permissions (e.g., User A Read). Versions of data items are placed in the corresponding buckets that have matching permissions. A new bucket is generated if the permissions of the version to be stored do not have a corresponding bucket. In some implementations, once a version of a data item is placed in a bucket, it is never removed, thus the permissions are fixed for the version of the data item after being placed in a particular bucket.
  • permissions e.g., User A Read
  • FIG. 1 is an example representation of a permissions based data store 100 .
  • the permissions based data store 100 illustrates that the versions of data items are not stored according to their file system location, but instead according to their respective permissions.
  • a permissions tree is generated in which each node is associated with particular permissions. Different types of permissions are possible including read access, write access, and read-write access. Other types of permissions can be assigned, for example, an execute permission that grants the ability to execute a file (e.g., a script or other executable file type). Permissions can be assigned to specific users (or user accounts) or groups of users. Additionally, a data item can be associated with more than one type of permission and the permissions can be assigned to more than one distinct user. In some implementations, permissions are subtractive such that full permissions are granted to all data items until limited by more restrictive permissions.
  • permissions based data store 100 shows a root node 102 and three permissions nodes 104 , 106 , and 108 branching from root node 102 .
  • Node 104 is associated with the permission “Fred Read-Write”.
  • Node 106 is associated with the permission “Fred and Bob Read”.
  • Node 108 is associated with the permission “Group Read” where a Group could be all users or some specified group of users.
  • Versions of data items are stored according to the assigned permissions.
  • Data Item 1.1 refers to version 1 of data item 1.
  • Data Item 1 includes versions 1 and 2 as having permission “Fred Read-Write”.
  • Data Item 1.3 version three of data item 1 has permissions “Group Read”.
  • Fred alone has access to versions 1 and 2
  • version 3 is accessible by all users of the group.
  • Fred alone has access to version 4 of data item 3 (Data Item 3.4) while Fred and Bob have read access to versions 1, 2, 3, and 5 of data item 3.
  • Bob cannot access version 4 of data item 3, but can access the other versions.
  • the versions of the data items are shown for clarity as ordered (e.g. by version number or by data item), the versions of the data items may or may not be stored in an ordered form.
  • FIG. 2 is a flow diagram of an example process 200 for storing a data item version according to permissions assigned to that data item.
  • the process 200 can be performed, for example, by one or more computing devices (e.g., a computer, mobile device, tablet device, personal data assistant, server, or other device).
  • computing devices e.g., a computer, mobile device, tablet device, personal data assistant, server, or other device.
  • a version of a data item to be stored is identified (step 202 ).
  • a version of a data item can be identified in a number of ways. For example, a version can be generated based on a user editing of the data item. In another example, saving a modified data item can result in a new version being stored.
  • versions are generated and stored prior to writing new modifications or saving a new current data item. For example, a current data item can be modified. The unmodified version is stored as a past version while the modification is applied to the current data item. For example, in some implementations, modifications to a data item are intercepted prior to execution and a version is generated prior to the modification taking place.
  • the current data item is a version that is also stored with the earlier versions of the data item (if any).
  • the current data items and earlier versions may or may not be stored in an ordered form.
  • the current data item resides only in the file system hierarchy and is not stored with the prior versions (e.g., in the permissions based data store).
  • the data item is inspected to determine all assigned permissions.
  • the permissions can include different permissions types for one or more users. Thus, the type of permissions for each assigned user is determined.
  • Permissions can be stored as part of the data item, attributes of the data item, or as part of an access control list for the data item or for a group of data items.
  • the version of the data item is stored within a permissions tree based on the determined permissions (step 206 ).
  • the version of the data item can be associated with a particular node of a permission tree. If the particular permissions of the data item already exist in the permissions tree, then the data item version is stored in a location associated with the corresponding permissions.
  • permissions are subtractive such that unless specified otherwise all users have permission.
  • a compact permissions tree can be formed in which a full group node allows full access to all users. All versions can be stored with this node unless otherwise specified with more limiting permissions (e.g., permissions to a single user).
  • a new node in the permissions tree can be generated when the determined permissions do not appear already in the permissions tree. For example, if a version of the data item to be stored has permissions “Fred Read” this means only user Fred can read the data item. If the permissions tree only has a node for “full group access” a new node in the permissions tree is generated for “Fred Read”. The version of the data item is then added to the newly generated branch of the permissions tree.
  • adding a new version to the permissions tree also includes updating a versions database that includes an ordered list of versions for each data item and a respective location in the permissions tree.
  • FIG. 3 is a block diagram of an example permissions based versioning system 300 .
  • the permissions based versioning system includes a versions database 302 and a permissions store 304 .
  • Particular versions can be requested by and/or presented to a user 306 through a particular user interface 308 .
  • a user interface 308 can be a user interface to the file system (e.g., a search utility or application, backup application, or specific versioning interface).
  • the permissions store 304 includes the versions stored according to assigned permissions in the permissions tree.
  • the versions database 302 can include an ordering of versions of each data item and their respective locations within the permissions store 304 (e.g., a particular permissions node in the permissions tree).
  • the versions database 302 includes the version of each data item in a different or unordered form that maintains an identification of their respective locations within the permissions store 304 .
  • the versions database 302 can be searched to identify all versions of that data item and their respective locations in the permissions store 304 .
  • the locations in the database also identify the permissions of each version.
  • the versions database 302 includes metadata associated within each version.
  • the metadata for a particular version can include information on how the particular version was generated, user explanatory text, contextual information, conflict resolution information, and other annotations.
  • FIG. 4 is a flow diagram of an example process 400 for retrieving a data item.
  • the process 400 can be performed, for example, by one or more computing devices as described above with respect to FIG. 3 .
  • a request is received from a user for one or more versions of a data item (step 402 ).
  • the request can be received, for example, as part of a search performed in a user interface to the file system.
  • a user working in the current data item can request prior versions of that data item in order to identify particular changes or recover particular content found in an earlier version.
  • the user can input search parameters into a search interface to include one or more versions of data items in the search rather than just the current data items in the file system.
  • One or more versions of the data item are identified (step 404 ).
  • a database of versions is searched to identify stored versions of the data item.
  • the versions can be indexed in the database by data item in order to identify all versions of the data item.
  • an identifier for the data item is used to identify versions of the data item within the database. For example, each data item can have a unique identifier. Additionally, each version stored can be associated with that unique identifier. Thus, the unique identifier can be used to identify each version of the data item.
  • the permissions associated with each version of the one or more versions of the data item are determined (step 406 ). Different versions of the same data item can have different permissions. In some implementations, determining permissions for a version includes examining the permissions associated with parent or ancestor items in a hierarchical file system. Each version has an identified location in a permissions store where the version of the data item is stored. Thus, the location also identifies the permissions for each respective version. Different versions of data items can be associated with different permissions.
  • a first user can grant permission to a second user to read and write to forward versions of the data item.
  • versions 1-5 of the data item already exist at the time the second user was granted permission, the second user would still not have access to versions 1-5. However, the second user would have access to versions 6 and on. If after the tenth version, the first user rescinds the permission of the second user, the second user would still maintain access to versions 6-10, but would no longer have access for later versions (versions 11 and on). This is because the versions are stored in the versions store according to permissions and they are not moved when permissions change for later versions.
  • the associated permissions can be shown, for example, as:
  • Data item versions 1-5 No permissions to the second user.
  • Data item versions 6-10 Read and Write permission for second user.
  • Data item versions 11 and on No permissions to the second user.
  • versions can be moved as permissions change so that all versions of a data item maintain consistent permissions.
  • Those versions of the one or more versions of the data item to which the user has permission are presented (step 408 ).
  • the versions can be presented in a list or other visual representation of versions.
  • a list of versions is generated with associated links (e.g., uniform resource locator links) to the corresponding versions of the data item.
  • the versions can be presented as items identifying a path to the location of the respective versions in the permissions tree.
  • the list can include all versions or can include only those versions to which the requesting user has permission. For example, when presenting a list of all of the versions, the links to those in which the user does not have access will not be active. For those that the user does have permission, the user can select the version from the list using the link, which causes the selected version of the data item to be accessed (e.g., a file can be opened by the associated application).
  • the permissions of the current data item is identified. If the requesting user does not have permission to the current version of the data item, than no versions of the data item are presented to the user. Thus, access to any versions of a data item can be predicated on access to the current data item.
  • FIG. 5 illustrates an example architecture of a system 500 .
  • the system architecture 500 is capable of performing operations for storing versions of data items based on permissions.
  • the architecture 500 includes one or more processors 502 (e.g., IBM PowerPC, Intel Pentium 4, etc.), one or more display devices 804 (e.g., CRT, LCD), graphics processing units 506 (e.g., NVIDIA GeForce, etc.), a network interface 508 (e.g., Ethernet, FireWire, USB, etc.), input devices 510 (e.g., keyboard, mouse, etc.), and one or more computer-readable mediums 512 .
  • processors 502 e.g., IBM PowerPC, Intel Pentium 4, etc.
  • display devices 804 e.g., CRT, LCD
  • graphics processing units 506 e.g., NVIDIA GeForce, etc.
  • a network interface 508 e.g., Ethernet, FireWire, USB, etc.
  • input devices 510
  • the term “computer-readable medium” refers to any medium that participates in providing instructions to a processor 502 for execution.
  • the computer-readable medium 512 further includes an operating system 516 (e.g., Mac OS®, Windows®, Linux, etc.), a network communication module 518 , a permissions versioning manager 520 , and other applications 524 .
  • the operating system 516 can be multi-user, multiprocessing, multitasking, multithreading, real-time and the like.
  • the operating system 516 performs basic tasks, including but not limited to: recognizing input from input devices 510 ; sending output to display devices 504 ; keeping track of files and directories on computer-readable mediums 512 (e.g., memory or a storage device); controlling peripheral devices (e.g., disk drives, printers, etc.); and managing traffic on the one or more buses 514 .
  • the network communications module 518 includes various components for establishing and maintaining network connections (e.g., software for implementing communication protocols, such as TCP/IP, HTTP, Ethernet, etc.).
  • the permissions versioning manager 520 provides various software components for performing the various functions for storing versions of data items based on permissions, as described with respect to FIGS. 1-4 .
  • Embodiments of the subject matter and the operations described in this specification can be implemented in digital electronic circuitry, or in computer software, firmware, or hardware, including the structures disclosed in this specification and their structural equivalents, or in combinations of one or more of them.
  • Embodiments of the subject matter described in this specification can be implemented as one or more computer programs, i.e., one or more modules of computer program instructions, encoded on computer storage medium for execution by, or to control the operation of, data processing apparatus.
  • the program instructions can be encoded on an artificially-generated propagated signal, e.g., a machine-generated electrical, optical, or electromagnetic signal, that is generated to encode information for transmission to suitable receiver apparatus for execution by a data processing apparatus.
  • a computer storage medium can be, or be included in, a computer-readable storage device, a computer-readable storage substrate, a random or serial access memory array or device, or a combination of one or more of them.
  • a computer storage medium is not a propagated signal, a computer storage medium can be a source or destination of computer program instructions encoded in an artificially-generated propagated signal.
  • the computer storage medium can also be, or be included in, one or more separate physical components or media (e.g., multiple CDs, disks, or other storage devices).
  • the operations described in this specification can be implemented as operations performed by a data processing apparatus on data stored on one or more computer-readable storage devices or received from other sources.
  • the term “data processing apparatus” encompasses all kinds of apparatus, devices, and machines for processing data, including by way of example a programmable processor, a computer, a system on a chip, or multiple ones, or combinations, of the foregoing
  • the apparatus can include special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit).
  • the apparatus can also include, in addition to hardware, code that creates an execution environment for the computer program in question, e.g., code that constitutes processor firmware, a protocol stack, a database management system, an operating system, a cross-platform runtime environment, a virtual machine, or a combination of one or more of them.
  • the apparatus and execution environment can realize various different computing model infrastructures, such as web services, distributed computing and grid computing infrastructures.
  • a computer program (also known as a program, software, software application, script, or code) can be written in any form of programming language, including compiled or interpreted languages, declarative or procedural languages, and it can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, object, or other unit suitable for use in a computing environment.
  • a computer program may, but need not, correspond to a file in a file system.
  • a program can be stored in a portion of a file that holds other programs or data (e.g., one or more scripts stored in a markup language document), in a single file dedicated to the program in question, or in multiple coordinated files (e.g., files that store one or more modules, sub-programs, or portions of code).
  • a computer program can be deployed to be executed on one computer or on multiple computers that are located at one site or distributed across multiple sites and interconnected by a communication network.
  • the processes and logic flows described in this specification can be performed by one or more programmable processors executing one or more computer programs to perform actions by operating on input data and generating output.
  • the processes and logic flows can also be performed by, and apparatus can also be implemented as, special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit).
  • processors suitable for the execution of a computer program include, by way of example, both general and special purpose microprocessors, and any one or more processors of any kind of digital computer.
  • a processor will receive instructions and data from a read-only memory or a random access memory or both.
  • the essential elements of a computer are a processor for performing actions in accordance with instructions and one or more memory devices for storing instructions and data.
  • a computer will also include, or be operatively coupled to receive data from or transfer data to, or both, one or more mass storage devices for storing data, e.g., magnetic, magneto-optical disks, or optical disks.
  • mass storage devices for storing data, e.g., magnetic, magneto-optical disks, or optical disks.
  • a computer need not have such devices.
  • a computer can be embedded in another device, e.g., a mobile telephone, a personal digital assistant (PDA), a mobile audio or video player, a game console, a Global Positioning System (GPS) receiver, or a portable storage device (e.g., a universal serial bus (USB) flash drive), to name just a few.
  • Devices suitable for storing computer program instructions and data include all forms of non-volatile memory, media and memory devices, including by way of example semiconductor memory devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks.
  • the processor and the memory can be supplemented by, or incorporated in, special purpose logic circuitry.
  • a computer having a display device, e.g., a CRT (cathode ray tube) or LCD (liquid crystal display) monitor, for displaying information to the user and a keyboard and a pointing device, e.g., a mouse or a trackball, by which the user can provide input to the computer.
  • a display device e.g., a CRT (cathode ray tube) or LCD (liquid crystal display) monitor
  • keyboard and a pointing device e.g., a mouse or a trackball
  • Other kinds of devices can be used to provide for interaction with a user as well; for example, feedback provided to the user can be any form of sensory feedback, e.g., visual feedback, auditory feedback, or tactile feedback; and input from the user can be received in any form, including acoustic, speech, or tactile input.
  • a computer can interact with a user by sending documents to and receiving documents from a device that is used by the user; for example, by sending web pages to a
  • Embodiments of the subject matter described in this specification can be implemented in a computing system that includes a back-end component, e.g., as a data server, or that includes a middleware component, e.g., an application server, or that includes a front-end component, e.g., a client computer having a graphical user interface or a Web browser through which a user can interact with an implementation of the subject matter described in this specification, or any combination of one or more such back-end, middleware, or front-end components.
  • the components of the system can be interconnected by any form or medium of digital data communication, e.g., a communication network.
  • Examples of communication networks include a local area network (“LAN”) and a wide area network (“WAN”), an inter-network (e.g., the Internet), and peer-to-peer networks (e.g., ad hoc peer-to-peer networks).
  • LAN local area network
  • WAN wide area network
  • inter-network e.g., the Internet
  • peer-to-peer networks e.g., ad hoc peer-to-peer networks.
  • the computing system can include clients and servers.
  • a client and server are generally remote from each other and typically interact through a communication network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other.
  • a server transmits data (e.g., an HTML page) to a client device (e.g., for purposes of displaying data to and receiving user input from a user interacting with the client device).
  • client device e.g., for purposes of displaying data to and receiving user input from a user interacting with the client device.
  • Data generated at the client device e.g., a result of the user interaction

Abstract

Methods, systems, and apparatus, including computer programs encoded on a computer storage medium, for storing data according to permissions. In general, one aspect of the subject matter described in this specification can be embodied in methods that include the actions of identifying a version of a data item to be stored; determining permissions associated with the version of the data item; and storing the version of the data item at a storage location that is based on the determined permissions.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is a divisional application of U.S. patent application Ser. No. 13/250,807, filed Sep. 30, 2011,which claims the benefit under 35 U.S.C. §119(e) of the filing date of U.S. Patent Application No. 61/433,157, for Organizing Versioning According to Permissions, which was filed on Jan. 14, 2011, and which is incorporated here by reference.
  • BACKGROUND
  • This specification relates to storing data.
  • Typical systems allow for the storage of multiple versions of a data item (e.g., versions of a file stored in a backup). In some conventional systems, these versions are stored according to the location of the data item in a hierarchical file system, for example, within the file system hierarchy of a local device or in a backup that mimics the file system hierarchy. Thus, storing a version typically requires storing the entire file system directory path. Conventionally, all versions of the data item have the same permissions as the permissions of the current data item.
  • SUMMARY
  • This specification describes technologies relating to storing data according to permissions.
  • In general, one aspect of the subject matter described in this specification can be embodied in methods that include the actions of identifying a version of a data item to be stored; determining permissions associated with the version of the data item; and storing the version of the data item at a storage location that is based on the determined permissions. Other embodiments of this aspect include corresponding systems, apparatus, and computer programs recorded on computer storage devices, each configured to perform the operations of the methods.
  • These and other embodiments can each optionally include one or more of the following features. Storing the version of the data item comprises storing the version of the data item within a node of a permissions tree corresponding to the determined permissions. Storing the version further comprises: determining whether there is an existing branch of the permissions tree associated with the determined permission; and if not, generating a new branch of the permissions tree associated with the determined permission. The permissions tree includes one or more nodes, each node associated with specific permissions. The version is stored without regard to the location of the data item with respect to a file system hierarchy. Access to the version of the data item by a user is controlled by the permissions associated with the storage location in which the version of the data item is stored. The version of the data item has a different permissions than a second version of the data item, wherein the second version of the data item is stored at a second storage location that is based on the permissions of the second version of the data item.
  • In general, one aspect of the subject matter described in this specification can be embodied in methods that include the actions of receiving a request from a user for one or more versions of a data item; identifying the one or more versions of the data item; determining the permissions associated with each version of the one or more versions of the data item; and providing access only to those versions of the one or more versions of the data item to which the user has permission. Other embodiments of this aspect include corresponding systems, apparatus, and computer programs recorded on computer storage devices, each configured to perform the operations of the methods.
  • These and other embodiments can each optionally include one or more of the following features. determining the permissions includes searching a database for the one or more versions of the data item, the database including an ordering of versions for each of a plurality of data items and a location within a permissions tree of each version. The location of each version of the data item is based on the assigned permissions for each respective version of the data item. All identified versions of the one or more versions of the data item are presented, but only those to which the user has permissions are accessible. Only those versions of the one or more versions of the data item to which the user has permission are presented.
  • Particular embodiments of the subject matter described in this specification can be implemented so as to realize one or more of the following advantages. A permissions based versioning system allows versions of data items to be stored more compactly in a permissions tree. Thus, there is no need to store an entire file hierarchy associated with the stored versions of the data items. The permissions tree only adds additional nodes when new permissions are generated. Permissions for particular versions can remain fixed over time so that access to versions can be different based on the permissions at the time respective versions are generated.
  • The details of one or more embodiments of the subject matter described in this specification are set forth in the accompanying drawings and the description below. Other features, aspects, and advantages of the subject matter will become apparent from the description, the drawings, and the claims.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is an example representation of a permissions based data store.
  • FIG. 2 is a flow diagram of an example process for storing a data item version according to permissions.
  • FIG. 3 is a block diagram of an example permissions based versioning system.
  • FIG. 4 is a flow diagram of an example process for retrieving a data item.
  • FIG. 5 illustrates an example architecture of a system.
  • Like reference numbers and designations in the various drawings indicate like elements.
  • DETAILED DESCRIPTION
  • A system can store one or more versions of a data item (e.g., a file) for later retrieval. A data item can be a file (e.g., a document, media file (movie, image, audio)) or other data. Versions of data items are stored according to their permissions at the time of storage. As a result, the original location within the file system is not used. Instead, versions of data items are stored and indexed according to the permissions assigned to that version of the data item at the time of storage. Each version of the data item is stored according to the permissions of that version without changing previously stored versions.
  • For example, if a first version has permissions allowing User A to read the file, the first version is stored according to the permission “User A Read”. If a second version has different permissions, e.g., User B allowed to read and User A no longer having permissions, the second version is stored according to the permission “User B Read”. User A will not have access to the second version since User A does not have permission for that version of the data item. However, User A will retain access to the first version. In some implementations, when a user requests one or more versions of a data item, the permissions associated with that data item are identified and only those data items to which the user has permissions are presented.
  • A useful analogy is to a set of permissions buckets where each bucket has particular permissions (e.g., User A Read). Versions of data items are placed in the corresponding buckets that have matching permissions. A new bucket is generated if the permissions of the version to be stored do not have a corresponding bucket. In some implementations, once a version of a data item is placed in a bucket, it is never removed, thus the permissions are fixed for the version of the data item after being placed in a particular bucket.
  • FIG. 1 is an example representation of a permissions based data store 100. In particular, the permissions based data store 100 illustrates that the versions of data items are not stored according to their file system location, but instead according to their respective permissions. A permissions tree is generated in which each node is associated with particular permissions. Different types of permissions are possible including read access, write access, and read-write access. Other types of permissions can be assigned, for example, an execute permission that grants the ability to execute a file (e.g., a script or other executable file type). Permissions can be assigned to specific users (or user accounts) or groups of users. Additionally, a data item can be associated with more than one type of permission and the permissions can be assigned to more than one distinct user. In some implementations, permissions are subtractive such that full permissions are granted to all data items until limited by more restrictive permissions.
  • Specifically, permissions based data store 100 shows a root node 102 and three permissions nodes 104, 106, and 108 branching from root node 102. Node 104 is associated with the permission “Fred Read-Write”. Node 106 is associated with the permission “Fred and Bob Read”. Node 108 is associated with the permission “Group Read” where a Group could be all users or some specified group of users.
  • Versions of data items are stored according to the assigned permissions. Thus, for example, Data Item 1.1 refers to version 1 of data item 1. As shown in FIG. 1, Data Item 1 includes versions 1 and 2 as having permission “Fred Read-Write”. However, Data Item 1.3 (version three of data item 1) has permissions “Group Read”. Thus, while Fred alone has access to versions 1 and 2, version 3 is accessible by all users of the group. As another example, Fred alone has access to version 4 of data item 3 (Data Item 3.4) while Fred and Bob have read access to versions 1, 2, 3, and 5 of data item 3. Thus, Bob cannot access version 4 of data item 3, but can access the other versions. While the versions of the data items are shown for clarity as ordered (e.g. by version number or by data item), the versions of the data items may or may not be stored in an ordered form.
  • FIG. 2 is a flow diagram of an example process 200 for storing a data item version according to permissions assigned to that data item. The process 200 can be performed, for example, by one or more computing devices (e.g., a computer, mobile device, tablet device, personal data assistant, server, or other device).
  • A version of a data item to be stored is identified (step 202). A version of a data item can be identified in a number of ways. For example, a version can be generated based on a user editing of the data item. In another example, saving a modified data item can result in a new version being stored. In some implementations, versions are generated and stored prior to writing new modifications or saving a new current data item. For example, a current data item can be modified. The unmodified version is stored as a past version while the modification is applied to the current data item. For example, in some implementations, modifications to a data item are intercepted prior to execution and a version is generated prior to the modification taking place.
  • In some implementations, the current data item is a version that is also stored with the earlier versions of the data item (if any). The current data items and earlier versions may or may not be stored in an ordered form. In some other implementations, the current data item resides only in the file system hierarchy and is not stored with the prior versions (e.g., in the permissions based data store).
  • A determination is made of the permissions associated with the version of the data item to be stored (step 204). In some implementations, the data item is inspected to determine all assigned permissions. The permissions can include different permissions types for one or more users. Thus, the type of permissions for each assigned user is determined. Permissions can be stored as part of the data item, attributes of the data item, or as part of an access control list for the data item or for a group of data items.
  • The version of the data item is stored within a permissions tree based on the determined permissions (step 206). For example, the version of the data item can be associated with a particular node of a permission tree. If the particular permissions of the data item already exist in the permissions tree, then the data item version is stored in a location associated with the corresponding permissions. Additionally, in some implementations, permissions are subtractive such that unless specified otherwise all users have permission. Thus, a compact permissions tree can be formed in which a full group node allows full access to all users. All versions can be stored with this node unless otherwise specified with more limiting permissions (e.g., permissions to a single user).
  • A new node in the permissions tree can be generated when the determined permissions do not appear already in the permissions tree. For example, if a version of the data item to be stored has permissions “Fred Read” this means only user Fred can read the data item. If the permissions tree only has a node for “full group access” a new node in the permissions tree is generated for “Fred Read”. The version of the data item is then added to the newly generated branch of the permissions tree.
  • In some implementations, adding a new version to the permissions tree also includes updating a versions database that includes an ordered list of versions for each data item and a respective location in the permissions tree.
  • FIG. 3 is a block diagram of an example permissions based versioning system 300. The permissions based versioning system includes a versions database 302 and a permissions store 304. Particular versions can be requested by and/or presented to a user 306 through a particular user interface 308. For example, a user interface 308 can be a user interface to the file system (e.g., a search utility or application, backup application, or specific versioning interface).
  • The permissions store 304 includes the versions stored according to assigned permissions in the permissions tree. The versions database 302 can include an ordering of versions of each data item and their respective locations within the permissions store 304 (e.g., a particular permissions node in the permissions tree). Alternatively, in some implementations, the versions database 302 includes the version of each data item in a different or unordered form that maintains an identification of their respective locations within the permissions store 304. Thus, when a request for versions of a particular data item is received, the versions database 302 can be searched to identify all versions of that data item and their respective locations in the permissions store 304. Additionally, since the permissions store is organized by permissions, the locations in the database also identify the permissions of each version.
  • In some implementations, the versions database 302 includes metadata associated within each version. The metadata for a particular version can include information on how the particular version was generated, user explanatory text, contextual information, conflict resolution information, and other annotations.
  • FIG. 4 is a flow diagram of an example process 400 for retrieving a data item. The process 400 can be performed, for example, by one or more computing devices as described above with respect to FIG. 3.
  • A request is received from a user for one or more versions of a data item (step 402). The request can be received, for example, as part of a search performed in a user interface to the file system. For example, a user working in the current data item can request prior versions of that data item in order to identify particular changes or recover particular content found in an earlier version. In some implementations, the user can input search parameters into a search interface to include one or more versions of data items in the search rather than just the current data items in the file system.
  • One or more versions of the data item are identified (step 404). In some implementations, a database of versions is searched to identify stored versions of the data item. The versions can be indexed in the database by data item in order to identify all versions of the data item. In some implementations, an identifier for the data item is used to identify versions of the data item within the database. For example, each data item can have a unique identifier. Additionally, each version stored can be associated with that unique identifier. Thus, the unique identifier can be used to identify each version of the data item.
  • The permissions associated with each version of the one or more versions of the data item are determined (step 406). Different versions of the same data item can have different permissions. In some implementations, determining permissions for a version includes examining the permissions associated with parent or ancestor items in a hierarchical file system. Each version has an identified location in a permissions store where the version of the data item is stored. Thus, the location also identifies the permissions for each respective version. Different versions of data items can be associated with different permissions.
  • For example, a first user can grant permission to a second user to read and write to forward versions of the data item. Thus, if versions 1-5 of the data item already exist at the time the second user was granted permission, the second user would still not have access to versions 1-5. However, the second user would have access to versions 6 and on. If after the tenth version, the first user rescinds the permission of the second user, the second user would still maintain access to versions 6-10, but would no longer have access for later versions (versions 11 and on). This is because the versions are stored in the versions store according to permissions and they are not moved when permissions change for later versions. The associated permissions can be shown, for example, as:
  • Data item versions 1-5: No permissions to the second user.
    Data item versions 6-10: Read and Write permission for second user.
    Data item versions 11 and on: No permissions to the second user.
    However, in some other implementations, versions can be moved as permissions change so that all versions of a data item maintain consistent permissions.
  • Those versions of the one or more versions of the data item to which the user has permission are presented (step 408). For example, the versions can be presented in a list or other visual representation of versions. In some implementations, a list of versions is generated with associated links (e.g., uniform resource locator links) to the corresponding versions of the data item. Alternatively, the versions can be presented as items identifying a path to the location of the respective versions in the permissions tree. The list can include all versions or can include only those versions to which the requesting user has permission. For example, when presenting a list of all of the versions, the links to those in which the user does not have access will not be active. For those that the user does have permission, the user can select the version from the list using the link, which causes the selected version of the data item to be accessed (e.g., a file can be opened by the associated application).
  • In some implementations, the permissions of the current data item is identified. If the requesting user does not have permission to the current version of the data item, than no versions of the data item are presented to the user. Thus, access to any versions of a data item can be predicated on access to the current data item.
  • FIG. 5 illustrates an example architecture of a system 500. The system architecture 500 is capable of performing operations for storing versions of data items based on permissions. The architecture 500 includes one or more processors 502 (e.g., IBM PowerPC, Intel Pentium 4, etc.), one or more display devices 804 (e.g., CRT, LCD), graphics processing units 506 (e.g., NVIDIA GeForce, etc.), a network interface 508 (e.g., Ethernet, FireWire, USB, etc.), input devices 510 (e.g., keyboard, mouse, etc.), and one or more computer-readable mediums 512. These components exchange communications and data using one or more buses 514 (e.g., EISA, PCI, PCI Express, etc.).
  • The term “computer-readable medium” refers to any medium that participates in providing instructions to a processor 502 for execution. The computer-readable medium 512 further includes an operating system 516 (e.g., Mac OS®, Windows®, Linux, etc.), a network communication module 518, a permissions versioning manager 520, and other applications 524.
  • The operating system 516 can be multi-user, multiprocessing, multitasking, multithreading, real-time and the like. The operating system 516 performs basic tasks, including but not limited to: recognizing input from input devices 510; sending output to display devices 504; keeping track of files and directories on computer-readable mediums 512 (e.g., memory or a storage device); controlling peripheral devices (e.g., disk drives, printers, etc.); and managing traffic on the one or more buses 514. The network communications module 518 includes various components for establishing and maintaining network connections (e.g., software for implementing communication protocols, such as TCP/IP, HTTP, Ethernet, etc.).
  • The permissions versioning manager 520 provides various software components for performing the various functions for storing versions of data items based on permissions, as described with respect to FIGS. 1-4.
  • Embodiments of the subject matter and the operations described in this specification can be implemented in digital electronic circuitry, or in computer software, firmware, or hardware, including the structures disclosed in this specification and their structural equivalents, or in combinations of one or more of them. Embodiments of the subject matter described in this specification can be implemented as one or more computer programs, i.e., one or more modules of computer program instructions, encoded on computer storage medium for execution by, or to control the operation of, data processing apparatus. Alternatively or in addition, the program instructions can be encoded on an artificially-generated propagated signal, e.g., a machine-generated electrical, optical, or electromagnetic signal, that is generated to encode information for transmission to suitable receiver apparatus for execution by a data processing apparatus. A computer storage medium can be, or be included in, a computer-readable storage device, a computer-readable storage substrate, a random or serial access memory array or device, or a combination of one or more of them. Moreover, while a computer storage medium is not a propagated signal, a computer storage medium can be a source or destination of computer program instructions encoded in an artificially-generated propagated signal. The computer storage medium can also be, or be included in, one or more separate physical components or media (e.g., multiple CDs, disks, or other storage devices).
  • The operations described in this specification can be implemented as operations performed by a data processing apparatus on data stored on one or more computer-readable storage devices or received from other sources.
  • The term “data processing apparatus” encompasses all kinds of apparatus, devices, and machines for processing data, including by way of example a programmable processor, a computer, a system on a chip, or multiple ones, or combinations, of the foregoing The apparatus can include special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit). The apparatus can also include, in addition to hardware, code that creates an execution environment for the computer program in question, e.g., code that constitutes processor firmware, a protocol stack, a database management system, an operating system, a cross-platform runtime environment, a virtual machine, or a combination of one or more of them. The apparatus and execution environment can realize various different computing model infrastructures, such as web services, distributed computing and grid computing infrastructures.
  • A computer program (also known as a program, software, software application, script, or code) can be written in any form of programming language, including compiled or interpreted languages, declarative or procedural languages, and it can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, object, or other unit suitable for use in a computing environment. A computer program may, but need not, correspond to a file in a file system. A program can be stored in a portion of a file that holds other programs or data (e.g., one or more scripts stored in a markup language document), in a single file dedicated to the program in question, or in multiple coordinated files (e.g., files that store one or more modules, sub-programs, or portions of code). A computer program can be deployed to be executed on one computer or on multiple computers that are located at one site or distributed across multiple sites and interconnected by a communication network.
  • The processes and logic flows described in this specification can be performed by one or more programmable processors executing one or more computer programs to perform actions by operating on input data and generating output. The processes and logic flows can also be performed by, and apparatus can also be implemented as, special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit).
  • Processors suitable for the execution of a computer program include, by way of example, both general and special purpose microprocessors, and any one or more processors of any kind of digital computer. Generally, a processor will receive instructions and data from a read-only memory or a random access memory or both. The essential elements of a computer are a processor for performing actions in accordance with instructions and one or more memory devices for storing instructions and data. Generally, a computer will also include, or be operatively coupled to receive data from or transfer data to, or both, one or more mass storage devices for storing data, e.g., magnetic, magneto-optical disks, or optical disks. However, a computer need not have such devices. Moreover, a computer can be embedded in another device, e.g., a mobile telephone, a personal digital assistant (PDA), a mobile audio or video player, a game console, a Global Positioning System (GPS) receiver, or a portable storage device (e.g., a universal serial bus (USB) flash drive), to name just a few. Devices suitable for storing computer program instructions and data include all forms of non-volatile memory, media and memory devices, including by way of example semiconductor memory devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks. The processor and the memory can be supplemented by, or incorporated in, special purpose logic circuitry.
  • To provide for interaction with a user, embodiments of the subject matter described in this specification can be implemented on a computer having a display device, e.g., a CRT (cathode ray tube) or LCD (liquid crystal display) monitor, for displaying information to the user and a keyboard and a pointing device, e.g., a mouse or a trackball, by which the user can provide input to the computer. Other kinds of devices can be used to provide for interaction with a user as well; for example, feedback provided to the user can be any form of sensory feedback, e.g., visual feedback, auditory feedback, or tactile feedback; and input from the user can be received in any form, including acoustic, speech, or tactile input. In addition, a computer can interact with a user by sending documents to and receiving documents from a device that is used by the user; for example, by sending web pages to a web browser on a user's client device in response to requests received from the web browser.
  • Embodiments of the subject matter described in this specification can be implemented in a computing system that includes a back-end component, e.g., as a data server, or that includes a middleware component, e.g., an application server, or that includes a front-end component, e.g., a client computer having a graphical user interface or a Web browser through which a user can interact with an implementation of the subject matter described in this specification, or any combination of one or more such back-end, middleware, or front-end components. The components of the system can be interconnected by any form or medium of digital data communication, e.g., a communication network. Examples of communication networks include a local area network (“LAN”) and a wide area network (“WAN”), an inter-network (e.g., the Internet), and peer-to-peer networks (e.g., ad hoc peer-to-peer networks).
  • The computing system can include clients and servers. A client and server are generally remote from each other and typically interact through a communication network. The relationship of client and server arises by virtue of computer programs running on the respective computers and having a client-server relationship to each other. In some embodiments, a server transmits data (e.g., an HTML page) to a client device (e.g., for purposes of displaying data to and receiving user input from a user interacting with the client device). Data generated at the client device (e.g., a result of the user interaction) can be received from the client device at the server.
  • While this specification contains many specific implementation details, these should not be construed as limitations on the scope of any inventions or of what may be claimed, but rather as descriptions of features specific to particular embodiments of particular inventions. Certain features that are described in this specification in the context of separate embodiments can also be implemented in combination in a single embodiment. Conversely, various features that are described in the context of a single embodiment can also be implemented in multiple embodiments separately or in any suitable subcombination. Moreover, although features may be described above as acting in certain combinations and even initially claimed as such, one or more features from a claimed combination can in some cases be excised from the combination, and the claimed combination may be directed to a subcombination or variation of a subcombination.
  • Similarly, while operations are depicted in the drawings in a particular order, this should not be understood as requiring that such operations be performed in the particular order shown or in sequential order, or that all illustrated operations be performed, to achieve desirable results. In certain circumstances, multitasking and parallel processing may be advantageous. Moreover, the separation of various system components in the embodiments described above should not be understood as requiring such separation in all embodiments, and it should be understood that the described program components and systems can generally be integrated together in a single software product or packaged into multiple software products.
  • Thus, particular embodiments of the subject matter have been described. Other embodiments are within the scope of the following claims. In some cases, the actions recited in the claims can be performed in a different order and still achieve desirable results. In addition, the processes depicted in the accompanying figures do not necessarily require the particular order shown, or sequential order, to achieve desirable results. In certain implementations, multitasking and parallel processing may be advantageous.

Claims (18)

What is claimed is:
1-7. (canceled)
8. A method performed by a data processing apparatus, the method comprising:
receiving a request from a user for one or more versions of a data item, at least some of the versions of the data item having been generated based on modifications to the data item;
identifying the one or more versions of the data item;
determining the permissions associated with each version of the one or more versions of the data item; and
providing access only to those versions of the one or more versions of the data item to which the user has permission.
9. The method of claim 8, where determining the permissions includes searching a database for the one or more versions of the data item, the database including an ordering of versions for each of a plurality of data items and a location within a permissions tree of each version.
10. The method of claim 8, where the location of each version of the data item is based on the assigned permissions for each respective version of the data item.
11. The method of claim 8, where all identified versions of the one or more versions of the data item are presented, but only those to which the user has permissions are accessible.
12. The method of claim 8, where only those versions of the one or more versions of the data item to which the user has permission are presented.
13-19. (canceled)
20. A system comprising:
one or more computing devices operable to perform operations comprising:
receiving a request from a user for one or more versions of a data item, at least some of the versions of the data item having been generated based on modifications to the data item;
identifying the one or more versions of the data item;
determining the permissions associated with each version of the one or more versions of the data item; and
providing access only to those versions of the one or more versions of the data item to which the user has permission.
21. The system of claim 20, where determining the permissions includes searching a database for the one or more versions of the data item, the database including an ordering of versions for each of a plurality of data items and a location within a permissions tree of each version.
22. The system of claim 20, where the location of each version of the data item is based on the assigned permissions for each respective version of the data item.
23. The system of claim 20, where all identified versions of the one or more versions of the data item are presented, but only those to which the user has permissions are accessible.
24. The system of claim 20, where only those versions of the one or more versions of the data item to which the user has permission are presented.
25. (canceled)
26. A computer storage medium encoded with a computer program, the program comprising instructions that when executed by data processing apparatus cause the data processing apparatus to perform operations comprising:
receiving a request from a user for one or more versions of a data item, at least some of the versions of the data item having been generated based on modifications to the data item;
identifying the one or more versions of the data item;
determining the permissions associated with each version of the one or more versions of the data item; and
providing access only to those versions of the one or more versions of the data item to which the user has permission.
27. The computer storage medium of claim 26, where determining the permissions includes searching a database for the one or more versions of the data item, the database including an ordering of versions for each of a plurality of data items and a location within a permissions tree of each version.
28. The computer storage medium of claim 26, where the location of each version of the data item is based on the assigned permissions for each respective version of the data item.
29. The computer storage medium of claim 26, where all identified versions of the one or more versions of the data item are presented, but only those to which the user has permissions are accessible.
30. The computer storage medium of claim 26, where only those versions of the one or more versions of the data item to which the user has permission are presented.
US13/721,702 2011-01-14 2012-12-20 Organizing versioning according to permissions Abandoned US20130132439A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/721,702 US20130132439A1 (en) 2011-01-14 2012-12-20 Organizing versioning according to permissions

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US201161433157P 2011-01-14 2011-01-14
US13/250,807 US8868502B2 (en) 2011-01-14 2011-09-30 Organizing versioning according to permissions
US13/721,702 US20130132439A1 (en) 2011-01-14 2012-12-20 Organizing versioning according to permissions

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US13/250,807 Division US8868502B2 (en) 2011-01-14 2011-09-30 Organizing versioning according to permissions

Publications (1)

Publication Number Publication Date
US20130132439A1 true US20130132439A1 (en) 2013-05-23

Family

ID=46491541

Family Applications (2)

Application Number Title Priority Date Filing Date
US13/250,807 Expired - Fee Related US8868502B2 (en) 2011-01-14 2011-09-30 Organizing versioning according to permissions
US13/721,702 Abandoned US20130132439A1 (en) 2011-01-14 2012-12-20 Organizing versioning according to permissions

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US13/250,807 Expired - Fee Related US8868502B2 (en) 2011-01-14 2011-09-30 Organizing versioning according to permissions

Country Status (1)

Country Link
US (2) US8868502B2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2021124558A1 (en) * 2019-12-20 2021-06-24 日本電信電話株式会社 Control server, data sharing system, and control program

Families Citing this family (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2608060A1 (en) * 2011-12-22 2013-06-26 Amadeus Provider data tuning
US20130254699A1 (en) * 2012-03-21 2013-09-26 Intertrust Technologies Corporation Systems and methods for managing documents and other electronic content
US9202069B2 (en) 2013-06-20 2015-12-01 Cloudfinder Sweden AB Role based search
US9805209B2 (en) * 2013-07-29 2017-10-31 Berkeley Information Technology Pty Ltd Systems and methodologies for managing document access permissions
US10657113B2 (en) * 2014-01-14 2020-05-19 Baker Hughes, A Ge Company, Llc Loose coupling of metadata and actual data
US10242222B2 (en) 2014-01-14 2019-03-26 Baker Hughes, A Ge Company, Llc Compartment-based data security
CN104077517A (en) * 2014-06-30 2014-10-01 惠州Tcl移动通信有限公司 Mobile terminal user mode start method and system based on iris identification
CN105677651A (en) * 2014-11-18 2016-06-15 方正国际软件(北京)有限公司 Permission tree generation method and device
US10983732B2 (en) * 2015-07-13 2021-04-20 Pure Storage, Inc. Method and system for accessing a file
US10592546B2 (en) 2016-09-23 2020-03-17 Amazon Technologies, Inc. System for optimizing access to an indexed database
WO2018057794A1 (en) * 2016-09-23 2018-03-29 Amazon Technologies, Inc. Media asset access control system
US10346458B2 (en) 2016-09-23 2019-07-09 Amazon Technologies, Inc. Media asset access control system
US10412095B2 (en) 2016-12-22 2019-09-10 Atlassian Pty Ltd Method, apparatus, and computer program product for managing access permissions for a searchable enterprise platform

Citations (28)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5983241A (en) * 1995-07-19 1999-11-09 Fuji Xerox Co., Ltd. File management system and file management method
US6209000B1 (en) * 1997-10-31 2001-03-27 Oracle Corporation Tracking storage for data items
US6477528B1 (en) * 1999-07-29 2002-11-05 Kabushiki Kaisha Toshiba File management system, electronic filing system, hierarchical structure display method of file, computer readable recording medium recording program in which function thereof is executable
US20040003293A1 (en) * 1998-02-17 2004-01-01 Secure Computing Corporation System and method for controlling access to documents stored on an internal network
US20040133444A1 (en) * 2002-09-20 2004-07-08 Florence Defaix Version control system for software development
US20050086296A1 (en) * 2003-08-15 2005-04-21 Blackboard Inc. Content system and associated methods
US6904454B2 (en) * 2001-03-21 2005-06-07 Nokia Corporation Method and apparatus for content repository with versioning and data modeling
US20050165760A1 (en) * 2004-01-28 2005-07-28 Samsung Electronics Co., Ltd. Auto version managing system and method for use in software
US20050240572A1 (en) * 2004-04-26 2005-10-27 Taiwan Semiconductor Manufcaturing Co. New document management and access control by document's attributes for document query system
US20060080316A1 (en) * 2004-10-08 2006-04-13 Meridio Ltd Multiple indexing of an electronic document to selectively permit access to the content and metadata thereof
US7058648B1 (en) * 2000-12-01 2006-06-06 Oracle International Corporation Hierarchy-based secured document repository
US7152224B1 (en) * 2000-11-21 2006-12-19 Microsoft Corporation Versioned project associations
US20070005595A1 (en) * 2005-06-30 2007-01-04 Neal Gafter Document access control
US7200593B2 (en) * 2001-01-12 2007-04-03 Ns Solutions Corporation Document management system
US20070143292A1 (en) * 2005-12-19 2007-06-21 Hiroshi Nozaki Method, system, and program product for access control to resource content
US20070260648A1 (en) * 2006-05-05 2007-11-08 Microsoft Corporation Permission-based document server
US20080263370A1 (en) * 2005-09-16 2008-10-23 Koninklijke Philips Electronics, N.V. Cryptographic Role-Based Access Control
US7472122B2 (en) * 2004-11-09 2008-12-30 Hitachi, Ltd. Computer system and method for managing file versions
US7487154B2 (en) * 1999-11-29 2009-02-03 Actuate Corporation Method and apparatus for generating page-level security in a computer generated report
US20090055397A1 (en) * 2007-08-21 2009-02-26 International Business Machines Corporation Multi-Dimensional Access Control List
US20100050272A1 (en) * 2001-05-31 2010-02-25 Contentguard Holdings, Inc. Method and apparatus for hierarchical assignment of rights to documents and documents having such rights
US20100158254A1 (en) * 2008-12-18 2010-06-24 Sap Ag Distributed access control for document centric collaborations
US7765195B2 (en) * 2006-11-07 2010-07-27 Microsoft Corporation Trimmed and merged search result sets in a versioned data environment
US7788489B2 (en) * 2003-05-06 2010-08-31 Oracle International Corporation System and method for permission administration using meta-permissions
US7882544B2 (en) * 2004-07-12 2011-02-01 International Business Machines Corporation Inherited role-based access control system, method and program product
US8256010B2 (en) * 2009-04-01 2012-08-28 Microsoft Corporation Providing access to a data item using access graphs
US8613108B1 (en) * 2009-03-26 2013-12-17 Adobe Systems Incorporated Method and apparatus for location-based digital rights management
US8635221B2 (en) * 2002-12-20 2014-01-21 International Business Machines Corporation Method, system, and program product for managing access to data items in a database

Family Cites Families (25)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5317729A (en) * 1990-10-24 1994-05-31 International Business Machines Corporation Method for the storage of multi-versioned data with retrieval based on searched query
US5778395A (en) * 1995-10-23 1998-07-07 Stac, Inc. System for backing up files from disk volumes on multiple nodes of a computer network
JPH09128380A (en) * 1995-10-30 1997-05-16 Matsushita Electric Ind Co Ltd Document storing and managing system
US7062532B1 (en) * 1999-03-25 2006-06-13 Autodesk, Inc. Method and apparatus for drawing collaboration on a network
US6609215B1 (en) * 1999-10-21 2003-08-19 International Business Machines Corporation Method and system for implementing network filesystem-based customized computer system automated rebuild tool
US6885748B1 (en) * 1999-10-23 2005-04-26 Contentguard Holdings, Inc. System and method for protection of digital works
US20020019827A1 (en) * 2000-06-05 2002-02-14 Shiman Leon G. Method and apparatus for managing documents in a centralized document repository system
EP1204028A1 (en) * 2000-10-31 2002-05-08 Hewlett-Packard Company, A Delaware Corporation Computer file storage and recovery method
US6684224B2 (en) 2001-01-16 2004-01-27 Chipdata, Inc. Remote database update method and apparatus
US20020143735A1 (en) * 2001-03-30 2002-10-03 Akin Ayi User scope-based data organization system
US20090030948A9 (en) * 2001-08-31 2009-01-29 Lipman L K Method and apparatus for matter-centric document management
JP4284497B2 (en) * 2003-01-29 2009-06-24 日本電気株式会社 Information sharing method, apparatus, and program
US7234077B2 (en) * 2003-06-24 2007-06-19 International Business Machines Corporation Rapid restoration of file system usage in very large file systems
US7672979B1 (en) * 2005-04-22 2010-03-02 Symantec Operating Corporation Backup and restore techniques using inconsistent state indicators
US7647466B1 (en) 2006-09-28 2010-01-12 Emc Corporation Linear space allocation mechanisms in data space
US7707455B2 (en) * 2007-03-14 2010-04-27 Microsoft Corporation Self-service recovery of application data
US8296320B1 (en) * 2007-04-30 2012-10-23 Network Appliance, Inc. Method and system for storing clients' access permissions in a cache
US8239351B2 (en) * 2007-06-07 2012-08-07 Apple Inc. Methods and systems for managing permissions data
US8276121B2 (en) * 2007-06-19 2012-09-25 Microsoft Corporation Selection of versioned resource among multiple compatible versions
US8095509B2 (en) * 2007-08-11 2012-01-10 Novell, Inc. Techniques for retaining security restrictions with file versioning
US20100023520A1 (en) * 2008-07-28 2010-01-28 Viewfinity Inc. Encapsulated file management systems
US8315996B2 (en) 2008-08-13 2012-11-20 International Business Machines Corporation Efficient management of customized functionality within shared data objects
US9501368B2 (en) * 2008-09-30 2016-11-22 Veritas Technologies Llc Backing up and restoring selected versioned objects from a monolithic database backup
JP5346549B2 (en) * 2008-10-29 2013-11-20 株式会社日立ソリューションズ File search system and file search server device
US20100269164A1 (en) * 2009-04-15 2010-10-21 Microsoft Corporation Online service data management

Patent Citations (28)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5983241A (en) * 1995-07-19 1999-11-09 Fuji Xerox Co., Ltd. File management system and file management method
US6209000B1 (en) * 1997-10-31 2001-03-27 Oracle Corporation Tracking storage for data items
US20040003293A1 (en) * 1998-02-17 2004-01-01 Secure Computing Corporation System and method for controlling access to documents stored on an internal network
US6477528B1 (en) * 1999-07-29 2002-11-05 Kabushiki Kaisha Toshiba File management system, electronic filing system, hierarchical structure display method of file, computer readable recording medium recording program in which function thereof is executable
US7487154B2 (en) * 1999-11-29 2009-02-03 Actuate Corporation Method and apparatus for generating page-level security in a computer generated report
US7152224B1 (en) * 2000-11-21 2006-12-19 Microsoft Corporation Versioned project associations
US7058648B1 (en) * 2000-12-01 2006-06-06 Oracle International Corporation Hierarchy-based secured document repository
US7200593B2 (en) * 2001-01-12 2007-04-03 Ns Solutions Corporation Document management system
US6904454B2 (en) * 2001-03-21 2005-06-07 Nokia Corporation Method and apparatus for content repository with versioning and data modeling
US20100050272A1 (en) * 2001-05-31 2010-02-25 Contentguard Holdings, Inc. Method and apparatus for hierarchical assignment of rights to documents and documents having such rights
US20040133444A1 (en) * 2002-09-20 2004-07-08 Florence Defaix Version control system for software development
US8635221B2 (en) * 2002-12-20 2014-01-21 International Business Machines Corporation Method, system, and program product for managing access to data items in a database
US7788489B2 (en) * 2003-05-06 2010-08-31 Oracle International Corporation System and method for permission administration using meta-permissions
US20050086296A1 (en) * 2003-08-15 2005-04-21 Blackboard Inc. Content system and associated methods
US20050165760A1 (en) * 2004-01-28 2005-07-28 Samsung Electronics Co., Ltd. Auto version managing system and method for use in software
US20050240572A1 (en) * 2004-04-26 2005-10-27 Taiwan Semiconductor Manufcaturing Co. New document management and access control by document's attributes for document query system
US7882544B2 (en) * 2004-07-12 2011-02-01 International Business Machines Corporation Inherited role-based access control system, method and program product
US20060080316A1 (en) * 2004-10-08 2006-04-13 Meridio Ltd Multiple indexing of an electronic document to selectively permit access to the content and metadata thereof
US7472122B2 (en) * 2004-11-09 2008-12-30 Hitachi, Ltd. Computer system and method for managing file versions
US20070005595A1 (en) * 2005-06-30 2007-01-04 Neal Gafter Document access control
US20080263370A1 (en) * 2005-09-16 2008-10-23 Koninklijke Philips Electronics, N.V. Cryptographic Role-Based Access Control
US20070143292A1 (en) * 2005-12-19 2007-06-21 Hiroshi Nozaki Method, system, and program product for access control to resource content
US20070260648A1 (en) * 2006-05-05 2007-11-08 Microsoft Corporation Permission-based document server
US7765195B2 (en) * 2006-11-07 2010-07-27 Microsoft Corporation Trimmed and merged search result sets in a versioned data environment
US20090055397A1 (en) * 2007-08-21 2009-02-26 International Business Machines Corporation Multi-Dimensional Access Control List
US20100158254A1 (en) * 2008-12-18 2010-06-24 Sap Ag Distributed access control for document centric collaborations
US8613108B1 (en) * 2009-03-26 2013-12-17 Adobe Systems Incorporated Method and apparatus for location-based digital rights management
US8256010B2 (en) * 2009-04-01 2012-08-28 Microsoft Corporation Providing access to a data item using access graphs

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2021124558A1 (en) * 2019-12-20 2021-06-24 日本電信電話株式会社 Control server, data sharing system, and control program

Also Published As

Publication number Publication date
US8868502B2 (en) 2014-10-21
US20120185435A1 (en) 2012-07-19

Similar Documents

Publication Publication Date Title
US8868502B2 (en) Organizing versioning according to permissions
US9294566B2 (en) Data synchronization
KR101596559B1 (en) Cloud storage
Lublinsky et al. Professional hadoop solutions
US8301588B2 (en) Data storage for file updates
US9390124B2 (en) Version control system using commit manifest database tables
TWI410812B (en) Customized, personalized, integrated client-side search indexing of the web
US11403356B2 (en) Personalizing a search of a search service
US9146994B2 (en) Pivot facets for text mining and search
US20110231386A1 (en) Indexing and searching employing virtual documents
US20190294976A1 (en) User-centric artificial intelligence knowledge base
CN110291515B (en) Distributed index searching in computing systems
Chauhan et al. Introducing Microsoft Azure HDInsight
US8996512B2 (en) Search engine optimization using a find operation
US11940953B2 (en) Assisted updating of electronic documents
US11409790B2 (en) Multi-image information retrieval system
Tvarožek et al. Factic: personalized exploratory search in the semantic web
Amato et al. Big data processing for pervasive environment in cloud computing
Karambelkar Scaling Big Data with Hadoop and Solr
US10884646B2 (en) Data management system for storage tiers
Lai et al. Semantic-web supported knowledge management system: An approach to enhance collaborative building design
Bruseker et al. Report on the common semantic framework (D5. 1)
US8934662B1 (en) Tracking image origins
Mishra et al. Titan graph databases with cassandra
Martha Big data processing algorithms

Legal Events

Date Code Title Description
AS Assignment

Owner name: APPLE INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:MISRA, RONNIE G.;CARLSON, ERIC OLAF;REEL/FRAME:030653/0175

Effective date: 20111024

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION