The advent of global communications networks (e.g., the Internet) now makes accessible an enormous amount of data. People access and query unstructured and structured data every day. Unstructured data is used for creating, storing and retrieving reports, e-mails, spreadsheets and other types of documents, and consists of any data stored in an unstructured format at an atomic level. In other words, in the unstructured content, there is no conceptual definition and no data type definition—in textual documents, a word is simply a word. Current technologies used for content searches on unstructured data require tagging entities such as names or applying keywords and metatags. Therefore, human intervention is required to help make the unstructured data machine readable. Structured data is any data that has an enforced composition to the atomic data types. Structured data is managed by technology that allows for querying and reporting against predetermined data types and understood relationships.
Programming languages continue to evolve to facilitate specification by programmers as well as efficient execution in relation to unstructured data and/or structured data. In the early days of computer languages, low-level machine code was prevalent. With machine code, a computer program or instructions comprising a computer program were written with machine languages or assembly languages and executed by the hardware (e.g., microprocessor). These languages provided an efficient means to control computing hardware, but were very difficult for programmers to comprehend and develop sophisticated logic. Subsequently, languages were introduced that provided various layers of abstraction. Accordingly, programmers could write programs at a higher level with a higher-level source language, which could then be converted via a compiler or interpreter to the lower level machine language understood by the hardware. Further advances in programming have provided additional layers of abstraction to allow more advanced programming logic to be specified much quicker then ever before. However, these advances do not come without a processing cost.
Compilers and/or interpreters bear the burden of translating high-level logic into executable machine code. In general, a compilers and/or interpreters are components that receive a program specified in a source programming language (e.g., C, C#, Visual Basic, Java . . . ) and covert the logic provided thereby to machine language that is executable by a hardware device. However, the conversion need not be done verbatim. In fact, conventional compilers and/or interpreters analyze the source code and generate very efficient code. For example, programmers write code that sets forth a logical flow of operations that is intuitive and easy for humans to understand, but is often inefficient for a computer to execute. Compilers and/or interpreters can identify inefficiencies and improve program performance at the hardware level by eliminating unnecessary operations and/or rearranging the execution of instructions while still achieving the intended results. In this manner, programmers can create robust and efficient software programs.
The following presents a simplified summary of the innovation in order to provide a basic understanding of some aspects described herein. This summary is not an extensive overview of the claimed subject matter. It is intended to neither identify key or critical elements of the claimed subject matter nor delineate the scope of the subject innovation. Its sole purpose is to present some concepts of the claimed subject matter in a simplified form as a prelude to the more detailed description that is presented later.
The subject innovation relates to systems and/or methods that facilitate combining a construction of an object and an initialization of at least one property into a single expression. A syntax component can utilize a single expression that represents the construction of an object and the initialization of a property and/or field associated therewith. The syntax component can receive data via an interface component, wherein the data can be related to a programming language including at least one object and at least one property and/or field. By combining the construction and initialization of the object into a single expression, the syntax component facilitates utilizing a programming language.
In accordance with one aspect of the claimed subject matter, the syntax component further utilizes the single expression in conjunction with an object type collection. The syntax component can implement a collection component that that allows the single expression to construct and initialize the object, wherein the object implements an interface and the property is added to a collection. Moreover, the type can implement any suitable interface and/or if the type exposes a certain patter, the elements can be added to the collection through successive calls utilizing the single expression.
In accordance with another aspect of the claimed subject matter, the syntax component further includes a nested component. The nested component allows the single expression to be nested within the data to allow for complicated object instances with this single expression. In other words, the syntax statement itself can be nested, wherein the field you are initializing is an object or collection itself and the nested component can create an instance and initialize that instance of the type of the field at the substantially similar time.
In accordance with another aspect of the innovation described herein, the syntax component can further include a projection component that infers an identifier (e.g., object instance) to be assigned. In other words, the projection component allows an identifier related to the object to be constructed and initialized. Moreover, the syntax component can include an expression component that allows an invocation expression to be utilized in conjunction with the single expression.
In accordance with another aspect of the innovation described herein, the syntax component can utilize a late binding technique. The syntax can further include a typeless component allows the omission of a new keyword and a type that is being constructed and initialized, wherein the new keyword and type is inferred. In addition, the syntax component can include an anonymous component that provides the object that is an anonymous type to be inferred in relation to the single expression. Furthermore, the syntax component can also include an ordinal component that utilizes an ordinal base and ordinal assignment in a collection based on an unidentified target type. In other aspects of the claimed subject matter, methods are provided that facilitate utilizing a single expression for the construction of an object and the initialization of a property and/or field associated therewith.
The following description and the annexed drawings set forth in detail certain illustrative aspects of the claimed subject matter. These aspects are indicative, however, of but a few of the various ways in which the principles of the innovation may be employed and the claimed subject matter is intended to include all such aspects and their equivalents. Other advantages and novel features of the claimed subject matter will become apparent from the following detailed description of the innovation when considered in conjunction with the drawings.
As utilized herein, terms “component,” “system,” “interface,” and the like are intended to refer to a computer-related entity, either hardware, software (e.g., in execution), and/or firmware. For example, a component can be a process running on a processor, a processor, an object, an executable, a program, and/or a computer. By way of illustration, both an application running on a server and the server can be a component. One or more components can reside within a process and a component can be localized on one computer and/or distributed between two or more computers.
The claimed subject matter is described with reference to the drawings, wherein like reference numerals are used to refer to like elements throughout. In the following description, for purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the subject innovation. It may be evident, however, that the claimed subject matter may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to facilitate describing the subject innovation.
Now turning to the figures,
For instance, the conventional technique for constructing an object and initializing at least one property and/or field associated therewith entailed a tedious and monotonous technique. A user and/or developer would have to create an object instance by calling a constructor function and then recursively assigning object instanced to nested objects. In other words, a user and/or developer would have to construct an object and then utilize a series of statements to assign values to the object's properties and/or fields. Yet, the syntax component 102 allows such construction and initialization to be incorporated into a single expression eliminating the requirements of tedious and monotonous expressions or statements that provide construction or initialization only.
In one example, a user and/or developer can utilize a conventional technique of tedious coding to construct an object and recursively assigning object instances as depicted below. It is to be appreciated that the following is one example and is not to be seen as limiting on the claimed subject matter.
As seen above, in every construction of an object, a recursive assigning of the object instances to the nested object must be done. Thus, the objects “Customer” and “Address” are constructed in one expression and then properties and/or fields associated therewith are initialized in a disparate statement. This conventional style of object creation can be extremely tedious based at least in part upon the user and/or developer to explicitly define imperative statements to build a complex object instance.
The syntax component 102 alleviates the necessity of utilizing two separate expressions by allowing the user and/or developer to combine the construction and the assignment of values to properties and/or fields within such objects into a single expression. Following the above example, the syntax component 102 allows the construction of “Customer” and initialization of “Name” and “Address” in a single statement. Thus, the fields and/or properties associated with “Customer” can be initialized in a single expression that includes the construction of such object.
The syntax component 102 can utilize a structure initializer to initialize any type by listing the values and/or properties to assign to the public properties and/or elements of a type. The following example depicts the syntax component 102 providing a single expression for construction of an object and property and/or field value assignment. It is to be appreciated and understood that the following is an example and the claimed subject matter is not limited to the illustrated pseudo code. Moreover, the type of variable that is to be initialized can have a parameterless constructor in order to prevent a compile-time error.
Moreover, the system 100 can include any suitable and/or necessary interface component 106, which provides various adapters, connectors, channels, communication paths, etc. to integrate the syntax component 102 into virtually any operating and/or database system(s). In addition, the interface component 106 can provide various adapters, connectors, channels, communication paths, etc., that provide for interaction with the syntax component 102 and data.
The syntax component 202 can include a semantic analyzer 204 that can evaluate the date received via the interface component 106. The semantic analyzer 204 can analyze any data received to facilitate creating a single expression that combines the construction of an object and value assignment to a property and/or field related thereto. For instance, the semantic analyzer 204 can evaluate, but is not limited to evaluating, the type of data, type of programming language, number of objects, at least one property, at least one field, a property and/or field associated to an object, a property and/or a field associated to a plurality of objects, etc. It is to be appreciated that although the semantic analyzer 204 is depicted as being incorporated into the syntax component 202, it can be a stand alone component, incorporated into the syntax component 202, and/or any combination thereof.
The syntax component 202 can further include a generator 206 that can generate a single expression to construct an object and initialize a property and/or field associated to such object based at least in part upon the semantic analyzer 204. For example, data can be received, wherein the semantic analyzer 204 can determine a number of objects constructed and at least one property and/or field associated therewith. The generator 206 can generate a single expression to incorporate the construction of the object and assign values to the property and/or field related thereto. It is to be appreciated that although the generator 206 is depicted as being incorporated into the syntax component 202, it can be a stand alone component, incorporated into the syntax component 202, and/or any combination thereof.
Moreover, the syntax component 302 can utilize a compiler 304 to facilitate implementing a combined expression that contains object constructions and initialization of a property and/or field associated to the type. The compiler 304 (described in further detail infra) can receive data (e.g., the programmatic source code from the interface component 106) and generate computer executable program or alternatively some intermediate format (e.g., IL (intermediate language)) that can be further compiled at runtime, for example by a just-in-time (JIT) compiler. The compiler 304 could also be a part of an IDE.
The syntax component 302 can utilize a data store 308, wherein the data store 308 can store various data related to the system 300. The data store 308 can provide storage for computer programmable code, pseudo code, object references, property and/or field references, compiler 304 instructions, etc. The data store 308 can be, for example, either volatile memory or nonvolatile memory, or can include both volatile and nonvolatile memory. By way of illustration, and not limitation, nonvolatile memory can include read only memory (ROM), programmable ROM (PROM), electrically programmable ROM (EPROM), electrically erasable programmable ROM (EEPROM), or flash memory. Volatile memory can include random access memory (RAM), which acts as external cache memory. By way of illustration and not limitation, RAM is available in many forms such as static RAM (SRAM), dynamic RAM (DRAM), synchronous DRAM (SDRAM), double data rate SDRAM (DDR SDRAM), enhanced SDRAM (ESDRAM), Synchlink DRAM (SLDRAM), Rambus direct RAM (RDRAM), direct Rambus dynamic RAM (DRDRAM), and Rambus dynamic RAM (RDRAM). The data store 308 of the subject systems and methods is intended to comprise, without being limited to, these and any other suitable types of memory. In addition, it is to be appreciated that the data store 308 can be a server, a database, a hard drive, and the like.
The syntax component 402 can provide a single expression that includes construction of an object and the initialization of a property and/or field related thereto. In one instance, the object can be a type that contains a parametrized property, wherein each property can be initialized independently by specifying the values to assign to the particular properties at a given index. For instance, the following pseudo code is an example that illustrates the type including parametrized properties.
It is to be appreciated that in the above example, the type of the initializer element can be convertible to the type of the collection element and/or instance member that it is being assign to, otherwise a compile-time error results. Moreover, for indexed properties the types of the property arguments can be convertible to the property parameters.
The syntax component 402 can include a collection component 404 that can leverage existing syntax related to a collection. For instance, if the type implements an interface (not to be confused with the interface component 106) and/or a certain pattern, wherein the interface can be System.Collections.Generic.ICollection(Of T), or System.Collections.IList, or if the type exposes a single parameter Add method, the elements cannot be named. In other words, each of the elements can be added to the collection through successive calls to the Add method of the interface. For instance, the following pseudo code can be an example:
The collection can be implemented with any interface and satisfies a certain pattern and/or Add method that allows you to assign elements in the collection. It is to be appreciated that the collection can be any suitable interface. Collection component 404 can allow the construction of any type that that is a collection and allows an initialization of the various elements of that collection. It is to be appreciated that the two types of initialization can be 1) fields and/or properties of a type; and 2) elements of the collection.
The syntax component 402 can further include a nested component 406 that allows the single expression (e.g., that combines object construction and initialization of a property and/or field associated thereto) to be nested. The following pseudo code is an example of utilizing a nested single expression that combines the construction of an object and the initialization of a property and/or field associated therewith. It is to be appreciated that the following is an example and the claimed subject matter is not so limited.
The syntax component 502 can include a projection component 504 that infers an identifier (e.g., object instance) to be assigned. The following pseudo code is an example of such inference related to the identifier to assign. It is to be appreciated that the following is an example and the claimed subject matter is not so limited. For example New Point{OtherPoint.X, OtherPoint.Y} can be a shorthand for new Point{X:=OtherPoint.X, Y:=OtherPoint.Y}.
The syntax component 502 can also include an expression component 506 that allows an invocation expression to be utilized in conjunction with the single expression that combines object construction and property and/or field initialization. The following pseudo code is an example of the expression component 506 that utilizes an invocation expression in relation to the single expression. It is to be appreciated that the following is an example and the claimed subject matter is not so limited.
It is also to be appreciated that the VariableInitializer, RegularInitializer, VariableInitializerLst, VariableInitializer, and ArrayElementInitializer productions can be an option. Moreover, there is alternative syntax in relation to the StructureElement such as, but not limited to, the following:
The syntax component 602 can include a typeless component 604 that allows the omission of the new keyword and the type that is being initialized. In other words, the object being constructed and initialized in a single expression need not be included in the data received by the interface component 106. The following is pseudo code that implements the typeless structure technique and it is to be appreciated that the claimed subject matter is not so limited.
The syntax component 602 can include an anonymous component 606 that allows an anonymous type to be inferred in relation to the single expression providing the construction of the object and initialization (e.g., value assignment) to a property and/or field associated therewith. The anonymous component 606 allows the type to be of an unidentified type and/or any type which can be comparable to a wild card type that can be later defined and/or inferred upon compilation. Thus, a user and/or developer need not define the type within the single expression (e.g., providing the construction of any type object and the initialization of a property and/or field associated therewith) since the compiler can infer the anonymous type at compilation.
The syntax component 602 can also include an ordinal component 608 that utilizes an ordinal based technique when the target type cannot be inferred. In other words, when the identifiers for the structure (e.g., a single expression including object construction and property and/or field initialization) of the target type cannot be inferred (e.g., due to projection style initialization utilizing indexed accessors to get values from a collection or by virtue of containing differently typed nested literals) the inferred type structure is assumed to be ordinal based and items in the collections can be assigned by their ordinal location. It is to be appreciated that this can apply for typeless variables. The following pseudo code illustrates two examples of utilizing the ordinal based technique and the claimed subject matter is not so limited.
The system 600 facilitates utilizing a single expression (e.g., that combines the construction of any object type and the initialization of at least one property and/or field related thereto) in relation to at least one of typeless structure, a late binding, an ordinal, and an inference. The system 600 can include a syntax component 602, a typeless component 604, and an ordinal component 606 that can all be substantially similar to respective components described above. The system 600 further includes an intelligent component 610. The intelligent component 610 can be utilized by the syntax component 602 to facilitate utilizing a single expression for construction of an object and initialization of a property and/or field associated therewith. For example, the intelligent component 610 can infer the object to which is being constructed, initialized, the field to assign a value, the property to assign a value, the type the single expression is relating to, etc.
It is to be understood that the intelligent component 610 can provide for reasoning about or infer states of the system, environment, and/or user from a set of observations as captured via events and/or data. Inference can be employed to identify a specific context or action, or can generate a probability distribution over states, for example. The inference can be probabilistic—that is, the computation of a probability distribution over states of interest based on a consideration of data and events. Inference can also refer to techniques employed for composing higher-level events from a set of events and/or data. Such inference results in the construction of new events or actions from a set of observed events and/or stored event data, whether or not the events are correlated in close temporal proximity, and whether the events and data come from one or several event and data sources. Various classification (explicitly and/or implicitly trained) schemes and/or systems (e.g., support vector machines, neural networks, expert systems, Bayesian belief networks, fuzzy logic, data fusion engines . . . ) can be employed in connection with performing automatic and/or inferred action in connection with the claimed subject matter.
A classifier is a function that maps an input attribute vector, x=(x1, x2, x3, x4, xn), to a confidence that the input belongs to a class, that is, f(x)=confidence(class). Such classification can employ a probabilistic and/or statistical-based analysis (e.g., factoring into the analysis utilities and costs) to prognose or infer an action that a user desires to be automatically performed. A support vector machine (SVM) is an example of a classifier that can be employed. The SVM operates by finding a hypersurface in the space of possible inputs, which hypersurface attempts to split the triggering criteria from the non-triggering events. Intuitively, this makes the classification correct for testing data that is near, but not identical to training data. Other directed and undirected model classification approaches include, e.g., naïve Bayes, Bayesian networks, decision trees, neural networks, fuzzy logic models, and probabilistic classification models providing different patterns of independence can be employed. Classification as used herein also is inclusive of statistical regression that is utilized to develop models of priority.
A presentation component 612 can provide various types of user interfaces to facilitate interaction between a user and any component coupled to the syntax component 602. As depicted, the presentation component 612 is a separate entity that can be utilized with the syntax component 602. However, it is to be appreciated that the presentation component 612 and/or similar view components can be incorporated into the syntax component 602 and/or a stand-alone unit. The presentation component 612 can provide one or more graphical user interfaces (GUIs), command line interfaces, and the like. For example, a GUI can be rendered that provides a user with a region or means to load, import, read, etc., data, and can include a region to present the results of such. These regions can comprise known text and/or graphic regions comprising dialogue boxes, static controls, drop-down-menus, list boxes, pop-up menus, as edit controls, combo boxes, radio buttons, check boxes, push buttons, and graphic boxes. In addition, utilities to facilitate the presentation such vertical and/or horizontal scroll bars for navigation and toolbar buttons to determine whether a region will be viewable can be employed. For example, the user can interact with one or more of the components coupled to the syntax component 602.
The user can also interact with the regions to select and provide information via various devices such as a mouse, a roller ball, a keypad, a keyboard, a pen and/or voice activation, for example. Typically, a mechanism such as a push button or the enter key on the keyboard can be employed subsequent entering the information in order to initiate the search. However, it is to be appreciated that the claimed subject matter is not so limited. For example, merely highlighting a check box can initiate information conveyance. In another example, a command line interface can be employed. For example, the command line interface can prompt (e.g., via a text message on a display and an audio tone) the user for information via providing a text message. The user can than provide suitable information, such as alpha-numeric input corresponding to an option provided in the interface prompt or an answer to a question posed in the prompt. It is to be appreciated that the command line interface can be employed in connection with a GUI and/or API. In addition, the command line interface can be employed in connection with hardware (e.g., video cards) and/or displays (e.g., black and white, and EGA) with limited graphic support, and/or low bandwidth communication channels.
At reference numeral 806, an analysis is made as to whether the target type is identified. If the target type is identified, the method continues at reference numeral 808 where the single expression can be implemented to construct and initialize an object and assign values to properties and/or fields associated therewith. If the target type is not identified, at reference numeral 810, a late binding technique can be utilized to associate a target type to the single expression. In one example, a typeless (e.g., new keyword omitted) structure can evaluate the target type by representing a value of whatever type the single expression is converted to. It is to be appreciated that such typeless structure can be utilized in assignment statements or as part of a parameter list where the type destination is known. In another example, the unidentified target type can be inferred based at least in part upon the fields and/or properties associated therewith. In yet another example, an anonymous type can be implemented, wherein the unidentified type is an anonymous type that can be inferred at compilation. In another example, the unidentified target type may not be inferred and an ordinal base is assumed and items in the collection can be assigned by an ordinal location. By utilizing the above late binding techniques, the unidentified target type is identified. At reference numeral 812, the single expression to construct and initialize the associated target type is implemented.
Compiler 304 can accept as input a file having source code associated with processing of a sequence of elements. The source code may include lambda expressions and associated functions, methods and/or other programmatic constructs. Compiler 304 may process source code in conjunction with one or more components for analyzing constructs and generating or injecting code.
A front-end component 920 reads and performs lexical analysis upon the source code. In essence, the front-end component 920 reads and translates a sequence of characters (e.g., alphanumeric) in the source code into syntactic elements or tokens, indicating constants, identifiers, operator symbols, keywords, and punctuation among other things.
Converter component 930 parses the tokens into an intermediate representation. For instance, the converter component 930 can check syntax and group tokens into expressions or other syntactic structures, which in turn coalesce into statement trees. Conceptually, these trees form a parse tree 970. Furthermore and as appropriate, the converter module 930 can place entries into a symbol table 930 that lists symbol names and type information used in the source code along with related characteristics.
A state 980 can be employed to track the progress of the compiler 304 in processing the received or retrieved source code and forming the parse tree 970. For example, different state values indicate that the compiler 304 is at the start of a class definition or functions, has just declared a class member, or has completed an expression. As the compiler progresses, it continually updates the state 980. The compiler 304 may partially or fully expose the state 980 to an outside entity, which can then provide input to the compiler 304.
Based upon constructs or other signals in the source code (or if the opportunity is otherwise recognized), the converter component 930 or another component can inject code corresponding to facilitate efficient and proper execution. Rules coded into the converter component 930 or other component indicates what must be done to implement the desired functionality and identify locations where the code is to be injected or where other operations are to be carried out. Injected code typically includes added statements, metadata, or other elements at one or more locations, but this term can also include changing, deleting, or otherwise modifying existing source code. Injected code can be stored as one or more templates or in some other form. In addition, it should be appreciated that symbol table manipulations and parse tree transformations can take place.
Based on the symbol table 960 and the parse tree 970, a back-end component 940 can translate the intermediate representation into output code. The back-end component 940 converts the intermediate representation into instructions executable in or by a target processor, into memory allocations for variables, and so forth. The output code can be executable by a real processor, but the invention also contemplates output code that is executable by a virtual processor.
Furthermore, the front-end component 920 and the back end component 940 can perform additional functions, such as code optimization, and can perform the described operations as a single phase or in multiple phases. Various other aspects of the components of compiler 304 are conventional in nature and can be substituted with components performing equivalent functions. Additionally, at various stages during processing of the source code, an error checker component 950 can check for errors such as errors in lexical structure, syntax errors, and even semantic errors. Upon detection error, checker component 950 can halt compilation and generate a message indicative of the error.
In order to provide additional context for implementing various aspects of the claimed subject matter,
Moreover, those skilled in the art will appreciate that the inventive methods may be practiced with other computer system configurations, including single-processor or multi-processor computer systems, minicomputers, mainframe computers, as well as personal computers, hand-held computing devices, microprocessor-based and/or programmable consumer electronics, and the like, each of which may operatively communicate with one or more associated devices. The illustrated aspects of the claimed subject matter may also be practiced in distributed computing environments where certain tasks are performed by remote processing devices that are linked through a communications network. However, some, if not all, aspects of the subject innovation may be practiced on stand-alone computers. In a distributed computing environment, program modules may be located in local and/or remote memory storage devices.
One possible communication between a client 1010 and a server 1020 can be in the form of a data packet adapted to be transmitted between two or more computer processes. The system 1000 includes a communication framework 1040 that can be employed to facilitate communications between the client(s) 1010 and the server(s) 1020. The client(s) 1010 are operably connected to one or more client data store(s) 1050 that can be employed to store information local to the client(s) 1010. Similarly, the server(s) 1020 are operably connected to one or more server data store(s) 1030 that can be employed to store information local to the servers 1020.
With reference to
The system bus 1118 can be any of several types of bus structure(s) including the memory bus or memory controller, a peripheral bus or external bus, and/or a local bus using any variety of available bus architectures including, but not limited to, Industrial Standard Architecture (ISA), Micro-Channel Architecture (MSA), Extended ISA (EISA), Intelligent Drive Electronics (IDE), VESA Local Bus (VLB), Peripheral Component Interconnect (PCI), Card Bus, Universal Serial Bus (USB), Advanced Graphics Port (AGP), Personal Computer Memory Card International Association bus (PCMCIA), Firewire (IEEE 1394), and Small Computer Systems Interface (SCSI).
The system memory 1116 includes volatile memory 1120 and nonvolatile memory 1122. The basic input/output system (BIOS), containing the basic routines to transfer information between elements within the computer 1112, such as during start-up, is stored in nonvolatile memory 1122. By way of illustration, and not limitation, nonvolatile memory 1122 can include read only memory (ROM), programmable ROM (PROM), electrically programmable ROM (EPROM), electrically erasable programmable ROM (EEPROM), or flash memory. Volatile memory 1120 includes random access memory (RAM), which acts as external cache memory. By way of illustration and not limitation, RAM is available in many forms such as static RAM (SRAM), dynamic RAM (DRAM), synchronous DRAM (SDRAM), double data rate SDRAM (DDR SDRAM), enhanced SDRAM (ESDRAM), Synchlink DRAM (SLDRAM), Rambus direct RAM (RDRAM), direct Rambus dynamic RAM (DRDRAM), and Rambus dynamic RAM (RDRAM).
Computer 1112 also includes removable/non-removable, volatile/non-volatile computer storage media.
It is to be appreciated that
A user enters commands or information into the computer 1112 through input device(s) 1136. Input devices 1136 include, but are not limited to, a pointing device such as a mouse, trackball, stylus, touch pad, keyboard, microphone, joystick, game pad, satellite dish, scanner, TV tuner card, digital camera, digital video camera, web camera, and the like. These and other input devices connect to the processing unit 1114 through the system bus 1118 via interface port(s) 1138. Interface port(s) 1138 include, for example, a serial port, a parallel port, a game port, and a universal serial bus (USB). Output device(s) 1140 use some of the same type of ports as input device(s) 1136. Thus, for example, a USB port may be used to provide input to computer 1112, and to output information from computer 1112 to an output device 1140. Output adapter 1142 is provided to illustrate that there are some output devices 1140 like monitors, speakers, and printers, among other output devices 1140, which require special adapters. The output adapters 1142 include, by way of illustration and not limitation, video and sound cards that provide a means of connection between the output device 1140 and the system bus 1118. It should be noted that other devices and/or systems of devices provide both input and output capabilities such as remote computer(s) 1144.
Computer 1112 can operate in a networked environment using logical connections to one or more remote computers, such as remote computer(s) 1144. The remote computer(s) 1144 can be a personal computer, a server, a router, a network PC, a workstation, a microprocessor based appliance, a peer device or other common network node and the like, and typically includes many or all of the elements described relative to computer 1112. For purposes of brevity, only a memory storage device 1146 is illustrated with remote computer(s) 1144. Remote computer(s) 1144 is logically connected to computer 1112 through a network interface 1148 and then physically connected via communication connection 1150. Network interface 1148 encompasses wire and/or wireless communication networks such as local-area networks (LAN) and wide-area networks (WAN). LAN technologies include Fiber Distributed Data Interface (FDDI), Copper Distributed Data Interface (CDDI), Ethernet, Token Ring and the like. WAN technologies include, but are not limited to, point-to-point links, circuit switching networks like Integrated Services Digital Networks (ISDN) and variations thereon, packet switching networks, and Digital Subscriber Lines (DSL).
Communication connection(s) 1150 refers to the hardware/software employed to connect the network interface 1148 to the bus 1118. While communication connection 1150 is shown for illustrative clarity inside computer 1112, it can also be external to computer 1112. The hardware/software necessary for connection to the network interface 1148 includes, for exemplary purposes only, internal and external technologies such as, modems including regular telephone grade modems, cable modems and DSL modems, ISDN adapters, and Ethernet cards.
What has been described above includes examples of the subject innovation. It is, of course, not possible to describe every conceivable combination of components or methodologies for purposes of describing the claimed subject matter, but one of ordinary skill in the art may recognize that many further combinations and permutations of the subject innovation are possible. Accordingly, the claimed subject matter is intended to embrace all such alterations, modifications, and variations that fall within the spirit and scope of the appended claims.
In particular and in regard to the various functions performed by the above described components, devices, circuits, systems and the like, the terms (including a reference to a “means”) used to describe such components are intended to correspond, unless otherwise indicated, to any component which performs the specified function of the described component (e.g., a functional equivalent), even though not structurally equivalent to the disclosed structure, which performs the function in the herein illustrated exemplary aspects of the claimed subject matter. In this regard, it will also be recognized that the innovation includes a system as well as a computer-readable medium having computer-executable instructions for performing the acts and/or events of the various methods of the claimed subject matter.
In addition, while a particular feature of the subject innovation may have been disclosed with respect to only one of several implementations, such feature may be combined with one or more other features of the other implementations as may be desired and advantageous for any given or particular application. Furthermore, to the extent that the terms “includes,” and “including” and variants thereof are used in either the detailed description or the claims, these terms are intended to be inclusive in a manner similar to the term “comprising.”