|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object dods.dap.BaseType dods.dap.DConstructor dods.dap.DSequence dods.dap.Server.SDSequence
public abstract class SDSequence
Holds a DODS Server Sequence
value.
BaseType
Field Summary |
---|
Fields inherited from class dods.dap.DSequence |
---|
allValues, END_OF_SEQUENCE, START_OF_INSTANCE, varTemplate |
Constructor Summary | |
---|---|
SDSequence()
Constructs a new SDSequence . |
|
SDSequence(String n)
Constructs a new SDSequence with name n . |
Method Summary | |
---|---|
boolean |
equal(dods.dap.BaseType bt)
The RelOps interface defines how each type responds to relational operators. |
Vector |
getRowVector()
Get the row vector for into which to read a row of data for this sequence. |
boolean |
greater_eql(dods.dap.BaseType bt)
The Operator class contains a generalized implementation
of this method. |
boolean |
greater(dods.dap.BaseType bt)
The Operator class contains a generalized implementation
of this method. |
boolean |
isProject()
Is the given variable marked as projected? |
boolean |
isRead()
Get the value of the Read property. |
boolean |
isSynthesized()
Get the value of the Synthesized property. |
boolean |
less_eql(dods.dap.BaseType bt)
The Operator class contains a generalized implementation
of this method. |
boolean |
less(dods.dap.BaseType bt)
The Operator class contains a generalized implementation
of this method. |
boolean |
not_equal(dods.dap.BaseType bt)
The Operator class contains a generalized implementation
of this method. |
void |
printDecl(PrintWriter os,
String space,
boolean print_semi,
boolean constrained)
Write the variable's declaration in a C-style syntax. |
void |
printVal(PrintWriter os,
String space,
boolean print_decl_p)
Prints the value of the variable, with its declaration. |
abstract boolean |
read(String datasetName,
Object specialO)
Read a value from the named dataset for this variable. |
boolean |
regexp(dods.dap.BaseType bt)
The Operator class contains a generalized implementation
of this method. |
void |
serialize(String dataset,
DataOutputStream sink,
CEEvaluator ce,
Object specialO)
Server-side serialization for DODS variables (sub-classes of BaseType ). |
void |
setAllReadFlags(boolean state)
Set the Read property. |
void |
setProject(boolean state)
Set the state of this variable's projection. |
void |
setProject(boolean state,
boolean all)
Set the state of this variable's projection. |
void |
setRead(boolean state)
Set the Read property. |
void |
setSynthesized(boolean state)
Set the Synthesized property. |
Methods inherited from class dods.dap.DSequence |
---|
addRow, addVariable, checkSemantics, clone, delRow, deserialize, elementCount, externalize, getLevel, getRow, getRowCount, getTypeName, getVar, getVariable, getVariable, getVariables, setLevel, writeMarker |
Methods inherited from class dods.dap.DConstructor |
---|
addVariable |
Methods inherited from class dods.dap.BaseType |
---|
checkSemantics, elementCount, getLongName, getName, getParent, newPrimitiveVector, printDecl, printDecl, printDecl, printDecl, printDecl, printDecl, printDecl, printVal, printVal, printVal, setName, setParent |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SDSequence()
SDSequence
.
public SDSequence(String n)
SDSequence
with name n
.
n
- the name of the variable.Method Detail |
---|
public Vector getRowVector() throws dods.dap.NoSuchVariableException
dods.dap.NoSuchVariableException
public void printDecl(PrintWriter os, String space, boolean print_semi, boolean constrained)
printDecl
in class dods.dap.DSequence
os
- The PrintWriter
on which to print the
declaration.space
- Each line of the declaration will begin with the
characters in this string. Usually used for leading spaces.print_semi
- a boolean value indicating whether to print a
semicolon at the end of the declaration.constrained
- a boolean value indicating whether to print
the declartion dependent on the projection information. This
is only used by Server side code.BaseType.printDecl(PrintWriter, String, boolean,boolean)
public void printVal(PrintWriter os, String space, boolean print_decl_p)
printVal()
for this type:
All the various versions of printVal() will only
print a value, or a value with declaration, if the variable is
in the projection.
isProject()
for a particular variable returns
true
then printVal()
will print a value
(or a declaration and a value).
isProject()
for a particular variable returns
false
then printVal()
is basically a No-Op.
printVal
in class dods.dap.DSequence
os
- the PrintWriter
on which to print the value.space
- this value is passed to the printDecl
method,
and controls the leading spaces of the output.print_decl_p
- a boolean value controlling whether the
variable declaration is printed as well as the value.BaseType.printVal(PrintWriter, String, boolean)
,
ServerMethods.isProject()
public void setProject(boolean state, boolean all)
true
means
that this variable is part of the current projection as defined by
the current constraint expression, otherwise the current projection
for this variable should be false
.
setProject
in interface ServerMethods
state
- true
if the variable is part of the current
projection, false
otherwise.all
- If true
, set the Project property of all the
members (and their children, and so on).CEEvaluator
public void setProject(boolean state)
true
means
that this variable is part of the current projection as defined by
the current constraint expression, otherwise the current projection
for this variable should be false
.
This is equivalent to setProjection(state
,
true
).
setProject
in interface ServerMethods
state
- true
if the variable is part of the current
projection, false
otherwise.CEEvaluator
public boolean isProject()
true
, otherwise it
should return false
.
isProject
in interface ServerMethods
true
if the variable is part of the current
projections, false
otherwise.CEEvaluator
,
setProject(boolean)
public boolean equal(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
equal
in interface RelOps
equal
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public boolean not_equal(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
ServerMethods
Operator
class contains a generalized implementation
of this method. It should be used unless a localized
architecture/implementation requires otherwise.
not_equal
in interface RelOps
not_equal
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public boolean greater(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
ServerMethods
Operator
class contains a generalized implementation
of this method. It should be used unless a localized
architecture/implementation requires otherwise.
greater
in interface RelOps
greater
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public boolean greater_eql(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
ServerMethods
Operator
class contains a generalized implementation
of this method. It should be used unless a localized
architecture/implementation requires otherwise.
greater_eql
in interface RelOps
greater_eql
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public boolean less(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
ServerMethods
Operator
class contains a generalized implementation
of this method. It should be used unless a localized
architecture/implementation requires otherwise.
less
in interface RelOps
less
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public boolean less_eql(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
ServerMethods
Operator
class contains a generalized implementation
of this method. It should be used unless a localized
architecture/implementation requires otherwise.
less_eql
in interface RelOps
less_eql
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public boolean regexp(dods.dap.BaseType bt) throws InvalidOperatorException, RegExpException, SBHException
ServerMethods
Operator
class contains a generalized implementation
of this method. It should be used unless a localized
architecture/implementation requires otherwise.
regexp
in interface RelOps
regexp
in interface ServerMethods
InvalidOperatorException
RegExpException
SBHException
Operator
public void setSynthesized(boolean state)
setSynthesized
in interface ServerMethods
state
- If true
then the variable is considered a
synthetic variable and no part of DODS will ever try to read it from a
file, otherwise if false
the variable is considered a
normal variable whose value should be read using the
read()
method. By default this property is false.isSynthesized()
,
read(String, Object)
public boolean isSynthesized()
isSynthesized
in interface ServerMethods
true
if this is a synthetic variable,
false
otherwise.public void setRead(boolean state)
read()
method. Once read the Read property is
true
. Use this function to manually set the property
value. By default this property is false.
setRead
in interface ServerMethods
state
- true
if the variable has been read,
false
otherwise.isRead()
,
read(String, Object)
public void setAllReadFlags(boolean state)
read()
method. Once read the Read property is
true
. Use this function to manually set the property
value. By default this property is false.
state
- true
if the variable has been read,
false
otherwise.isRead()
,
read(String, Object)
public boolean isRead()
isRead
in interface ServerMethods
true
if the variable has been read,
false
otherwise.read(String, Object)
,
setRead(boolean)
public abstract boolean read(String datasetName, Object specialO) throws dods.dap.NoSuchVariableException, IOException, EOFException
read
in interface ServerMethods
datasetName
- String identifying the file or other data store
from which to read a vaue for this variable.specialO
- This Object
is a goody that is used by Server implementations
to deliver important, and as yet unknown, stuff to the read method. If you
don't need it, make it a null
.
true
if more data remains to be read, otherwise
false
. This is an abtsract method that must be implemented
as part of the installation/localization of a DODS server.
IOException
EOFException
dods.dap.NoSuchVariableException
public void serialize(String dataset, DataOutputStream sink, CEEvaluator ce, Object specialO) throws dods.dap.NoSuchVariableException, SDODSException, IOException
BaseType
). This does not send the entire class as the
Java Serializable
interface does, rather it sends only
the binary data values. Other software is responsible for sending
variable type information (see DDS
).
Writes data to a DataOutputStream
. This method is used
on the server side of the DODS client/server connection, and possibly
by GUI clients which need to download DODS data, manipulate it, and
then re-save it as a binary file.
serialize
in interface ServerMethods
sink
- a DataOutputStream
to write to.dataset
- a String
indicated which dataset to read
from (Or something else if you so desire).ce
- the CEEvaluator
to use in the parse process.
IOException
- thrown on any OutputStream
exception.
dods.dap.NoSuchVariableException
SDODSException
BaseType
,
DDS
,
ServerDDS
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |