Skip to content

Commit

Permalink
fix(objectionary#3057): cages
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Apr 6, 2024
1 parent ee476c7 commit c53c264
Show file tree
Hide file tree
Showing 9 changed files with 386 additions and 180 deletions.
23 changes: 19 additions & 4 deletions eo-runtime/src/main/eo/org/eolang/cage.eo
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,22 @@
# This object is doing exactly the same as "memory", but allows
# you to store objects, not only data. In other words, it doesn't
# do dataization when objects are being stored.
[] > cage
# Make new `cage` for an object. After application this `new` object starts behave
# like `it` object.
[it] > new /?
[object] > cage
@.new > new

# Object encaged for the first time.
[] > @ /encaged

# Object encaged by locator.
[locator] > encaged
$ > new
it > @

# Retrieved encaged object by locator.
[] > it /?

# Encage new object by locator.
[object] > encage /true

# Remove object from the cage.
[] > remove /true
111 changes: 111 additions & 0 deletions eo-runtime/src/main/java/EOorg/EOeolang/Cages.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 Objectionary.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/*
* @checkstyle PackageNameCheck (4 lines)
*/
package EOorg.EOeolang;

import java.util.concurrent.ConcurrentHashMap;
import org.eolang.Phi;
import org.eolang.Versionized;

/**
* Cages for objects.
* @since 0.36.0
*/
@Versionized
final class Cages {
/**
* Cages instance.
*/
static final ThreadLocal<Cages> INSTANCE = ThreadLocal.withInitial(Cages::new);

/**
* Encaged objects.
*/
private final ConcurrentHashMap<Integer, Phi> objects = new ConcurrentHashMap<>(0);


/**
* Ctor.
*/
private Cages() {
// singleton :(
}

/**
* Encage object for the first time.
* When object is encaged - locator will be generated.
* @param object Object ot encage
* @return Locator to the object in cage
*/
int encage(final Phi object) {
final int locator = object.hashCode();
if (this.objects.containsKey(locator)) {

}
this.objects.put(locator, object);
return locator;
}

/**
* Encage object by locator.
* @param locator Locator to the object in cage
* @param object Object to encage
*/
void encage(final int locator, final Phi object) {
if (!this.objects.containsKey(locator)) {

}
final Phi current = this.objects.get(locator);
if (!current.forma().equals(object.forma())) {

}
this.objects.put(locator, object);
}

/**
* Get object from cage by locator.
* @param locator The locator of the object
* @return Object
*/
Phi get(final int locator) {
if (!this.objects.containsKey(locator)) {

}
return this.objects.get(locator);
}

/**
* Remove object from the cage by locator.
* @param locator Locator of the object
*/
void remove(final int locator) {
if (!this.objects.containsKey(locator)) {

}
this.objects.remove(locator);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 Objectionary.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/*
* @checkstyle PackageNameCheck (4 lines)
*/
package EOorg.EOeolang;

import org.eolang.AtVoid;
import org.eolang.Atom;
import org.eolang.Attr;
import org.eolang.Data;
import org.eolang.Param;
import org.eolang.PhDefault;
import org.eolang.Phi;
import org.eolang.Versionized;
import org.eolang.XmirObject;

/**
* Cage.encaged.encage object.
* @since 0.36.0
*/
@Versionized
@XmirObject(oname = "cage.encaged.encage")
class EOcage$EOencaged$EOencage extends PhDefault implements Atom {
/**
* Ctor.
* @param sigma Sigma
*/
EOcage$EOencaged$EOencage(final Phi sigma) {
super(sigma);
this.add("object", new AtVoid("object"));
}

@Override
public Phi lambda() throws Exception {
Cages.INSTANCE.get().encage(
Math.toIntExact(
new Param(this.take(Attr.RHO), "locator").strong(Long.class)
),
this.take("object")
);
return new Data.ToPhi(true);
}
}
59 changes: 59 additions & 0 deletions eo-runtime/src/main/java/EOorg/EOeolang/EOcage$EOencaged$EOit.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 Objectionary.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/*
* @checkstyle PackageNameCheck (4 lines)
*/
package EOorg.EOeolang;

import org.eolang.Atom;
import org.eolang.Attr;
import org.eolang.Param;
import org.eolang.PhDefault;
import org.eolang.Phi;
import org.eolang.Versionized;
import org.eolang.XmirObject;

/**
* Cage.encaged.it object.
* @since 0.36.0
*/
@Versionized
@XmirObject(oname = "cage.encaged.it")
public class EOcage$EOencaged$EOit extends PhDefault implements Atom {
/**
* Ctor.
* @param sigma Sigma
*/
EOcage$EOencaged$EOit(final Phi sigma) {
super(sigma);
}

@Override
public Phi lambda() throws Exception {
return Cages.INSTANCE.get().get(
Math.toIntExact(new Param(this.take(Attr.RHO), "locator").strong(Long.class))
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 Objectionary.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/*
* @checkstyle PackageNameCheck (4 lines)
*/
package EOorg.EOeolang;

import org.eolang.Atom;
import org.eolang.Attr;
import org.eolang.Data;
import org.eolang.Param;
import org.eolang.PhDefault;
import org.eolang.Phi;
import org.eolang.Versionized;
import org.eolang.XmirObject;

/**
* Cage.encaged.remove object.
* @since 0.36.0
*/
@Versionized
@XmirObject(oname = "cage.encaged.remove")
public class EOcage$EOencaged$EOremove extends PhDefault implements Atom {
/**
* Ctor.
* @param sigma Sigma
*/
EOcage$EOencaged$EOremove(final Phi sigma) {
super(sigma);
}

@Override
public Phi lambda() throws Exception {
Cages.INSTANCE.get().remove(
Math.toIntExact(new Param(this.take(Attr.RHO), "locator").strong(Long.class))
);
return new Data.ToPhi(true);
}
}
Loading

0 comments on commit c53c264

Please sign in to comment.